To report a spam, just save it without modifying it into a file, then run command:
spamassassin --report < thenameofthefile
...where, of course, "nameofthefile" is the name of the file you used to save the spam message.
Another usefull things I did to improve SA effectiveness was to install Phyzor, Razor2 and DCC to check on this databases and very important too is to install "rulesdujour script" wich will improve your SA by downloading a lot of mainteined rules wich SA doesn´t include originaly.
You can find "rulesdujour script" and rules set at: http://www.exit0.us/index.php/RulesDuJourRuleSets and http://sandgnat.com/rdj/
David A. Velásquez R. Gerente Fundador Conexiones Colombianas (CONEXCOL) [EMAIL PROTECTED] http://www.conexcol.com/ - http://www.sipo.cl Tel/Fax. (57)(4) 3122600 Cel. (57)(300) 6533517
Cra. 34 No. 7 - 157 A.A. 12137 Medellín, Ant. CO.
----- Original Message ----- From: "Matt Kettler" <[EMAIL PROTECTED]>
To: "Mario Sergio Candian" <[EMAIL PROTECTED]>
Cc: <users@spamassassin.apache.org>
Sent: Wednesday, March 02, 2005 2:30 PM
Subject: Re: Rules SA
At 02:25 PM 3/2/2005, Mario Sergio Candian wrote:Oks... I wrong.. sorry... but, I need too to block any emails with subject SERASA... :/ What I need to do to block it?
You could use a body rule, but that will match the body text as well as the subject line..
If you only want to match the subject line, use header rule that targets the subject line:
header SUBJECT_SERASA Subject =~/SERASA/ score SUBJECT_SERASA 5.0
Also note I left the i off the end of the regex, which makes it case-sensitive so it will only match all-caps. If you want to match lower-case letters, add the i back on the end.