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 2005/11/16 01:59:20 UTC

svn commit: r344489 - in /spamassassin/trunk/build/automc: populate_cor run_preflight

Author: jm
Date: Tue Nov 15 16:59:17 2005
New Revision: 344489

URL: http://svn.apache.org/viewcvs?rev=344489&view=rev
Log:
don't use EVERY file submitted to the bbmass rsync corpora for mass-checking, we have way more than enough ;)

Modified:
    spamassassin/trunk/build/automc/populate_cor
    spamassassin/trunk/build/automc/run_preflight

Modified: spamassassin/trunk/build/automc/populate_cor
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/populate_cor?rev=344489&r1=344488&r2=344489&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/populate_cor (original)
+++ spamassassin/trunk/build/automc/populate_cor Tue Nov 15 16:59:17 2005
@@ -19,7 +19,7 @@
           -dest /home/bbmass/tmpfs/newcor/mc-fast -num 1000 \
           -dest /home/bbmass/tmpfs/newcor/mc-med -num 5000 \
           -dest /home/bbmass/tmpfs/newcor/mc-slow -num 10000 \
-          -dest /home/bbmass/tmpfs/newcor/mc-slower \
+          -dest /home/bbmass/tmpfs/newcor/mc-slower -num 20000 \
         *
 
 rm -rf /home/bbmass/tmpfs/cor.old       # just in case

Modified: spamassassin/trunk/build/automc/run_preflight
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/run_preflight?rev=344489&r1=344488&r2=344489&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/run_preflight (original)
+++ spamassassin/trunk/build/automc/run_preflight Tue Nov 15 16:59:17 2005
@@ -34,8 +34,11 @@
 # this is run in a chroot jail, just in case there's hostile
 # rule code in there...
 #
+# limit to the most recent 20k messages of each type, as the corpora are
+# getting big.
+#
 run "/local/bbmasstools/masschroot $perl ".
-    "mass-check -c=tstrules --cache --progress -j=1 -f $targets";
+    "mass-check -c=tstrules --tail=20000 --cache --progress -j=1 -f $targets";
 
 exit;