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] Mark ------------------------------------------------------------------------- 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/
