summaryrefslogtreecommitdiff
path: root/mail-mta/netqmail/netqmail-1.05-r9.ebuild
blob: 20b6728e2c4c11739c0fdf90913ca6a68b713fd0 (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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r8.ebuild,v 1.8 2007/12/03 21:36:57 robbat2 Exp $
 
inherit eutils toolchain-funcs fixheadtails flag-o-matic
 
TLS_AUTH_PATCH=20070417
QMAIL_SPP_PATCH=0.42
 
DESCRIPTION="qmail -- a secure, reliable, efficient, simple message transfer agent"
HOMEPAGE="
http://netqmail.org/
http://cr.yp.to/qmail.html
http://qmail.org/
"
SRC_URI="
mirror://qmail/netqmail-${PV}.tar.gz
!vanilla? (
ssl? ( http://shupp.org/patches/netqmail-${PV}-tls-smtpauth-${TLS_AUTH_PATCH}.patch )
highvolume? ( mirror://qmail/big-todo.103.patch )
qmail-spp? ( mirror://sourceforge/qmail-spp/qmail-spp-${QMAIL_SPP_PATCH}.tar.gz )
)
"
 
LICENSE="public-domain"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE="gencertdaily highvolume mailwrapper noauthcram qmail-spp ssl vanilla"
RESTRICT="test"
 
DEPEND="
!mail-mta/qmail
sys-apps/groff
net-mail/queue-repair
ssl? ( dev-libs/openssl )
"
RDEPEND="
mailwrapper? ( net-mail/mailwrapper )
!mailwrapper? ( !virtual/mta )
sys-apps/ucspi-tcp
sys-process/daemontools
net-mail/dot-forward
!noauthcram? (
|| ( >=net-mail/checkpassword-0.90 >=net-mail/checkpassword-pam-0.99 )
>=net-mail/cmd5checkpw-0.30
)
${DEPEND}
"
PROVIDE="
virtual/mta
virtual/mda
"
 
# Important: QMAIL_CONF_SPLIT should always be a prime number!
MY_CONF_SPLIT="${QMAIL_CONF_SPLIT:-23}"
 
MY_S="${S}/netqmail-${PV}"
QMAIL_SPP_S="${WORKDIR}/qmail-spp-${QMAIL_SPP_PATCH}"
TCPRULES_DIR=/etc/tcprules.d
 
if use gencertdaily; then
CRON_FOLDER=cron.daily
else
CRON_FOLDER=cron.hourly
fi
 
src_unpack() {
unpack netqmail-${PV}.tar.gz
use qmail-spp && \
unpack qmail-spp-${QMAIL_SPP_PATCH}.tar.gz
 
cd "${S}"
 
./collate.sh || die "patching failed"
 
cd "${MY_S}"
 
epatch ${FILESDIR}/outgoingip.patch
 
if ! use vanilla; then
use ssl && epatch ${DISTDIR}/netqmail-${PV}-tls-smtpauth-${TLS_AUTH_PATCH}.patch
 
if use highvolume; then
epatch ${DISTDIR}/big-todo.103.patch
fi
 
if use qmail-spp; then
if use ssl; then
epatch ${QMAIL_SPP_S}/qmail-spp-smtpauth-tls-20060105.diff
else
epatch ${QMAIL_SPP_S}/netqmail-spp.diff
fi
fi
fi
 
if [[ -n "${QMAIL_PATCH_DIR}" && -d "${QMAIL_PATCH_DIR}" ]]
then
echo
ewarn "You enabled custom patches from ${QMAIL_PATCH_DIR}."
ewarn "Be warned that you won't get any support when using "
ewarn "this feature. You're on your own from now!"
ebeep
epatch "${QMAIL_PATCH_DIR}/"*
echo
fi
 
is_prime ${MY_CONF_SPLIT} || die 'QMAIL_CONF_SPLIT is not a prime number.'
einfo "Using conf-split value of ${MY_CONF_SPLIT}."
 
# Fix bug #33818 but for netqmail (Bug 137015)
if use noauthcram; then
einfo "Disabling CRAM_MD5 support"
sed -e 's,^#define CRAM_MD5$,/*&*/,' -i ${MY_S}/qmail-smtpd.c
else
einfo "Enabled CRAM_MD5 support"
fi
 
ht_fix_file Makefile*
append-ldflags $(bindnow-flags)
 
# -DTLS is now set by the SSL/TLS patch
#use ssl && append-flags -DTLS
 
# The following commands patch the conf-{cc,ld} files to use the user's
# specified CFLAGS and LDFLAGS. These rather complex commands are needed
# because a user supplied patch might apply changes to these files, too.
# Fixes Bug #165981.
echo "$(head -n 1 "${MY_S}/conf-cc" | sed -e "s#^g\?cc\s\+\(-O2\)\?#$(tc-getCC) #")" \
"${CFLAGS}" > "${MY_S}/conf-cc.tmp" &&
mv "${MY_S}/conf-cc.tmp" "${MY_S}/conf-cc" || die 'Patching conf-cc failed.'
 
echo "$(head -n 1 "${MY_S}/conf-ld" | sed -e "s#^g\?cc\s\+\(-s\)\?#$(tc-getCC) #")" \
"${LDLAGS}" > "${MY_S}/conf-ld.tmp" &&
mv "${MY_S}/conf-ld.tmp" "${MY_S}/conf-ld" || die 'Patching conf-ld failed.'
 
echo -n "${MY_CONF_SPLIT}" > "${MY_S}/conf-split"
}
 
src_compile() {
cd "${MY_S}"
emake it man || die "make failed"
}
 
src_install() {
cd "${MY_S}"
 
einfo "Setting up directory hierarchy ..."
 
diropts -m 755 -o root -g qmail
dodir /var/qmail/{,bin,boot,control}
 
keepdir /var/qmail/users
 
diropts -m 755 -o alias -g qmail
dodir /var/qmail/alias
 
einfo "Installing the qmail software ..."
 
insopts -o root -g qmail -m 755
insinto /var/qmail/boot
doins home home+df proc proc+df binm1 binm1+df binm2 \
binm2+df binm3 binm3+df
 
insinto /var/qmail/bin
 
insopts -o qmailq -g qmail -m 4711
doins qmail-queue
 
insopts -o root -g qmail -m 700
doins qmail-{lspawn,start,newu,newmrh}
 
insopts -o root -g qmail -m 711
doins qmail-{getpw,local,remote,rspawn,clean,send,pw2u} splogger
 
insopts -o root -g qmail -m 755
doins bouncesaying condredirect config-fast datemail elq \
except forward maildir2mbox maildirmake maildirwatch \
mailsubj pinq predate preline qail qbiff \
qmail-{inject,pop3d,popup,qmqpc,qmqpd,qmtpd,qread} \
qmail-{qstat,showctl,smtpd,tcpok,tcpto} \
qreceipt qsmhook sendmail tcp-env
 
einfo "Installing manpages"
into /usr
doman *.[1-8]
 
dodoc BLURB* CHANGES FAQ INSTALL* PIC* README* REMOVE* SECURITY \
SENDMAIL SYSDEPS TARGETS TEST* THANKS* THOUGHTS TODO* \
UPGRADE VERSION*
 
# use the correct maildirmake
# the courier-imap one has some extensions that are nicer
[[ -e /usr/bin/maildirmake ]] && \
MAILDIRMAKE="/usr/bin/maildirmake" || \
MAILDIRMAKE="${D}/var/qmail/bin/maildirmake"
 
einfo "Adding env.d entry for qmail"
insopts -m 644
doenvd ${FILESDIR}/99qmail
 
einfo "Creating sendmail replacement ..."
diropts -m 755
dodir /usr/sbin /usr/lib
 
if use mailwrapper
then
insinto /etc/mail
doins ${FILESDIR}/mailer.conf
else
dosym /var/qmail/bin/sendmail /usr/sbin/sendmail
dosym /var/qmail/bin/sendmail /usr/lib/sendmail
fi
 
einfo "Setting up the default aliases ..."
diropts -m 700 -o alias -g qmail
${MAILDIRMAKE} ${D}/var/qmail/alias/.maildir
keepdir /var/qmail/alias/.maildir/{cur,new,tmp}
 
for i in /var/qmail/alias/.qmail-{mailer-daemon,postmaster,root}
do
if [[ ! -f ${i} ]]; then
touch ${D}${i}
fowners alias:qmail ${i}
fi
done
 
einfo "Setting up maildirs by default in the account skeleton ..."
diropts -m 755 -o root -g root
insinto /etc/skel
newins ${FILESDIR}/dot-qmail .qmail.sample
fperms 644 /etc/skel/.qmail.sample
${MAILDIRMAKE} ${D}/etc/skel/.maildir
keepdir /etc/skel/.maildir/{cur,new,tmp}
 
einfo "Setting up all services (send, smtp, qmtp, qmqp, pop3) ..."
insopts -o root -g root -m 755
diropts -m 755 -o root -g root
dodir /var/qmail/supervise
 
for i in send smtpd qmtpd qmqpd pop3d; do
insopts -o root -g root -m 755
diropts -m 755 -o root -g root
dodir /var/qmail/supervise/qmail-${i}{,/log}
fperms +t /var/qmail/supervise/qmail-${i}{,/log}
insinto /var/qmail/supervise/qmail-${i}
newins ${FILESDIR}/run-qmail-${i} run
insinto /var/qmail/supervise/qmail-${i}/log
newins ${FILESDIR}/run-qmail-${i}-log run
diropts -m 755 -o qmaill
keepdir /var/log/qmail/qmail-${i}
done
 
dodir ${TCPRULES_DIR}
insinto ${TCPRULES_DIR}
newins ${FILESDIR}/tcprules.d-Makefile.qmail Makefile.qmail
for i in smtp qmtp qmqp pop3; do
newins ${FILESDIR}/tcp.${i}.sample tcp.qmail-${i}
done
 
einfo "Installing some stock configuration files"
insinto /var/qmail/control
insopts -o root -g root -m 644
doins ${FILESDIR}/conf-{common,send,qmtpd,qmqpd,pop3d}
newins ${FILESDIR}/conf-smtpd conf-smtpd
newins ${FILESDIR}/dot-qmail defaultdelivery
use ssl && \
doins ${FILESDIR}/servercert.cnf
 
einfo "Configuration sanity checker and launcher"
into /var/qmail
insopts -o root -g root -m 644
dobin ${FILESDIR}/qmail-config-system
 
if use qmail-spp; then
einfo "Installing files for qmail-spp"
insinto /var/qmail/control/
doins ${QMAIL_SPP_S}/samples/smtpplugins
keepdir /var/qmail/plugins/
fi
 
if use ssl; then
einfo "SSL Certificate creation script"
dobin ${FILESDIR}/mkservercert
einfo "RSA key generation cronjob"
insinto /etc/${CRON_FOLDER}
doins ${FILESDIR}/qmail-genrsacert.sh
chmod +x ${D}/etc/${CRON_FOLDER}/qmail-genrsacert.sh
 
# for some files
keepdir /var/qmail/control/tlshosts/
fi
}
 
rootmailfixup() {
# so you can check mail as root easily
local TMPCMD="ln -sf /var/qmail/alias/.maildir/ ${ROOT}/root/.maildir"
if [[ -d "${ROOT}/root/.maildir" && ! -L "${ROOT}/root/.maildir" ]] ; then
elog "Previously the qmail ebuilds created /root/.maildir/ but not"
elog "every mail was delivered there. If the directory does not"
elog "contain any mail, please delete it and run:"
elog "${TMPCMD}"
else
${TMPCMD}
fi
chown -R alias:qmail ${ROOT}/var/qmail/alias/.maildir 2>/dev/null
}
 
buildtcprules() {
for i in smtp qmtp qmqp pop3; do
# please note that we don't check if it exists
# as we want it to make the cdb files anyway!
f=tcp.qmail-${i}
src=${ROOT}${TCPRULES_DIR}/${f}
cdb=${ROOT}${TCPRULES_DIR}/${f}.cdb
tmp=${ROOT}${TCPRULES_DIR}/.${f}.tmp
[[ -e ${src} ]] && tcprules ${cdb} ${tmp} < ${src}
done
}
 
pkg_postinst() {
einfo "Setting up the message queue hierarchy ..."
/usr/bin/queue-repair.py \
--create --split "${MY_CONF_SPLIT}" \
$(use highvolume && echo '--bigtodo' || echo '--no-bigtodo') \
${ROOT}/var/qmail >/dev/null || \
die 'queue-repair failed'
 
rootmailfixup
buildtcprules
 
# for good measure
env-update
 
elog "To setup qmail to run out-of-the-box on your system, run:"
elog "emerge --config =${CATEGORY}/${PF}"
elog
elog "To start qmail at boot you have to add svscan to your startup"
elog "and create the following links:"
elog "ln -s /var/qmail/supervise/qmail-send /service/qmail-send"
elog "ln -s /var/qmail/supervise/qmail-smtpd /service/qmail-smtpd"
elog
elog "To start the pop3 server as well, create the following link:"
elog "ln -s /var/qmail/supervise/qmail-pop3d /service/qmail-pop3d"
elog
elog "Additionally, the QMTP and QMQP protocols are supported, "
elog "and can be started as:"
elog "ln -s /var/qmail/supervise/qmail-qmtpd /service/qmail-qmtpd"
elog "ln -s /var/qmail/supervise/qmail-qmqpd /service/qmail-qmqpd"
elog
elog "Additionally, if you wish to run qmail right now, you should "
elog "run this before anything else:"
elog "source /etc/profile"
elog
elog "If you are looking for documentation, check those links:"
elog "http://www.gentoo.org/doc/en/qmail-howto.xml"
elog "  -- qmail/vpopmail Virtual Mail Hosting System Guide"
elog "http://www.lifewithqmail.com/"
elog "  -- Life with qmail"
}
 
pkg_preinst() {
mkdir -p ${TCPRULES_DIR}
for proto in smtp qmtp qmqp pop3; do
for ext in '' .cdb; do
old="/etc/tcp.${proto}${ext}"
new="${TCPRULES_DIR}/tcp.qmail-${proto}${ext}"
fail=0
if [[ -f "$old" && ! -f "$new" ]]; then
einfo "Moving $old to $new"
cp $old $new || fail=1
else
fail=1
fi
if [[ "${fail}" = 1 && -f ${old} ]]; then
eerror "Error moving $old to $new, be sure to check the"
eerror "configuration! You may have already moved the files,"
eerror "in which case you can delete $old"
fi
done
done
}
 
# Candidate for eclass
pkg_setup() {
# keep in sync with mini-qmail pkg
einfo "Creating groups and users"
enewgroup qmail 201
enewuser alias 200 -1 /var/qmail/alias 200
enewuser qmaild 201 -1 /var/qmail 200
enewuser qmaill 202 -1 /var/qmail 200
enewuser qmailp 203 -1 /var/qmail 200
enewuser qmailq 204 -1 /var/qmail 201
enewuser qmailr 205 -1 /var/qmail 201
enewuser qmails 206 -1 /var/qmail 201
}
 
pkg_config() {
# avoid some weird locale problems
export LC_ALL=C
 
if [[ ${ROOT} = / ]] ; then
if [[ ! -f ${ROOT}var/qmail/control/me ]] ; then
export qhost=$(hostname --fqdn)
${ROOT}var/qmail/bin/config-fast $qhost
fi
else
ewarn "Skipping some configuration as it MUST be run on the final host"
fi
 
einfo "Accepting relaying by default from all ips configured on this machine."
LOCALIPS=$(/sbin/ifconfig | grep inet | cut -d' ' -f 12 -s | cut -b 6-20)
TCPSTRING=":allow,RELAYCLIENT=\"\",RBLSMTPD=\"\""
for ip in $LOCALIPS; do
myline="${ip}${TCPSTRING}"
for proto in smtp qmtp qmqp; do
f="${ROOT}${TCPRULES_DIR}/tcp.qmail-${proto}"
egrep -q "${myline}" ${f} || echo "${myline}" >>${f}
done
done
 
buildtcprules
 
if use ssl; then
ebegin "Generating RSA keys for SSL/TLS, this can take some time"
${ROOT}/etc/${CRON_FOLDER}/qmail-genrsacert.sh
eend $?
einfo "Creating a self-signed ssl-certificate:"
${ROOT}/var/qmail/bin/mkservercert
einfo "If you want to have a properly signed certificate "
einfo "instead, do the following:"
# space at the end of the string because of the current implementation
# of einfo
einfo "openssl req -new -nodes -out req.pem \\ "
einfo "  -config /var/qmail/control/servercert.cnf \\ "
einfo "  -keyout /var/qmail/control/servercert.pem"
einfo "Send req.pem to your CA to obtain signed_req.pem, and do:"
einfo "cat signed_req.pem >> /var/qmail/control/servercert.pem"
fi
}
 
# --- TODO: The following code can be moved to prime.eclass --
# Original Author: Michael Hanselmann <hansmi@gentoo.org>
# Purpose: Functions for prime numbers
 
# Prints a list of primes between min and max inclusive
#
# Note: this functions gets very slow when used with large numbers.
#
# Syntax: primes <min> <max>
primes() {
local min=${1} max=${2}
local result= primelist=2 i p
 
[[ ${min} -le 2 ]] && result="${result} 2"
 
for ((i = 3; i <= max; i += 2))
do
for p in ${primelist}
do
[[ $[i % p] == 0 || $[p * p] -gt ${i} ]] && \
break
done
if [[ $[i % p] != 0 ]]
then
primelist="${primelist} ${i}"
[[ ${i} -ge ${min} ]] && \
result="${result} ${i}"
fi
done
 
echo ${result}
}
 
# Checks wether a number is a prime number
#
# Syntax: is_prime <number>
is_prime() {
local number=${1} i
for i in $(primes ${number} ${number})
do
[[ ${i} == ${number} ]] && return 0
done
return 1
}
# --- end of prime.eclass ---