blob: f4d4636a03583d4a1432312432a5931313a62eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils versionator
MY_PV=$(get_version_component_range 1-3 )
MY_PVR=$(replace_version_separator 3 '-' )
DESCRIPTION="Free Anti-Virus and Anti-Spam Filter"
HOMEPAGE="http://www.mailscanner.info/"
SRC_URI="http://www.mailscanner.info/files/4/tar/${PN}-install-${MY_PVR}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="bitdefender clamav doc exim f-prot postfix spamassassin"
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
dev-perl/Archive-Zip
dev-perl/Compress-Zlib
dev-perl/Convert-BinHex
dev-perl/Convert-TNEF
dev-perl/DBD-SQLite
dev-perl/DBI
>=dev-perl/HTML-Parser-3.45
dev-perl/HTML-Tagset
dev-perl/IO-stringy
>=dev-perl/MIME-tools-5.417
dev-perl/MailTools
dev-perl/Net-CIDR
dev-perl/Net-DNS
dev-perl/TimeDate
dev-perl/Sys-Hostname-Long
dev-perl/Filesys-Df
>=net-mail/tnef-1.4.3
virtual/perl-File-Spec
virtual/perl-File-Temp
virtual/perl-Getopt-Long
>=virtual/perl-Sys-Syslog-0.18
>=virtual/perl-MIME-Base64-3.05
virtual/cron
postfix? ( mail-mta/postfix )
exim? ( !postfix? ( mail-mta/exim ) )
!postfix? ( !exim? ( mail-mta/sendmail ) )
bitdefender? ( app-antivirus/bitdefender-console )
clamav? ( >=app-antivirus/clamav-0.88.4 )
f-prot? ( app-antivirus/f-prot )
spamassassin? ( >=mail-filter/spamassassin-3.1.5 )"
S="${WORKDIR}/${PN}-${MY_PVR}"
BASE="/usr"
src_unpack() {
unpack ${A}
unpack ./${PN}-install-${MY_PV}/perl-tar/${PN}-${MY_PVR}.tar.gz
# setup MTA
if use postfix ; then
RUNASUSER='postfix'
RUNASGROUP='postfix'
INQUEUE='/var/spool/postfix.in/deferred'
OUTQUEUE='/var/spool/postfix/incoming'
MTA='postfix'
SENDMAIL='/usr/lib/sendmail'
SENDMAIL2='/usr/lib/sendmail'
elif use exim ; then
RUNASUSER='mail'
RUNASGROUP='mail'
INQUEUE='/var/spool/exim.in/input'
OUTQUEUE='/var/spool/exim/input'
MTA='exim'
SENDMAIL='/usr/sbin/exim -oMr MailScanner'
SENDMAIL2='/usr/sbin/exim -C /etc/exim/exim_out.conf -oMr MailScanner'
else
# use sendmail as default, but we should add more as needed
# RUNASUSER='mail'
# RUNASGROUP='mail'
INQUEUE='/var/spool/mqueue.in'
OUTQUEUE='/var/spool/mqueue'
MTA='sendmail'
SENDMAIL='/usr/lib/sendmail'
SENDMAIL2='/usr/lib/sendmail'
fi
# setup virus scanner(s)
VIRUS_SCANNERS=""
use bitdefender && VIRUS_SCANNERS="bitdefender ${VIRUS_SCANNERS}"
use clamav && VIRUS_SCANNERS="clamav ${VIRUS_SCANNERS}"
use f-prot && VIRUS_SCANNERS="f-prot ${VIRUS_SCANNERS}"
if [ "$VIRUS_SCANNERS" == "" ]; then
VIRUS_SCANNERS="none"
VIRUS_SCANNING="no"
else
VIRUS_SCANNING="yes"
fi
sed -i \
-e "s/^\(Virus Scanning[ \t]*=\).*/\1 ${VIRUS_SCANNING}/" \
-e "s/^\(Virus Scanners[ \t]*=\).*/\1 ${VIRUS_SCANNERS}/" \
"${S}/etc/MailScanner.conf"
# setup spamassassin
if use spamassassin ; then
sed -i \
-e "s/^\(Use SpamAssassin[ \t]*=\).*$/\1 yes/" \
"${S}/etc/MailScanner.conf"
else
sed -i \
-e "s/^\(Use SpamAssassin[ \t]*=\).*$/\1 no/" \
"${S}/etc/MailScanner.conf"
fi
# update bin files
sed -i \
-e "s#msbindir=/opt/MailScanner/bin#msbindir=/usr/sbin#g" \
-e "s#config=/opt/MailScanner/etc/MailScanner.conf#config=/etc/MailScanner/MailScanner.conf#g" \
"${S}/bin/check_mailscanner"
sed -i \
-e "s#/opt/MailScanner/etc#/etc/MailScanner#g" \
"${S}/bin/update_virus_scanners"
sed -i \
-e "s#/opt/MailScanner/etc#/etc/MailScanner#g" \
-e "s#/opt/MailScanner/lib#/usr/lib/MailScanner#g" \
"${S}/bin/MailScanner"
# update cron files
sed -i \
-e "s#/opt/MailScanner/bin/check_mailscanner#/usr/sbin/check_MailScanner#g" \
"${S}/bin/cron/check_MailScanner.cron"
for cronfile in update_virus_scanners.cron update_{,bad_}phishing_sites.cron; do
sed -i \
-e "s#/etc/sysconfig/MailScanner#/etc/conf.d/mailscanner#g" \
-e "s#/opt/MailScanner/bin#/usr/sbin#g" \
"${S}/bin/cron/${cronfile}"
done
# Determine some things that may need to be changed in conf file
# (need to arrive at sensible replacement for yoursite)
YOURSITE=`dnsdomainname | sed -e "s/\./-/g"`
BASEBIN="${BASE}/sbin"
# ClamAV requires some specific changes to MailScanner.conf
# when mailscanner is running as root (i.e. sendmail)
if use clamav ; then
if [ "$MTA" == "sendmail" ] ; then
WORKGRP="clamav"
WORKPERM="0640"
else
WORKGRP=""
WORKPERM="0600"
fi
else
WORKGRP=""
WORKPERM="0600"
fi
# update conf files
sed -i \
-e "s#/opt/MailScanner/etc#/etc/MailScanner#g" \
-e "s#/opt/MailScanner/bin#$BASEBIN#g" \
-e "s#/opt/MailScanner/lib#/usr/lib/MailScanner#g" \
-e "s#^\(Run As User[ \t]*=\).*#\1 $RUNASUSER#" \
-e "s#^\(Run As Group[ \t]*=\).*#\1 $RUNASGROUP#" \
-e "s#^\(Incoming Queue Dir[ \t]*=\).*#\1 $INQUEUE#" \
-e "s#^\(Outgoing Queue Dir[ \t]*=\).*#\1 $OUTQUEUE#" \
-e "s#^\(MTA[ \t]*=\).*#\1 $MTA#" \
-e "s/^#\(TNEF.*internal\)$/\1/" \
-e "s/^\(TNEF.*0000\)$/#\1/" \
-e "s#^\(PID file[ \t]=\).*#\1 /var/run/mailscanner.pid#" \
-e "s#^\(%org-name%\)[ \t]*=.*#\1 = ${YOURSITE}#" \
-e "s#^\(Sendmail[ \t]*=\).*#\1 ${SENDMAIL}#" \
-e "s#^\(Sendmail2[ \t]*=\).*#\1 ${SENDMAIL2}#" \
-e "s#^\(Incoming Work Group[ \t]*=\).*#\1 ${WORKGRP}#" \
-e "s#^\(Incoming Work Permissions[ \t]*=\).*#\1 ${WORKPERM}#" \
"${S}/etc/MailScanner.conf"
# net-mail/clamav net-mail/f-prot package compatibility
sed -i \
-e "s#/opt/MailScanner/lib#/usr/lib/MailScanner#" \
-e 's#^\(clamav\t.*/usr\)/local$#\1#' \
-e 's#^\(f-prot.*\)/usr/local/f-prot$#\1/opt/f-prot#' \
"${S}/etc/virus.scanners.conf"
# update lib files
sed -i \
-e "s#/opt/MailScanner/bin#$BASEBIN#g" \
-e "s#/opt/MailScanner/etc#/etc/MailScanner#g" \
-e "s#/opt/MailScanner/lib#/usr/lib/MailScanner#g" \
"${S}/lib/MailScanner/ConfigDefs.pl"
sed -i \
-e "s#/etc/MailScanner#/etc/MailScanner#g" \
"${S}/lib/MailScanner/CustomConfig.pm"
# finally, change MailScanner.conf into MailScanner.conf.sample
cp "${S}/etc/MailScanner.conf" "${S}/etc/MailScanner.conf.${MY_PV}"
mv "${S}/etc/MailScanner.conf" "${S}/etc/MailScanner.conf.sample"
}
src_install() {
exeinto ${BASE}/sbin
doexe bin/MailScanner
newexe bin/check_mailscanner check_MailScanner
doexe bin/d2mbox bin/df2mbox
doexe bin/update_virus_scanners
doexe bin/upgrade_MailScanner_conf
doexe bin/update_bad_phishing_sites bin/update_phishing_sites
newexe bin/Sophos.install.linux Sophos.install
insinto /etc/MailScanner
doins etc/*.conf
doins etc/mailscanner.conf.with.mcp
doins etc/MailScanner.conf.${MY_PV}
doins etc/MailScanner.conf.sample
insinto /etc/MailScanner/rules
doins etc/rules/*
insinto /etc/MailScanner/mcp
doins etc/mcp/*
insinto /etc/MailScanner
doins -r etc/reports
insinto ${BASE}/$(get_libdir)/MailScanner
doins lib/*.prf
exeinto ${BASE}/$(get_libdir)/MailScanner
doexe lib/*-wrapper
doexe lib/*-autoupdate
doexe lib/*-autoupdate.old
doexe lib/*.pm
exeinto ${BASE}/$(get_libdir)/MailScanner/MailScanner
doexe lib/MailScanner/*.pm
doexe lib/MailScanner/*.pl
insinto ${BASE}/$(get_libdir)/MailScanner/MailScanner
doins lib/MailScanner/*.txt
exeinto ${BASE}/$(get_libdir)/MailScanner/MailScanner/CustomFunctions
doexe lib/MailScanner/CustomFunctions/MyExample.pm
newinitd "${FILESDIR}"/initd.mailscanner MailScanner
newconfd "${FILESDIR}"/confd.mailscanner MailScanner
#Set up cron jobs
exeinto /etc/cron.hourly
newexe "${S}/bin/cron/check_MailScanner.cron" check_MailScanner
for cronfile in update_{virus_scanners,{bad_,}phishing_sites}; do
newexe "${S}/bin/cron/${cronfile}.cron" ${cronfile}
done
exeinto /etc/cron.daily
newexe "${S}/bin/cron/clean.quarantine.cron" clean.quarantine
dodoc README
insinto /usr/share/doc/${PF}
doins MailScanner.conf.index.html
keepdir /var/spool/MailScanner/incoming
keepdir /var/spool/MailScanner/quarantine
keepdir /var/spool/MailScanner/spamassassin
keepdir /var/spool/MailScanner/archive
keepdir ${BASE}/var
if use postfix ; then
chown -R postfix:postfix "${D}/var/spool/MailScanner/"
elif use exim ; then
chown -R mail:mail "${D}/var/spool/MailScanner/"
else
keepdir /var/spool/mqueue.in
fi
}
pkg_postinst() {
if use postfix; then
elog "Note that postfix 2.4 now supports HOLD of messages"
elog "and reinjection without second postfix instance"
elog "Inbound path is now ${ROOT}var/spool/postfix/hold"
elog
elog "See http://mailscanner.info/postfix.html for details"
elog "or check (english) gentoo-wiki.com page which has been updated"
fi
if [ -f "/etc/MailScanner/MailScanner.conf" ]; then
einfo "Upgrading the MailScanner.conf file"
cp /etc/MailScanner/MailScanner.conf /etc/MailScanner/MailScanner.conf.pre_upgrade.${MY_PV}
/usr/sbin/upgrade_MailScanner_conf \
/etc/MailScanner/MailScanner.conf.pre_upgrade.${MY_PV} \
/etc/MailScanner/MailScanner.conf.${MY_PV} \
> /etc/MailScanner/MailScanner.conf 2> /dev/null
else
cp /etc/MailScanner/MailScanner.conf.sample /etc/MailScanner/MailScanner.conf
fi
}
|