diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2018-04-20 14:01:30 +0200 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2018-04-20 14:03:08 +0200 |
commit | 8a1683cff89eed7ef6c64df2d1636bf341887baa (patch) | |
tree | e04c299d9e0cbc0cd917baa00085a557873e4a34 /app-antivirus/clamav | |
parent | sys-kernel/gentoo-sources: Linux patch 4.9.95 (diff) | |
download | gentoo-8a1683cff89eed7ef6c64df2d1636bf341887baa.tar.gz gentoo-8a1683cff89eed7ef6c64df2d1636bf341887baa.tar.bz2 gentoo-8a1683cff89eed7ef6c64df2d1636bf341887baa.zip |
app-antivirus/clamav: updated clamav-milter README
Package-Manager: Portage-2.3.27, Repoman-2.3.9
Diffstat (limited to 'app-antivirus/clamav')
-rw-r--r-- | app-antivirus/clamav/clamav-0.99.2-r1.ebuild | 2 | ||||
-rw-r--r-- | app-antivirus/clamav/clamav-0.99.2-r3.ebuild | 2 | ||||
-rw-r--r-- | app-antivirus/clamav/files/clamav-milter.README.gentoo | 49 | ||||
-rw-r--r-- | app-antivirus/clamav/files/clamd.initd-r6 | 2 |
4 files changed, 48 insertions, 7 deletions
diff --git a/app-antivirus/clamav/clamav-0.99.2-r1.ebuild b/app-antivirus/clamav/clamav-0.99.2-r1.ebuild index c0eb37e298b7..d4a161880c90 100644 --- a/app-antivirus/clamav/clamav-0.99.2-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.99.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 diff --git a/app-antivirus/clamav/clamav-0.99.2-r3.ebuild b/app-antivirus/clamav/clamav-0.99.2-r3.ebuild index a4419b7542f5..44c387e2dcf4 100644 --- a/app-antivirus/clamav/clamav-0.99.2-r3.ebuild +++ b/app-antivirus/clamav/clamav-0.99.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 diff --git a/app-antivirus/clamav/files/clamav-milter.README.gentoo b/app-antivirus/clamav/files/clamav-milter.README.gentoo index 17e9ba628ea5..f526bd35a926 100644 --- a/app-antivirus/clamav/files/clamav-milter.README.gentoo +++ b/app-antivirus/clamav/files/clamav-milter.README.gentoo @@ -19,7 +19,10 @@ Step 2 - Tell the init script to start clamd as well as freshclam and the START_FRESHCLAM=yes START_MILTER=yes -Step 3 - Edit sendmail.mc +Step 3 - Inform your MTA about the new milter. + + SENDMAIL + Step 3.a.1 - Edit sendmail.mc Add these lines to sendmail.mc before any any other INPUT_MAIL_FILTER lines and before MAILER(local) @@ -30,15 +33,53 @@ Step 3 - Edit sendmail.mc INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4m')dnl define(`confINPUT_MAIL_FILTERS', `clmilter')dnl -Step 4 - Rebuild sendmail.cf + Step 3.a.2 - Rebuild sendmail.cf cd /etc/mail m4 sendmail.mc > sendmail.cf -Step 5 - Start clamad + + + POSTFIX + Step 3.b - Edit main.cf. + + Add unix:/var/run/clamav/clamav-milter.sock to your + smtpd_milters line. If the line doesn't exist, just + stick it at the bottom of main.cf on a new line. + + If you're appending, this is a space separated list. + If virus scanning is your most intensive test, you + may wish to put it on the end of the list so earlier, + easiser tests may punt the message before you go through the + trouble of virus scanning it. + + Only one milter example: + + # milters to run on network received mail. + smtpd_milters=unix:/var/run/clamav/clamav-milter.suck + + Multiple milters example: + + # milters to run on network received mail. + smtpd_milters=unix:/var/run/dkim-filter/dkim-filter.sock unix:/var/run/clamav/clamav-milter.sock + + +Step 5 - Adjust permissions for clamav-milter socket + + Edit /etc/clamav-milter.conf and check/change MilterSocketGroup and MilterSocketMode + e.g. for postfix it would be this (sendmail,.. should be similar): + MiltersocketGroup postfix + MilterSocketMode 660 + +Step 6 - Start clamad /etc/init.d/clamd start -Step 6 - Restart sendmail +Step 7 - Restart your MTA + SENDMAIL /etc/init.d/sendmail restart + + POSTFIX + /etc/init.d/postfix restart + diff --git a/app-antivirus/clamav/files/clamd.initd-r6 b/app-antivirus/clamav/files/clamd.initd-r6 index 7b50af640727..8cf8dd0a4bac 100644 --- a/app-antivirus/clamav/files/clamd.initd-r6 +++ b/app-antivirus/clamav/files/clamd.initd-r6 @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 daemon_clamd="/usr/sbin/clamd" |