Mark Martinec wrote: > Sysadmin, > > >> My settings are as follows in amavisd.conf >> $sa_tag2_level_deflt = 3.1; >> $sa_kill_level_deflt = 9.0; >> >> So suppose I want the mails which have a score of equal to or greater >> than 3.1 and less than 9.0 to go to a separate "spam" box for that >> domain . Above 9.0 the mail is discarded. >> How do I achieve it ? >> > > $sa_tag2_level_deflt = 3.1; > $sa_kill_level_deflt = 9.0; > $sa_quarantine_cutoff_level = 9.0; # or higher, if systemwide quarantining > $final_spam_destiny = D_DISCARD; > $addr_extension_spam = 'spam'; > > Postfix main.cf: > > recipient_delimiter = + > virtual_alias_maps = pcre:/etc/postfix/virtual_mapping_pcre > > virtual_mapping_pcre : > > /^(.*)\+spam@([EMAIL PROTECTED])$/ [EMAIL PROTECTED] >
This breaks recipient validation as <[EMAIL PROTECTED]> would then be accepted by postfix (possibly bounced later). He should only do that in the delivery side of postfix, either via different cleanups or via different instances. Alternatively, he can delegate this to an MDA such as maildrop/procmail. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ AMaViS-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/
