You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by Apache Wiki <wi...@apache.org> on 2010/01/01 19:24:29 UTC

[Spamassassin Wiki] Update of "Rules/FH_DATE_PAST_20XX" by Systemchef

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.

The "Rules/FH_DATE_PAST_20XX" page has been changed by Systemchef.
The comment on this change is: change rule.
http://wiki.apache.org/spamassassin/Rules/FH_DATE_PAST_20XX?action=diff&rev1=6&rev2=7

--------------------------------------------------

  #language en
  == SpamAssassin Rule: FH_DATE_PAST_20XX ==
- 
  ''Standard description:'' The date is grossly in the future.
  
  === Explanation ===
- 
  The rule matches the year (a string of four numbers) in the Date header, and checks if it is between 2010 and 2099.
  
  === Further Info ===
- 
  The default scores for this rule can be found [[http://spamassassin.apache.org/tests.html|in the online list of tests]].
  
  Note: the [[http://svn.apache.org/viewvc/spamassassin/rules/branches/3.2/72_active.cf|current rule in 3.2]] will start matching legitimate dates from 2010-01-01. See issues [[https://issues.apache.org/SpamAssassin/show_bug.cgi?id=5852|#5852]] and [[https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6269|#6269]].
  
  If you need to disable this test, place the following in your local.cf file:
+ 
- {{{ 
+ {{{
  score FH_DATE_PAST_20XX 0.0
  }}}
+ ----
+ If you want to change this test to 'later than 2020' , edit the following file:
  
- ----
+ {{{
+ 1) locate 72_active.cf && sudo vi 'locate 72_active.cf'
+ 2) search 'FH_DATE_PAST_20XX'
+ 3) change '/20[1-9][0-9]/' to '/20[2-9][0-9]/'
+ }}}
  CategoryRule