You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2006/10/18 12:07:52 UTC

svn commit: r465192 - /spamassassin/trunk/build/automc/run_preflight

Author: jm
Date: Wed Oct 18 03:07:44 2006
New Revision: 465192

URL: http://svn.apache.org/viewvc?view=rev&rev=465192
Log:
limit preflight mass-checks to max 6-month-old mail; it's too slow otherwise

Modified:
    spamassassin/trunk/build/automc/run_preflight

Modified: spamassassin/trunk/build/automc/run_preflight
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/automc/run_preflight?view=diff&rev=465192&r1=465191&r2=465192
==============================================================================
--- spamassassin/trunk/build/automc/run_preflight (original)
+++ spamassassin/trunk/build/automc/run_preflight Wed Oct 18 03:07:44 2006
@@ -90,16 +90,18 @@
 # produce lots of noisy output to stop the buildbot from timing out on
 # mass-checks of large corpora.
 # store AICache data in /tmpfs/aicache.
+# ignore mails older than 6 months (use the nightly runs for those corpora,
+# it's too slow to mass-check them here).
 
 run "/local/bbmasstools/masschroot $perl ".
     "mass-check -c=tstrules --cache -j=1 ".
     "--noisy --deencap='petuniapress.com' ".
     "--cachedir=/tmpfs/aicache ".
+    "--after='6 months ago' ".
     $mass_check_args{$slavename}." ".
     "ham:detect:/home/bbmass/rawcor/*/ham/* ".
     "spam:detect:/home/bbmass/rawcor/*/spam/*";
 
-    # TODO: add --after="6 months ago"?
 
 exit;