On 04/24/2014 02:00 PM, emailitis.com wrote:
Thank you very much Antony, I had been looking at
http://spamassassin.apache.org/tests.html before which is where the "Tests"
menu goes to from the page you gave me of
https://spamassassin.apache.org/tests_3_3_x.html. I'm not yet mad which is
reassuring!
Can anyone help with how to get scores showing in the maillog as well?
according to spamd.raw
my $yorn = $status->is_spam() ? 'Y' : '.';
my $score = $status->get_score();
my $tests = join(",",
sort(grep(length,$status->get_names_of_tests_hit())));
my $log = sprintf("spamd: result: %s %2d - %s %s", $yorn, $score,
$tests, join(",", @extra));
info($log);
It *seems* to me it's not possible without hacking spamd