2010-01-06, 01:58 AM
If anyone is running a server that uses SpamAssasin, you may want to double check your rules. I found an issue where any emails received in this new year were automatically given a spam score of 3.2 which they did not previously have. This caused legitimate emails to get caught in my spam trap.
There is a rule that checks to see if the date on the email is 2010 (which it now is) or later. The rule can be found in 72_active.cf if you are running a standard configuration:
If you change the portion in red to "2-9" it will then check for emails dated 2010 or newer instead.
There is a rule that checks to see if the date on the email is 2010 (which it now is) or later. The rule can be found in 72_active.cf if you are running a standard configuration:
Code:
##{ FH_DATE_PAST_20XX
header FH_DATE_PAST_20XX Date =~ /20[[color=Red][B]1-9[/B][/color]][0-9]/ [if-unset: 2006]
describe FH_DATE_PAST_20XX The date is grossly in the future.
##} FH_DATE_PAST_20XX
If you change the portion in red to "2-9" it will then check for emails dated 2010 or newer instead.