X-Spam-Score: 61
This will tell you that spamassassin is actually being used and the score in total is 6.1 or for exim 61.
We could now tell EXIM to process this info, for example move the file into the SPAM folder or just rewrite the subject.
I for example have a rewrite subject enabled with my exim setup.
In /etc/exim4/exim4.conf.template
, if not already there, add above line log_selector = ...
system_filter = /etc/exim4/system.filter
system_filter_user = Debian-exim
in /etc/exim4/system.filter
add
if $header_X-Spam-Score matches "^[^-0][0-9\.]+" and ${sg{$header_X-Spam-Score:}{\\.}{}} is above 50
then
headers add "Old-Subject: $h_subject"
headers remove "Subject"
headers add "Subject: *** POSSIBLE SPAM *** $h_old-subject"
headers remove "Old-Subject"
endif
and restart exim
systemctl restart exim4.service
This will add to the beginning of the subject *** POSSIBLE SPAM *** if the score is 50 or above (5.0 or above)
I hope this helped.
-Dennis