|
From: uwe s. f. <uf...@ph...> - 2004-04-20 14:59:42
|
Anders,
The setting "$sa_dsn_cutoff_level = 15" does only stop the sending of "Your mail looks like SPAM"-replies to the sender if the email's value is (at or) above 15 (in your case.)
You'll have to set "$sa_kill_level_deflt" to a higher value (ie. 15) than "$sa_tag2_level_deflt" to achieve what you want. In this case you also wouldn't want to change the "$final_spam_destiny" from it's default.
In short:
- tag_level: when to start adding X- headers
- tag2_level: when to start marking emails as SPAM
- kill_level: when to reject/quarantine/... SPAM
If you wouldn't have set "$final_spam_destiny" to D_PASS, you would've never received any SPAM tagged emails at all with "$sa_kill_level_deflt = $sa_tag2_level_deflt" and "$final_spam_destiny = D_BOUNCE."
Uwe
BTW: here's a pretty good HOWTO for that *_level stuff:
http://www.clarksys.com/howtos/Amavisd-Tagging-HOWTO.pdf
At 16:02 2004-04-20, Anders Norrbring wrote:
>I have, by user demand, set $final_spam_destiny = D_PASS, so that even spam
>tagged e-mails get through to the recipient, the levels in effect are:
>
>$sa_tag_level_deflt = 3.0
>$sa_tag2_level_deflt = 7.5
>$sa_kill_level_deflt = $sa_tag2_level_deflt
>
>Then I've set $sa_dsn_cutoff_level = 15, but messages with a level above 15
>passes through anyway... I guess it's because of the D_PASS parameter.
|