You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Rescore Mass-checks for Set 2 and Set 3

(THIS IS ONLY A DRAFT RIGHT NOW)

The bayes+nonet and bayes+net mass-check runs for 3.0.0 will be starting shortly. Here's the procedure you'll need to follow, if you wish to submit logs for the rescoring run:

First, send mail to <submit.at.spamassassin.org>, and ask for a log-submission account if you haven't already got one.

Turn off your nightly mass-checks, if you're running them, if you want; they aren't important while this is going on.

Then run these commands:

  wget http://SpamAssassin.apache.org/released/Mail-SpamAssassin-3.0.0-pre3.tar.gz
  tar xvfz Mail-SpamAssassin-3.0.0-pre3.tar.gz
  cd Mail-SpamAssassin-3.0.0
  perl Makefile.PL < /dev/null; make

  cd masses
  rm -rf spamassassin; mkdir spamassassin
  echo "use_bayes 1" > spamassassin/user_prefs
  echo "bayes_auto_learn 1" >> spamassassin/user_prefs
  rm ham.log spam.log

  ./mass-check --bayes --net -j 4 --restart=400 --all <targets>

Once it finishes:

  USER="[whatever your username is]"
  RSYNC_PASSWORD="[whatever your password is]"
  export RSYNC_PASSWORD

  rsync -CPcvuzb ham.log $USER@rsync.spamassassin.org::submit/ham-bayes-net-$USER.log
  rsync -CPcvuzb spam.log $USER@rsync.spamassassin.org::submit/spam-bayes-net-$USER.log

Next, redo without --net:

  cd masses
  rm -rf spamassassin; mkdir spamassassin
  echo "use_bayes 1" > spamassassin/user_prefs
  echo "bayes_auto_learn 1" >> spamassassin/user_prefs
  rm ham.log spam.log

  ./mass-check --bayes -j 2 --restart=400 --all <targets>

Once it finishes:

  USER="[whatever your username is]"
  RSYNC_PASSWORD="[whatever your password is]"
  export RSYNC_PASSWORD

  rsync -CPcvuzb ham.log $USER@rsync.spamassassin.org::submit/ham-bayes-nonet-$USER.log
  rsync -CPcvuzb spam.log $USER@rsync.spamassassin.org::submit/spam-bayes-nonet-$USER.log

That's it!

The results for these two runs will need to be in by Monday July 28th.

  • No labels