You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by mm...@apache.org on 2011/05/05 21:14:58 UTC

svn commit: r1099925 - /spamassassin/branches/3.3/masses/rule-qa/reports-from-logs

Author: mmartinec
Date: Thu May  5 19:14:58 2011
New Revision: 1099925

URL: http://svn.apache.org/viewvc?rev=1099925&view=rev
Log:
Bug 6557: Use same age limits in ruleqa as in sa-updates

Modified:
    spamassassin/branches/3.3/masses/rule-qa/reports-from-logs

Modified: spamassassin/branches/3.3/masses/rule-qa/reports-from-logs
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.3/masses/rule-qa/reports-from-logs?rev=1099925&r1=1099924&r2=1099925&view=diff
==============================================================================
--- spamassassin/branches/3.3/masses/rule-qa/reports-from-logs (original)
+++ spamassassin/branches/3.3/masses/rule-qa/reports-from-logs Thu May  5 19:14:58 2011
@@ -33,8 +33,8 @@ use constant DATEREV_ADJ => - (8 * 60 * 
 
 # what's the max age of mail we will accept data from? (in weeks)
 # TODO: maybe this should be in ~/.corpus
-my $OLDEST_HAM_WEEKS    = 52 * 10;      # 10 years
-my $OLDEST_SPAM_WEEKS    = 6 * 4;       # 6 months
+my $OLDEST_HAM_WEEKS    = 72 * 4;       # 72 months = 6 years
+my $OLDEST_SPAM_WEEKS    = 2 * 4;       # 2 months
 
 # ---------------------------------------------------------------------------