Linux - ServerThis forum is for the discussion of Linux Software used in a server related context.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Assuming the basic setup is working, what you need to set are
Code:
$sa_tag_level_deflt = 2.0; # add spam info headers if at, or above that level
$sa_tag2_level_deflt = 6.31; # add 'spam detected' headers at that level
$sa_kill_level_deflt = 6.31; # triggers spam evasive actions
$sa_dsn_cutoff_level = 10; # spam level beyond which a DSN is not sent
$sa_quarantine_cutoff_level = 20; # spam level beyond which quarantine is off
$spam_quarantine_to = 'spam@example.com';
email that scores above sa_kill_level_deflt wil be sent to quarantine (unless the score exceeds sa_quarantine_cutoff_level). The account this goes to is spam@example.com given the setting for spam_quarantine_to.
Note that the scores I've shown are the amavisd defaults - you may want to change them.
I'd recommend you change the first to a low value (say -999) so spam headers are added to everything. Makes troubleshooting easier, and does no harm. Note this isn't the same as adding [SPAM] to the subject (that's given with $sa_spam_subject_tag).
hth
Last edited by billymayday; 12-11-2008 at 10:55 PM.
=================================================================================
$sa_tag_level_deflt = 2.0; # add spam info headers if at, or above that level
$sa_tag2_level_deflt = 6.31; # add 'spam detected' headers at that level
$sa_kill_level_deflt = 6.31; # triggers spam evasive actions
$sa_dsn_cutoff_level = 7; # spam level beyond which a DSN is not sent
$sa_quarantine_cutoff_level = 7.5; # spam level beyond which quarantine is off
# $penpals_bonus_score = 5; # (no effect without a @storage_sql_dsn database)
# $penpals_threshold_high = $sa_kill_level_deflt; # don't waste time on hi spam
$sa_mail_body_size_limit = 400*1024; # don't waste time on SA if mail is larger
$sa_local_tests_only = 0; # only tests which do not require internet access?
Now am also wondering about $sa_quarantine_cutoff_level; is it the level beyond which mail will no longer be quarantined?
If yes, where will it be sent?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.