• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Y2k10 breaks Spamassassin rule for date checking

Red Squirrel

No Lifer
Turns out there is a date checking rule that has the date hard coded in it, so when we hit 2010 it started to cause false positives. For those of you that use SA on your mail server, this may be interesting to note:

https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6269

The fix is fairly easy. This should be how the rule looks like:

line 543 of /etc/share/spamassassin/72_active.cf
Code:
##{ FH_DATE_PAST_20XX
header   FH_DATE_PAST_20XX      Date =~ /20[2-9][0-9]/ [if-unset: 2006]^M
describe FH_DATE_PAST_20XX      The date is grossly in the future.^M
##} FH_DATE_PAST_20XX

Not the best fix mind you, since it will break again in 10 years, but it does the job for now at least.
 
If you're running Debian stable this was already fixed by the package maintainer in version 3.2.5-2+lenny2. =)
 
Back
Top