Shwetar (sent by Nabble.com) wrote:
Jim,
I dont see any mention of SA in the logcheck monitored logs.
On checkin up qmail-scanner-queue.pl... I realised that...
my @scanner_array=();
so I changed that to my @scanner_array=("spamassassin");
Also my @scanners_default=("fprot_scanner","perlscan_scanner");
so I changed that to my
@scanners_default=("spamassassin","fprot_scanner","perlscan_scanner");
but I left the following as it is:
my @scanners_installed=("fprot_scanner","perlscan_scanner");
I restarted all the necessary services... but on tail'ing the logs... I still
dont see SA being mentioned.
Am I doing anything wrong?
First, you might want to bring this over to the qmail-scanner list. We
can continue the discussion over there ;)
But anyway, generally you cant just add the scanner into the array and
have it work. qmail-scanner tries to detect what supported scanners are
available on the system at build time. Chances are, if the scanner
wasnt detected, just adding it in manually isnt going to work either.
I'd download the newest qmail-scanner (1.25) and build that using the
settings of your choice. See what scanners it autodetects. You can
safely do this without even altering anything on your system. Just dont
supply the --install switch and you should be fine. Does it detect SA?
-Jim