ispCP - Board - Support
FH_DATE_PAST Bug on SpamAssassin - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: FH_DATE_PAST Bug on SpamAssassin (/thread-10687.html)



FH_DATE_PAST Bug on SpamAssassin - dropslack - 05-14-2010 01:02 PM

based on spamassassin documentation, they said that spammassassin having a bug on FH_DATE_PAST.

all emails after January, 1st, 20100 will be marked as a spam.

if you are using ispCP on CentOS 5.4, it's easy to fix the problem.
Code:
# vim +543 /usr/share/spamassassin/72_active.cf

and find this line:

Code:
header   FH_DATE_PAST_20XX      Date =~ /20[1-9][0-9]/ [if-unset: 2006]

and then replace to this one:

Code:
header   FH_DATE_PAST_20XX      Date =~ /20[2-9][0-9]/ [if-unset: 2006]

that's it.