Solution :
The error is caused by rule FH_DATE_PAST_20XX in 72_active.cf as it will hit any mail with a date later than 12-31-2009.
you can eiter disable the rule by adding to local.cf :
- Code: Select all
score FH_DATE_PAST_20XX 0.0
or by changing the rule in 72_active.cf (can exist multiple times on your system) :
- Code: Select all
##{ FH_DATE_PAST_20XX
header FH_DATE_PAST_20XX Date =~ /20[1-9][1-9]/ [if-unset: 2006]
but : be aware that in the latter case the same issue will re-appear next year!
In the spamassassin list there is a discussion if this rule is still necessary and if it should be removed from the default rulesets.
