> >./configure --qs-user qscand --qs-group qscand --> >subjectline".>spooldir /var/spool/qmailscan --qmaildir /var/qmail -- >bindir /var/qmail/bin --qmail-queue-binary /var/qmail/bin/qmail-queue >--admin alert --domain mydomain.org --admin-fromname "Antivirus >mydomain.org" --notify sender,nmlvadm,precips --local-domains >mydomain.org --silent-viruses auto --block-password-protected 0 --lang >de_DE --debug 0 --minidebug 1 --unzip 0 --add-dscr-hdrs 0 --dscr-hdrs- >text "X-Qmail-Scanner" --archive 0 --scanners-per-domain 0 --redundant >yes --log-details syslog --log-crypto 0 --fix-mime 2 --ignore-eol-check >0 --virus-to-delete yes --sa-subject "SPAM *** " --sa-delta 0.5 --sa-alt >1 --sa-debug 1 --sa-report 0 --sa-quarantine 10 --sa-delete 15 --sa- >reject 0 --scanners "auto" --install 1 > >On detected spam mail, qmail-scanner-1.25st insert the header "X-Spam- >Status: Yes" but the subject don't get tagged like "SPAM *** MEDIUM *
I too had the same problem, but after setting sa_alt=0, qmail-scanner-1.25st started tagging the subject of the spam messages. If sa_alt is set qmail-scanner-1.25st ignores tagging subject of spam messages.
HI
I found the problem. The last fix added for verbose_spamassassin, breaks the check to change the subject if sa_alt is enabled.
This is the line that breaks the feature:
#Fiddle with headers IFF using fast_spamassassin
if ($still_headers && $spamc_options =~ / \-c /) {
One possible way to fix it quickly, is to change it to:
#Fiddle with headers IFF using fast_spamassassin
if ($still_headers && ($spamc_options =~ / \-c / || $sa_alt)) {But I think I will do in a different way, maybe in a couple of days.
I will do a link from the 20050207 version to the future version, to avoid that Gentoo people has to modify the portage script... ;-)
Cheers
ST
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Qmail-scanner-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qmail-scanner-general
