Roy Sigurd Karlsbakk schrieb:
> hi
> 
> I have this rather large sieve list, but this one rule doesn't seem to
> work correctly. when I receive email from this list, they all appear in
> my INBOX _and_ in the subfolder for the list
> 
> the entry is the one below
> 
> # Cyrus IMAP
> if header :contains [ "list-post","list-id","from","to","cc" ]
>    [ "Discussion group for Cyrus email
> system","mailto:info-cyrus@lists.andrew.cmu.edu","info-cyrus.lists.andrew.cmu.edu","info-cyrus@lists.andrew.cmu.edu";
> ] {
>    fileinto "INBOX.lister.cyrus";
> }
> 
> any idea why they're kept in my INBOX?
> 
You have to stop the processing of the script in that condition.


if header :contains [ "list-post","list-id","from","to","cc" ]
   [ "Discussion group for Cyrus email
system","mailto:info-cyrus@lists.andrew.cmu.edu","info-cyrus.lists.andrew.cmu.edu","info-cyrus@lists.andrew.cmu.edu";
] {
   fileinto "INBOX.lister.cyrus";
   stop;
}

----
Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html
  • sieve problems Roy Sigurd Karlsbakk
    • Re: sieve problems Jens Kleikamp

Reply via email to