malware acl condition: clamd: unable to send file body to socket (127.0.0.1)

chronic

Verified User
Joined
Dec 14, 2006
Messages
96
Hi, i've this kind of error in my exim paniclog

Code:
2015-08-19 10:15:23 1ZRyWm-0008Uh-4z malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 10:15:26 1ZRyWp-0008Uh-Cg malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 10:15:29 1ZRyWs-0008Uh-DA malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 11:15:32 1ZRzSz-0003IQ-NW malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 11:15:35 1ZRzT2-0003IQ-T6 malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 11:15:38 1ZRzT5-0003IQ-S0 malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 11:15:42 1ZRzT9-0003IQ-0A malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 11:15:45 1ZRzTC-0003IQ-5V malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 12:15:49 1ZS0PK-0003l0-1H malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 12:15:53 1ZS0PN-0003l0-DQ malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 12:15:58 1ZS0PR-0003l0-CP malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 12:16:02 1ZS0PW-0003l0-4t malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 12:16:05 1ZS0Pa-0003l0-88 malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 13:16:08 1ZS1Lh-0004Ca-OK malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 13:16:11 1ZS1Lk-0004Ca-RF malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 13:16:14 1ZS1Ln-0004Ca-TW malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 13:16:18 1ZS1Lq-0004Ca-VK malware acl condition: clamd: unable to send file body to socket (127.0.0.1)
2015-08-19 13:16:21 1ZS1Lu-0004Ca-7Y malware acl condition: clamd: unable to send file body to socket (127.0.0.1)

Can anyone help me to understand the problem and solve it.

Thanks
 
Hello,

Make sure that clamd is running:

Code:
ps aux | grep - v grep | grep clam

Code:
netstat -ntpl | grep clam
 
Hi Shanti,

I solved it but I do not remember exactly, I think I reinstalled clamav or service restarts.

I'm sorry not to be able help.
 
I know that it's an old topic but since nobody posted any solution. Here is one.

Default clamd configuration allows only 10MB attachment to be scanned.

In order to increase the limit please edit /etc/clamd.conf and change this part:
Code:
StreamMaxLength 10M

to something like
Code:
StreamMaxLength 200M

and then restart clamd with:
Code:
service clamd restart
 
Back
Top