Daniel,

> I have a problem where spam quarantining only works intermittently.
> I'm using amavisd-new 2.4.2 with Postfix 2.2.8 on FC5.  Spam is being scored
> correctly, but seemingly at random fails to be quarantined when the score
> exceeds $sa_kill_level_deflt.  The maillog says "Passed SPAM" for these
> messages, which tells me amavis has detected that the score is higher than
> kill, and not tag2 alone.

$sa_quarantine_cutoff_level ???


> @spam_lovers_maps=('[EMAIL PROTECTED]','[EMAIL PROTECTED]');

This does not do what you intended, syntax is wrong.

The @*_maps variables are lists of lookup tables, each lookup table
can be a ref to a list, a ref to a hash, a regexp lookup object,
or a constant. In your case you have two constants, which yield
true (these constants themselves) unconditionally.
You need to make a listref out of them:

@spam_lovers_maps=(['[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/

Reply via email to