ClaesBas, > It looks like $sa_kill_level_deflt not working (for me)! > Mailreceiver gets the mail even if Score is way above kill level. > local_domains seems to be right, due to subject rewrite. > > Why does it get delivered and not "killed"?
Either the spam destiny was D_PASS, or recipient was spam lover. > @spam_lovers_maps = qw(one_addr...@maindomain.se); This is the culprit. It doesn't do what you expect, but provides a constant result (regardless of a recipient address), which is the 'one_addr...@maindomain.se' - which interpreted as a boolean is always true. The @spam_lovers_maps is a list of lookup tables. A lookup table can be an array ref, or a hash ref, or ... Use either: @spam_lovers_maps = ( [qw(one_addr...@maindomain.se)] ); or the older: @spam_lovers_acl = qw(one_addr...@maindomain.se); Mark ------------------------------------------------------------------------------ SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev _______________________________________________ AMaViS-user mailing list AMaViS-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/