Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: [Original edit by JustinMason]

...

Firstly, do a mass-check. You will wind up with a 'spam.log' and 'ham.log' file. Run these commands to get a list of the 200 lowest-scoring spams, create a mbox file with just those messages, then open that mbox up in the "mutt" mail client:

No Format
cd /path/to/your/spamassassin/masses
sort -n +1 spam.log | head -200 > id.low
./mboxget < id.low > mbox
mutt -f mbox

...

Doing the same operation for FalseNegatives is similar, but reverses a few things... here's the commands to do that:

No Format

cd /path/to/your/spamassassin/masses
sort -rn +1 ham.log | head -200 > id.hi
./mboxget < id.hi > mbox
mutt -f mbox

...