Hank wrote: > Bingo!!!!! Changing this worked. The value in the database was > spam-quarantine with that as the 'default' value.
mysql>> select id,spam_quarantine_to from policy; > +----+--------------------+ > | id | spam_quarantine_to | > +----+--------------------+ > | 7 | spam-quarantine | > | 3 | spam-quarantine | > | 1 | spam-quarantine | > | 2 | spam-quarantine | > | 6 | spam-quarantine | > | 5 | spam-quarantine | > | 4 | spam-quarantine | > +----+--------------------+ > 7 rows in set (0.00 sec) > It's strange that this works on the other server. Once I changed > values to NULL.. I'm seeing quarantined items. Now, to touch on the > question earlier about bad-headers...is there a way to pass those > completely without quarantining them? > Thanks for everything. > hanji pass them, and do not quarantine: $final_bad_header_destiny = D_PASS; $bad_header_quarantine_method = 'local:badh-%m'; $bad_header_quarantine_to = undef; or simply not check for them: @bypass_header_checks_maps = (1); Gary V ------------------------------------------------------------------------- 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/
