How to remove Clam AV from SpamBlocker 3

rldev

Verified User
Joined
May 26, 2004
Messages
1,072
I tried to upgrade to the latest ClamAV and mail is no longer routing to my mailboxes. I commented out the ACL conditon "Check_message" and the av_scanner" lines in exim.conf. I restarted exim and still the mail does not route. Any ideas?
 
Make sure you have the following in /etc/exim.conf:

# ACL that is used after the DATA command
check_message:
# accept without checking if in skip_av_domains
# accept condition =${if and {{def:acl_m0}{def:acl_m0}} {true}{false}}

# deny message = This message contains malformed MIME ($demime_reason)
# demime = *
# condition = ${if >{$demime_errorlevel}{2}{1}{0}}

# deny message = This message contains a virus or other harmful content ($malware_name)
# demime = *
# malware = *

# deny message = This message contains an attachment of a type which we do not accept (.$found_extension)
# demime = bat:com:pif:prf:scr:vbs

# warn message = X-Antivirus-Scanner: Seems clean. You should still use an Antivirus Scanner
accept
 
Back
Top