|
From: Mark M. <Mar...@ij...> - 2004-04-16 17:52:42
|
Alexander, | ... users want spam_final-Dest to be D_PASS, so that we only taag | sensibly but lets the users decide on their own what to do with it, | and we use sa_dsn_cutoff_level set to 20 to cut out obvious spam, but | I still get logs like this one: The $sa_dsn_cutoff_level only affects DSN to be sent back to sender. It does not affect delivery of spam to recipient. To do that, use the kill_level (which in turn has no effect if spam_final-Dest is D_PASS) | The mail got scored well above the cutoff-level, and got the | D_DISCARD-treatment, but the log actually prints "Passed" when "Not | Delivered" or some such alternativ. What you want is: $final_spam_destiny = D_BOUNCE; $sa_tag2_level_deflt = 6.3; $sa_kill_level_deflt = 20; $sa_dsn_cutoff_level = 25; or: $final_spam_destiny = D_DISCARD; $sa_tag2_level_deflt = 6.3; $sa_kill_level_deflt = 20; Mark |