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 2004/01/28 07:13:18 UTC

svn commit: rev 6333 - incubator/spamassassin/trunk/masses

Author: jm
Date: Tue Jan 27 22:13:17 2004
New Revision: 6333

Modified:
   incubator/spamassassin/trunk/masses/CORPUS_SUBMIT_NIGHTLY
Log:
updating instructions for svn

Modified: incubator/spamassassin/trunk/masses/CORPUS_SUBMIT_NIGHTLY
==============================================================================
--- incubator/spamassassin/trunk/masses/CORPUS_SUBMIT_NIGHTLY	(original)
+++ incubator/spamassassin/trunk/masses/CORPUS_SUBMIT_NIGHTLY	Tue Jan 27 22:13:17 2004
@@ -3,22 +3,8 @@
 ========================================
 
 
-The first time you do this: check out the CVS version of SpamAssassin, using
-"CURRENT_CORPORA_SUBMIT_VERSION" as a tag:
-
-  cd /home/you/directory
-  cvs -d:pserver:anonymous@cvs.spamassassin.sourceforge.net:/cvsroot/spamassassin \
-                login
-  cvs -d:pserver:anonymous@cvs.spamassassin.sourceforge.net:/cvsroot/spamassassin \
-                co -r CURRENT_CORPORA_SUBMIT_VERSION spamassassin
-
-
-Every night from then on, check out the correct version of SpamAssassin.  This
-is tagged nightly using "CURRENT_CORPORA_SUBMIT_VERSION":
-
-  cd /home/you/directory/spamassassin
-  cvs -z3 update -dP -r CURRENT_CORPORA_SUBMIT_VERSION
-
+See http://wiki.spamassassin.org/w/NightlyMassCheck for instructions
+on how to check out the correct version of SpamAssassin.
 
 Next, cd to the "masses" subdir and create a new pair of mass-check logfiles
 using that tag.
@@ -27,20 +13,17 @@
   rm ham.log spam.log
   touch ham.log spam.log
 
+Run your mass-check script into those logfiles.  This is up to you!
 
-Run all your mass-check scripts into those logfiles.  This is up to you!
-
+Nightly mass-check runs are local-rules-only; weekly ones include network
+tests.
 
 Finally submit them to rsync.spamassassin.org.  Replace "you" with the username
 you received (see CORPUS_SUBMIT for info), ditto for the password.
 
   RSYNC_PASSWORD="[whatever your password is]"
   export RSYNC_PASSWORD
-  rsync -CPcvzb ham.log you@rsync.spamassassin.org::corpus/ham-you.log
-  rsync -CPcvzb spam.log you@rsync.spamassassin.org::corpus/spam-you.log
-
+  rsync -Pcvz ham.log you@rsync.spamassassin.org::corpus/ham-you.log
+  rsync -Pcvz spam.log you@rsync.spamassassin.org::corpus/spam-you.log
 
 That's it.
-
-
-# :vim:tw=74: