diff options
author | 2002-08-07 04:00:03 +0000 | |
---|---|---|
committer | 2002-08-07 04:00:03 +0000 | |
commit | 854ea0e91730fb08198e9f0007221341d3e4ecbb (patch) | |
tree | 6587be572286f50d7c3f177aa37064d2adaf9acd /net-mail/courier | |
parent | typos... otherwise this masked version works for me :) (diff) | |
download | gentoo-2-854ea0e91730fb08198e9f0007221341d3e4ecbb.tar.gz gentoo-2-854ea0e91730fb08198e9f0007221341d3e4ecbb.tar.bz2 gentoo-2-854ea0e91730fb08198e9f0007221341d3e4ecbb.zip |
Updated keywords. Added --without-authvchkpw to the configure options
as some systems will fail to finish configure if vpopmail is not
installed.
Diffstat (limited to 'net-mail/courier')
-rw-r--r-- | net-mail/courier/ChangeLog | 15 | ||||
-rw-r--r-- | net-mail/courier/courier-0.39.1.ebuild | 5 | ||||
-rw-r--r-- | net-mail/courier/courier-0.39.2.ebuild | 249 | ||||
-rw-r--r-- | net-mail/courier/files/digest-courier-0.39.2 | 1 |
4 files changed, 266 insertions, 4 deletions
diff --git a/net-mail/courier/ChangeLog b/net-mail/courier/ChangeLog index d3601ba4c1bc..85ed8ae1958a 100644 --- a/net-mail/courier/ChangeLog +++ b/net-mail/courier/ChangeLog @@ -1,9 +1,20 @@ # ChangeLog for net-mail/courier # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/courier/ChangeLog,v 1.2 2002/07/04 04:17:55 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courier/ChangeLog,v 1.3 2002/08/07 04:00:03 raker Exp $ + +*courier-0.39.2 (03 Aug 2002) + + 06 Aug 2002; Nick Hadaway <raker@gentoo.org> + courier-0.39.2.ebuild, files/digest-courier-0.39.2 : + Added --without-authvchkpw to the configure options as some + systems will fail to finish configure if vpopmail is not installed. + Version bump. + + 03 Aug 2002; Andreas Erhart <andi@zollhaus.net> : + new version, thanks to Sam Varshavchik + removed 10MB message sizelimit *courier-0.39.1 (04 Jul 2002) 04 Jul 2002; Grant Goodyear <g2boojum@gentoo.org> ChangeLog : - New version, thanks to Alex Hartmann diff --git a/net-mail/courier/courier-0.39.1.ebuild b/net-mail/courier/courier-0.39.1.ebuild index dde027258294..49ef0fed0112 100644 --- a/net-mail/courier/courier-0.39.1.ebuild +++ b/net-mail/courier/courier-0.39.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/courier/courier-0.39.1.ebuild,v 1.3 2002/07/17 04:20:39 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/courier/courier-0.39.1.ebuild,v 1.4 2002/08/07 04:00:03 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="An MTA designed specifically for maildirs" @@ -9,7 +9,7 @@ HOMEPAGE="http://www.courier-mta.org/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86" +KEYWORDS="x86 -ppc -sparc -sparc64" PROVIDE="virtual/mta virtual/imapd" @@ -58,6 +58,7 @@ src_compile() { --enable-mimetypes=/etc/apache/conf/mime.types \ --enable-workarounds-for-imap-client-bugs \ --with-authdaemonvar=/var/lib/courier/authdaemon \ + --without-authvchkpw \ --host=${CHOST} ${myconf} || die "bad ./configure" emake || die "compile problem" diff --git a/net-mail/courier/courier-0.39.2.ebuild b/net-mail/courier/courier-0.39.2.ebuild new file mode 100644 index 000000000000..8819aa4ec5a3 --- /dev/null +++ b/net-mail/courier/courier-0.39.2.ebuild @@ -0,0 +1,249 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-mail/courier/courier-0.39.2.ebuild,v 1.1 2002/08/07 04:00:03 raker Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="An MTA designed specifically for maildirs" +SRC_URI="http://ftp1.sourceforge.net/courier/${P}.tar.gz" +HOMEPAGE="http://www.courier-mta.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 -ppc -sparc -sparc64" + +PROVIDE="virtual/mta + virtual/imapd" +RDEPEND="virtual/glibc + >=app-crypt/gnupg-1.0.4 + >=dev-libs/openssl-0.9.6 + >=dev-tcltk/expect-5.33.0 + 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 )" +DEPEND="${RDEPEND} sys-devel/perl sys-apps/procps" + +src_unpack() { + unpack ${A} + + cd ${S} + patch -p1 < ${FILESDIR}/${PF}-gentoo.diff || die +} + +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" + use berkdb || myconf="${myconf} --with-db=gdbm" + + ./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-mailuser=mail \ + --with-mailgroup=mail \ + --with-paranoid-smtpext \ + --enable-mimetypes=/etc/apache/conf/mime.types \ + --enable-workarounds-for-imap-client-bugs \ + --with-authdaemonvar=/var/lib/courier/authdaemon \ + --without-authvchkpw \ + --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 + mkdir -p ${D}/etc/pam.d + mkdir -p ${D}/var/run/courier + make install DESTDIR=${D} + + 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 + +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 + + dodoc AUTHORS BENCHMARKS ChangeLog* NEWS README TODO +} + +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 + 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() { + 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" +} + +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 +} diff --git a/net-mail/courier/files/digest-courier-0.39.2 b/net-mail/courier/files/digest-courier-0.39.2 new file mode 100644 index 000000000000..f001f8212fc2 --- /dev/null +++ b/net-mail/courier/files/digest-courier-0.39.2 @@ -0,0 +1 @@ +MD5 9ae7545a4ae03fbb2f656af775dd9621 courier-0.39.2.tar.gz 3595230 |