blob: 72aa439638d52164556ca12e6340d4b5b04c98da (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-x86/net-mail/courier/courier-0.41.0.ebuild
# NOTE:
# leaving this ebuild indefinitely, since it's the last one that uses the old init scripts
inherit flag-o-matic eutils
filter-flags -fomit-frame-pointer
filter-flags -funroll-loops
DESCRIPTION="An MTA designed specifically for maildirs"
SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
HOMEPAGE="http://www.courier-mta.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -ppc -sparc"
IUSE="gdbm tcltk postgres ldap berkdb mysql pam nls tcltk ipv6 spell fax crypt"
PROVIDE="virtual/mta
virtual/imapd"
RDEPEND="virtual/glibc
>=dev-tcltk/expect-5.33.0
>=dev-libs/openssl-0.9.6
crypt? ( >=app-crypt/gnupg-1.0.4 )
fax? ( >=media-libs/netpbm-9.12
>=app-text/ghostscript-7.05.5
>=net-dialup/mgetty-1.1.28 )
pam? ( >=sys-libs/pam-0.75 )
berkdb? ( >=sys-libs/db-3.2 )
gdbm? ( >=sys-libs/gdbm-1.8.0 )
mysql? ( >=dev-db/mysql-3.23.36 )
ldap? ( >=net-nds/openldap-1.2.11 )
postgres? ( >=dev-db/postgresql-7.1.3 )
tcltk? ( >=dev-tcltk/expect-5.33.0 )
spell? ( virtual/aspell-dict )"
DEPEND="${RDEPEND}
app-admin/fam
dev-lang/perl
sys-apps/procps"
src_unpack() {
unpack ${A} ; cd ${S}
epatch ${FILESDIR}/gentoo.diff.bz2
}
src_compile() {
local myconf
use pam || myconf="${myconf} --without-authpam"
use ldap || myconf="${myconf} --without-authldap"
use mysql || myconf="${myconf} --without-authmysql"
use postgres || myconf="${myconf} --without-authpostgresql"
use berkdb \
&& myconf="${myconf} --with-db=db" \
|| myconf="${myconf} --with-db=gdbm"
use ipv6 || myconf="${myconf} --without-ipv6"
use spell \
&& myconf="${myconf} --with-ispell" \
|| myconf="${myconf} --without-ispell"
if [ -f /var/vpopmail/etc/lib_deps ]; then
myconf="${myconf} --with-authvchkpw"
else
myconf="${myconf} --without-authvchkpw"
fi
#
# 1. If nls is enabled and ENABLE_UNICODE is not empty...
# enable the specified unicode sets
# 2. If nls is enabled and no unicode sets are specified,
# enable them all
# 3. If nls is disabled, disable unicode sets
#
if use nls && [ ! -z "$ENABLE_UNICODE" ]; then
myconf="${myconf} --enable-unicode=$ENABLE_UNICODE"
elif use nls; then
myconf="${myconf} --enable-unicode"
else
myconf="${myconf} --disable-unicode"
fi
myconf="${myconf} debug=true"
./configure \
--prefix=/usr \
--disable-root-check \
--mandir=/usr/share/man \
--sysconfdir=/etc/courier \
--libexecdir=/usr/lib/courier \
--datadir=/usr/share/courier \
--sharedstatedir=/var/lib/courier/com \
--localstatedir=/var/lib/courier \
--with-piddir=/var/run/courier \
--with-authdaemonvar=/var/lib/courier/authdaemon \
--with-mailuser=mail \
--with-mailgroup=mail \
--with-paranoid-smtpext \
--disable-autorenamesent \
--enable-mimetypes=/etc/apache/conf/mime.types \
--enable-workarounds-for-imap-client-bugs \
--host=${CHOST} ${myconf} || die "bad ./configure"
emake || die "Compile problem"
}
chg_cfg() {
file=${1}
key=${2}
value=${3}
echo "changing ${file}: ${key} to ${value}"
sed -e "/\#\#NAME: ${key}/,+20 s|${key}=.*|${key}=\"${value}\"|g" ${file} > ${file}.tmp && chmod --reference ${file} ${file}.tmp && mv ${file}.tmp ${file}
rm -f ${f}.tmp 1>/dev/null 2>&1
}
set_mime() {
local files=$*
chk_badmime='##NAME: BOFHBADMIME:0'
pos_badmime='##NAME: NOADDMSGID:0'
ins_badmime='\
##NAME: BOFHBADMIME:0\
#\
# set BOFHBADMIME\
# to \"reject\" to return mail with invalid MIME header\
# to \"wrap\" to wrap mail with invalid MIME header in an attachmant\
# to \"accept\" to pass mail with invalid MIME header untouched\
\
BOFHBADMIME=accept\
'
local f
for f in ${files}
do
if ! grep -q "${chk_badmime}" ${f}
then
echo "adding parameter ${chk_badmime} to ${f}"
sed -e"/${pos_badmime}/ i ${ins_badmime}" ${f} > ${f}.tmp && chmod --reference ${f} ${f}.tmp && mv -f ${f}.tmp ${f}
rm -f ${f}.tmp 1>/dev/null 2>&1
fi
done
}
set_maildir() {
local files=$*
origmaildir='Maildir'
newmaildir='.maildir'
local f
for f in ${files}
do
echo "changing ${origmaildir} in ${f} to ${newmaildir}"
sed -e"/^[^\#]/ s/${origmaildir}/${newmaildir}/g" ${f} > ${f}.tmp && chmod --reference ${f} ${f}.tmp && mv -f ${f}.tmp ${f}
rm -f ${f}.tmp 1> /dev/null 2>&1
done
}
src_install() {
dodir /var/lib/courier
dodir /etc/pam.d
# fix bug #15873 bad owner on /var/run/courier
diropts -o mail -g mail
keepdir /var/run/courier
make install DESTDIR=${D} || die
local f
cd ${D}/etc/courier
mv imapd.authpam imap.authpam
mv pop3d.authpam pop3.authpam
for f in *.authpam
do
cp "${f}" "${D}/etc/pam.d/${f%%.authpam}"
done
exeinto /etc/init.d
newexe ${FILESDIR}/courier courier
newexe ${FILESDIR}/courier-authdaemond courier-authdaemond
newexe ${FILESDIR}/courier-ldapaliasd courier-ldapaliasd
newexe ${FILESDIR}/courier-mta courier-mta
newexe ${FILESDIR}/courier-esmtpd courier-esmtpd
newexe ${FILESDIR}/courier-esmtpd-ssl courier-esmtpd-ssl
newexe ${FILESDIR}/courier-esmtpd-msa courier-esmtpd-msa
newexe ${FILESDIR}/courier-imapd courier-imapd
newexe ${FILESDIR}/courier-imapd-ssl courier-imapd-ssl
newexe ${FILESDIR}/courier-pop3d-ssl courier-pop3d-ssl
newexe ${FILESDIR}/courier-pop3d courier-pop3d
newexe ${FILESDIR}/courier-filterd courier-filterd
einfo "Setting up maildirs by default in the account skeleton ..."
diropts -m 755 -o root -g root
insinto /etc/skel
${D}/usr/bin/maildirmake ${D}/etc/skel/.maildir
newins ${FILESDIR}/dot_courier .courier
fperms 644 /etc/skel/.courier
${D}/usr/bin/maildirmake ${D}/var/spool/mail/.maildir
insinto /etc/courier
newins ${FILESDIR}/bofh bofh
newins ${FILESDIR}/locallowercase locallowercase
newins ${FILESDIR}/sizelimit sizelimit
newins ${FILESDIR}/apache-sqwebmail.inc apache-sqwebmail.inc
touch ${D}/var/lib/courier/webmail-logincache/.keep
touch ${D}/var/lib/courier/tmp/broken/.keep
touch ${D}/var/lib/courier/msgs/.keep
touch ${D}/var/lib/courier/msgq/.keep
touch ${D}/var/lib/courier/filters/.keep
touch ${D}/var/lib/courier/faxtmp/.keep
touch ${D}/var/lib/courier/calendar/public/.keep
touch ${D}/var/lib/courier/calendar/private/.keep
touch ${D}/var/lib/courier/calendar/localcache/.keep
touch ${D}/var/lib/courier/calendar/.keep
touch ${D}/var/lib/courier/allfilters/.keep
dodoc AUTHORS BENCHMARKS ChangeLog* NEWS README TODO
# See bug #10574
# file which describes the webadmin password file
insinto /etc/courier/webadmin
insopts -m 400 -o mail -g mail
doins ${FILESDIR}/password.dist
}
pkg_preinst() {
# avoid name collisions in /usr/sbin
local y
cd ${D}/usr/share/courier
set_maildir imapd imapd-ssl pop3d pop3d-ssl
cd ${D}/usr/sbin
for y in imapd imapd-ssl pop3d pop3d-ssl
do
mv ${y} courier-${y}
done
cd ${D}/etc/courier
for y in *.dist
do
cp ${y} ${y%%.dist}
done
touch esmtproutes
touch backuprelay
touch maildroprc
chown mail:root ldapaliasrc
chg_cfg imapd-ssl COURIERTLS /usr/bin/couriertls
chg_cfg authdaemonrc authmodulelist authpam
chg_cfg authdaemonrc version authdaemond.plain
set_mime esmtpd esmtpd-ssl esmtpd-msa
set_maildir courierd
}
pkg_postinst() {
cd ${S}
make install-configure
# fixes bug #15873 for upgrades, should be able to yank this sometime in
# the future
chown --recursive mail:mail ${ROOT}/var/run/courier
# need to do this for new installs to be able to start courier
# without having to run rc-update ...
/etc/init.d/depscan.sh
echo -e "\e[32;01m The following command :\033[0m"
echo -e "\e[32;01m ebuild /var/db/pkg/${CATEGORY}/${PN}-${PV}/${PN}-${PV}.ebuild config \033[0m"
echo -e "\e[32;01m will setup courier-mta for your system. \033[0m"
echo
echo -e "\e[32;01m To access/configure webmail ( sqwebmail ) : \033[0m"
echo
echo -e "\e[32;01m Append the following line to your apache.conf : \033[0m"
echo -e "\e[32;01m Include /etc/courier/apache-sqwebmail.inc \033[0m"
echo -e "\e[32;01m and make sure your apache can access the directory \033[0m"
echo -e "\e[32;01m /usr/lib/courier/courier/webmail ( hint: chmod/chown ) \033[0m"
echo -e "\e[32;01m To access sqwebmail point your browser to : \033[0m"
echo -e "\e[32;01m http://your.server.com/cgi-bin/webmail \033[0m"
echo -e "\e[32;01m or even better https://your.server.com/cgi-bin/webmail ;-) \033[0m"
}
pkg_config() {
mailhost=`hostname`
export mailhost
domainname=`echo ${mailhost} | sed -e "s/[^\.]*\.\(.*\)/\1/"`
export domainname
if [ ${ROOT} = "/" ] ; then
file=${ROOT}/etc/courier/locals
if [ ! -f ${file} ] ; then
echo "localhost" > ${file};
echo ${domainname} >> ${file};
fi
file=${ROOT}/etc/courier/esmtpacceptmailfor.dir/${domainname}
if [ ! -f ${file} ] ; then
echo ${domainname} > ${file}
/usr/sbin/makeacceptmailfor
fi
file=${ROOT}/etc/courier/smtpaccess/${domainname}
if [ ! -f ${file} ]
then
netstat -nr | grep "^[1-9]" | while read network gateway netmask rest
do
i=1
net=""
TIFS=${IFS}
IFS="."
for o in ${netmask}
do
if [ ${o} == "255" ]
then
[ "_${net}" == "_" ] || net="${net}."
t=`echo ${network} | cut -d " " -f ${i}`
net="${net}${t}"
fi
i=$((${i} + 1))
done
IFS=${TIFS}
echo "doing configuration - relay control for the network ${net} !"
echo "${net} allow,RELAYCLIENT" >> ${file}
done
/usr/sbin/makesmtpaccess
fi
fi
echo "creating cert for esmtpd-ssl:"
/usr/sbin/mkesmtpdcert
echo "creating cert for imapd-ssl:"
/usr/sbin/mkpop3dcert
echo "creating cert for pop3d-ssl:"
/usr/sbin/mkimapdcert
}
|