Displaying 3 results from an estimated 3 matches for "bfound".
Did you mean:
found
2016 Aug 22
4
Email pid issue
...a grep search for that particular string only shows up in the
/etc/amavisd.conf file, when its calling the scanner. Pasted code from file below:
@av_scanners = (
['ClamAV-clamd',
\&ask_daemon, ["CONTSCAN {}\n", "/var/spool/amavisd/clamd.sock"],
qr/\bOK$/m, qr/\bFOUND$/m,
qr/^.*?: (?!Infected Archive)(.*) FOUND$/m ],
Best I can determine /var/spool/amavisd/clamd.sock file exists. So, not sure what is causing this
or why, or how to fix.
Here is /var/spool/amavisd contents:
[run]# ls -al /var/spool/amavisd/
total 64
drwxr-x--- 7 amavis amavis 4096 Aug 21 1...
2009 Apr 13
3
Clamd and Amavis
I'm trying to get amavis to play using clamd and tried to follow this:
# ### http://www.clamav.net/
['ClamAV-clamd',
\&ask_daemon, ["CONTSCAN {}\n", "/var/run/clamav/clamd"],
qr/\bOK$/, qr/\bFOUND$/,
qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ],
# # NOTE: run clamd under the same user as amavisd, or run it under its own
# # uid such as clamav, add user clamav to the amavis group, and then add
# # AllowSupplementaryGroups to clamd.conf;
# # NOTE: match socket name (LocalSocket) in clama...
2016 Aug 22
0
Email pid issue
...cular string only shows up in the
> /etc/amavisd.conf file, when its calling the scanner. Pasted code from file below:
>
> @av_scanners = (
> ['ClamAV-clamd',
> \&ask_daemon, ["CONTSCAN {}\n", "/var/spool/amavisd/clamd.sock"],
> qr/\bOK$/m, qr/\bFOUND$/m,
> qr/^.*?: (?!Infected Archive)(.*) FOUND$/m ],
>
> Best I can determine /var/spool/amavisd/clamd.sock file exists. So, not sure what is causing this
> or why, or how to fix.
>
and what does clamd.conf say:
cat /etc/clamd.conf | grep 'clamd.sock'
Does it match the &...