Displaying 1 result from an estimated 1 matches for "__spam__".
Did you mean:
__same__
2012 Mar 15
1
sieve.before script is taking preceedence over user defined rules
...specific trusted domains. So, my complete spam filtering rule is :
if address :domain :contains "From" ["mycompany.tld", "trusted.tld" ]{
??? keep;
elseif header :contains "X-Spam-Level" ["0","1","2"] {
??? fileinto :create "__spam__";
}
This rule is stored in "/var/lib/dovecot/sieve/before.sieve", which is
my "sieve_before" file as defined in /etc/dovecot/conf.d/90-sieve.conf
This works as expected except that it doesn't take into account users
filtering for domains that were matched for the expli...