the-djmaze / snappymail

Simple, modern & fast web-based email client
https://snappymail.eu
GNU Affero General Public License v3.0
994 stars 120 forks source link

Filter not working as expected. #1626

Closed avinash-0007 closed 4 months ago

avinash-0007 commented 4 months ago

Describe the bug I added a filter to reject email from specific domain let say gmail.com but i still recieving mail from gmail

To Reproduce Steps to reproduce the behavior:

  1. Go to snappy. mail
  2. Click on Settings
  3. click on Filters
  4. click on rainloop.user
  5. Add filter
  6. ssssss

require ["reject"];

# This is SnappyMail sieve script.
# Please don't change anything here.
# RAINLOOP:SIEVE

if header :contains ["From"] "gmail.com"
{
    reject "Not needed";
    stop;
}

/* END:FILTER */
the-djmaze commented 4 months ago

Is the script active?

avinash-0007 commented 4 months ago

@the-djmaze its fixed. thanks