2019-11-01 04:10:47 +00:00
|
|
|
Please note for Fedora and EPEL 7+ we use only systemd.
|
|
|
|
upstart and sysvinit only apply to EPEL 6.
|
2018-03-21 18:17:03 +00:00
|
|
|
|
2009-03-08 13:24:07 +00:00
|
|
|
A clamav-milter setup consists of the following three components:
|
2008-01-01 13:19:16 +00:00
|
|
|
|
2009-03-08 13:24:07 +00:00
|
|
|
* the clamav-milter itself
|
2008-01-01 13:19:16 +00:00
|
|
|
|
2009-03-08 13:24:07 +00:00
|
|
|
--> this is provided by the 'clamav-milter' package plus (alternatively)
|
|
|
|
'clamav-milter-upstart' or 'clamav-milter-sysvinit'
|
|
|
|
|
|
|
|
The main configuration is in /etc/mail/clamav-milter.conf and MUST
|
|
|
|
be changed before first use.
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
This can be enabled with: 'systemctl enable clamav-milter.service'
|
|
|
|
|
2009-03-08 13:24:07 +00:00
|
|
|
The -sysvinit package is managed by the traditional tools, but
|
|
|
|
-upstart requires modification of /etc/event.d/clamav-milter to
|
|
|
|
enable automatic startup. See comments there for more details.
|
|
|
|
|
|
|
|
* a clamav scanner daemon
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
--> this is in the clamd package (or on EL6:
|
|
|
|
'clamav-scanner-upstart' or 'clamav-scanner-sysvinit')
|
2009-03-08 13:24:07 +00:00
|
|
|
|
|
|
|
The daemon is configured by /etc/clamd.d/scan.conf (which MUST be
|
|
|
|
edited before first use).
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
This can be enabled with: 'systemctl enable clamd@scan.service'
|
|
|
|
|
2009-03-08 13:24:07 +00:00
|
|
|
The -sysvinit package is managed by the traditional tools, but
|
|
|
|
-upstart requires modification of /etc/event.d/clamd.scan to enable
|
|
|
|
automatic startup. See comments there for more details.
|
|
|
|
|
2009-03-08 14:49:39 +00:00
|
|
|
* the MTA (sendmail/postfix)
|
2009-03-08 13:24:07 +00:00
|
|
|
|
|
|
|
--> you should know how to install this...
|
|
|
|
|
|
|
|
When communicating across unix sockets with the clamav-milter, it is
|
2019-11-01 04:10:47 +00:00
|
|
|
suggested to use the /run/clamav-milter/clamav-milter.socket
|
2009-08-01 09:44:42 +00:00
|
|
|
path. You have to add something like
|
2009-03-08 13:24:07 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
INPUT_MAIL_FILTER(`clamav', `S=local:/run/clamav-milter/clamav-milter.socket, F=, T=S:4m;R:4m')dnl
|
2009-03-08 13:24:07 +00:00
|
|
|
|
|
|
|
to your sendmail.mc.
|
|
|
|
|
|
|
|
|
2009-08-01 09:44:42 +00:00
|
|
|
EXAMPLE
|
|
|
|
=======
|
|
|
|
|
|
|
|
For clamav-milter, a possible setup might be created by
|
|
|
|
|
|
|
|
A) On the MTA (assumed hostname 'host-mta')
|
|
|
|
|
|
|
|
1. Add to sendmail.mc
|
|
|
|
|
|
|
|
| INPUT_MAIL_FILTER(`clamav', `S=inet:6666@host-milter, F=, T=S:4m;R:4m')dnl
|
|
|
|
|
|
|
|
2. Rebuild sendmail.cf
|
|
|
|
|
|
|
|
|
|
|
|
B) On the clamav-milter host (assumed hostname 'host-milter')
|
|
|
|
|
|
|
|
1. Install clamav-milter + clamav-milter-upstart packages
|
|
|
|
|
|
|
|
2. Set in /etc/mail/clamav-milter.conf
|
|
|
|
|
|
|
|
| MilterSocket inet:6666
|
|
|
|
| ClamdSocket tcp:host-scanner:6665
|
|
|
|
|
|
|
|
and all the other options which are required on your system
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
3. Enable clamav-milter.service:
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
| systemctl enable clamav-milter.service
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
Restart your system or execute
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
| systemctl start clamav-milter.service
|
2009-08-01 09:44:42 +00:00
|
|
|
|
|
|
|
4. Add something like
|
|
|
|
|
|
|
|
| iptables -N IN-cmilt
|
|
|
|
| iptables -A IN-cmilt -s host-mta -j ACCEPT
|
|
|
|
| iptables -A IN-cmilt -j DROP
|
|
|
|
|
|
|
|
| iptables -A INPUT -p tcp --dport 6666 -j IN-cmilt
|
|
|
|
|
|
|
|
to your firewall setup
|
|
|
|
|
|
|
|
C) On the clamav-scanner host (assumed hostname 'host-scanner')
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
1. Install clamd
|
2009-08-01 09:44:42 +00:00
|
|
|
|
|
|
|
2. Add to /etc/clamd.d/scan.conf
|
|
|
|
|
|
|
|
| TCPSocket 6665
|
|
|
|
| TCPAddr host-scanner
|
|
|
|
|
|
|
|
comment out possible 'LocalSocket' lines and set all the other
|
|
|
|
options which are required on your system
|
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
3. Enable clamd@scan.service:
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
| systemctl enable clamd@scan.service
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
Restart your system or execute
|
2009-08-01 09:44:42 +00:00
|
|
|
|
2019-11-01 04:10:47 +00:00
|
|
|
| systemctl start clamd@scan.service
|
2009-08-01 09:44:42 +00:00
|
|
|
|
|
|
|
4. Add something like
|
|
|
|
|
|
|
|
| iptables -N IN-cscan
|
|
|
|
| iptables -A IN-cscan -s host-milter -j ACCEPT
|
|
|
|
| iptables -A IN-cscan -j DROP
|
|
|
|
|
|
|
|
| iptables -A INPUT -p tcp --dport 6665 -j IN-csan
|
|
|
|
|
|
|
|
to your firewall setup
|