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 02:47:54 UTC

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

Author: jm
Date: Tue Nov 15 17:47:52 2005
New Revision: 344495

URL: http://svn.apache.org/viewcvs?rev=344495&view=rev
Log:
aha.  figured out why lots of spam was being ignored; mass-check didn't like the report_safe encapsulation

Modified:
    spamassassin/trunk/build/automc/run_preflight

Modified: spamassassin/trunk/build/automc/run_preflight
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/run_preflight?rev=344495&r1=344494&r2=344495&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/run_preflight (original)
+++ spamassassin/trunk/build/automc/run_preflight Tue Nov 15 17:47:52 2005
@@ -31,14 +31,17 @@
 run "cp ../rules/70_sandbox.cf tstrules";
 run "cp plugins/*.* tstrules";
 
-# 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.
+# notes on this mass-check command:
 #
+# this is run in a chroot jail, just in case there's hostile rule code in
+# there. limit to the most recent 30k messages of each type, as the corpora are
+# getting big.  and de-encapsulate 'report_safe' messages from
+# petuniapress.com.
+
 run "/local/bbmasstools/masschroot $perl ".
-    "mass-check -c=tstrules --tail=20000 --cache --progress -j=1 -f $targets";
+    "mass-check -c=tstrules --tail=30000 --cache --progress -j=1 ".
+    "--deencap='petuniapress.com' ".
+    "-f $targets";
 
 exit;