Dave wrote: > Hi, I just recently upgraded to version 3.0.2 and now appear to be > receiving quite a few false positives where my previous installation > of 2.6.4 didn't have this problem. I am also having a problem getting > the rest results to display within the headers so I can determine what > tests are being hit in these false positives. A clear example of the > false positives are as follows: > <snip>
You missed the important part of your example... without a list of hits, nobody will be able to give you any advice on a FP or a FN. Really, that *should* be in your X-Spam-Status header, but your modified status header doesn't seem to include this vital information. It appears that in your add_header command you forgot to put quotes in, and spamassassin is barfing on the (,). Try this add_header command instead. Note carefully the addition of quotation marks. add_header all Status "_YESNO_, score=_SCORE_ required=_REQD_ tests=_TESTSSCORES(,)_ autolearn=_AUTOLEARN_ version=_VERSION_" This is more in-line with the defaults, which look like this: add_header all Status "_YESNO_, score=_SCORE_ required=_REQD_ tests=_TESTS_ autolearn=_AUTOLEARN_ version=_VERSION_" I assume your intent was to replace TESTS with TESTSSCORES. Alternatively, just comment out the add_header command for now, and work with the defaults until you've got your problems sorted. Also, run spamassassin --lint and fix the errors. Right off the bat I can spot that use_terse_report has been deprecated since 2.60, and is now an error in 3.x