You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by Apache Wiki <wi...@apache.org> on 2009/09/29 18:39:57 UTC

[Spamassassin Wiki] Update of "RescoreMassCheck" by JustinMason

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.

The "RescoreMassCheck" page has been changed by JustinMason:
http://wiki.apache.org/spamassassin/RescoreMassCheck?action=diff&rev1=36&rev2=37

  
  We then take the log files rsync'd up to the server, and use those logs for all 4 score sets.  The initial logs are for score set 3 (the fourth), sets 0, 1, and 2 can be generated from set 4 by stripping out the network tests and/or the Bayes tests.
  
+ 
+ == 4.05. publish logs to ruleqa site ==
+ 
+ This will make the mass-check results visible on http://ruleqa.spamassassin.org/ (under the appropriate DateRev), using usernames starting with "rescore-".
+ TODO: this doesn't include filtering out too-old logs (see below), so won't necessarily match the freqs produced later.
+ 
+ {{{
+ ssh spamassassin2.zones.apache.org
+ cd /export/home/corpus-rsync/corpus
+ for f in submit/*.log ; do i=`echo $f | sed -e 's,^submit/,,' -e 's/^\(.*am\)-bayes-net-\([^\.]*\.log\)$/\1-rescore-\2/'`
+ echo "cp $f $i" ; sudo cp $f $i; done
+ }}}
+ 
  == 4.1. filter out too-old logs ==
  
  {{{