Displaying 1 result from an estimated 1 matches for "testspam".
Did you mean:
  testsam
  
2008 Sep 08
2
Sieve, and logging.
...26 virtual
/home/sieve:
-rw-r--r-- 1 root root  353 2008-09-07 22:41 global_rules.sieve
-rw-r--r-- 1 root root  388 2008-09-07 23:22 global_rules.sievec
/home/sieve/global_rules.sieve:
require ["fileinto"];
require ["imapflags"];
if header :contains "Subject" "TestSPAM" {
   setflag "\\Seen";
   fileinto "Junk";
   stop;
}
------------------------------------------------------------------------
Section of postfix main.cf
virtual_transport = dovecot
# limit dovecot service to one at a time...
dovecot_destination_recipient_limit = 1
lo...