diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2004-05-30 19:15:35 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2004-05-30 19:15:35 +0000 |
commit | 5a773f5a6635268d59582ec0bfba7e012ee7cbf0 (patch) | |
tree | 1b67da595c97dc356b945481918f019110dd0455 /net-mail/dovecot | |
parent | a few updates (diff) | |
download | historical-5a773f5a6635268d59582ec0bfba7e012ee7cbf0.tar.gz historical-5a773f5a6635268d59582ec0bfba7e012ee7cbf0.tar.bz2 historical-5a773f5a6635268d59582ec0bfba7e012ee7cbf0.zip |
Fixed bugs 49876 and 49690
Diffstat (limited to 'net-mail/dovecot')
-rw-r--r-- | net-mail/dovecot/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/dovecot/Manifest | 4 | ||||
-rw-r--r-- | net-mail/dovecot/dovecot-0.99.10.4.ebuild | 10 |
3 files changed, 12 insertions, 8 deletions
diff --git a/net-mail/dovecot/ChangeLog b/net-mail/dovecot/ChangeLog index 6e504954146a..03c3cb3cdc35 100644 --- a/net-mail/dovecot/ChangeLog +++ b/net-mail/dovecot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/dovecot # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.5 2004/05/30 04:58:38 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.6 2004/05/30 19:15:35 g2boojum Exp $ + + 30 May 2004; Grant Goodyear <g2boojum@gentoo.org> dovecot-0.99.10.4.ebuild: + Added "gnutls" to IUSE and fixed ssl certificate handling + (thanks to Andreas Simon, bugs # 49876 and # 49690) *dovecot-0.99.10.5 (30 May 2004) diff --git a/net-mail/dovecot/Manifest b/net-mail/dovecot/Manifest index be2df617cd0f..5814a7335e88 100644 --- a/net-mail/dovecot/Manifest +++ b/net-mail/dovecot/Manifest @@ -1,6 +1,6 @@ -MD5 d139aa43b9cfee91c9a7666c22bc1ce2 dovecot-0.99.10.4.ebuild 4062 +MD5 2edebba66a386c850cab30f787c25d42 dovecot-0.99.10.4.ebuild 4048 MD5 1759a1641187e95c852569ea7c23eb71 dovecot-0.99.10.5.ebuild 4374 -MD5 418c896168a7f80cdf534ddd2591c6a3 ChangeLog 1225 +MD5 5289a7688812705595432ac846e28354 ChangeLog 1418 MD5 61e0d05b1306513aede2838fa81b05b5 metadata.xml 225 MD5 02900826bf90ce0fcbf43a3ebbfa31cf files/digest-dovecot-0.99.10.4 69 MD5 533a7de1250c369ae33b60c3c53586a1 files/digest-dovecot-0.99.10.5 69 diff --git a/net-mail/dovecot/dovecot-0.99.10.4.ebuild b/net-mail/dovecot/dovecot-0.99.10.4.ebuild index 6ca0d5689ec1..5bd4e143e585 100644 --- a/net-mail/dovecot/dovecot-0.99.10.4.ebuild +++ b/net-mail/dovecot/dovecot-0.99.10.4.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-0.99.10.4.ebuild,v 1.3 2004/05/10 04:17:24 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-0.99.10.4.ebuild,v 1.4 2004/05/30 19:15:35 g2boojum Exp $ -IUSE="debug ipv6 ldap maildir pam postgres sasl ssl vpopmail nopop3d" +IUSE="debug gnutls ipv6 ldap maildir pam postgres sasl ssl vpopmail nopop3d" DESCRIPTION="An IMAP and POP3 server written with security primarily in mind" HOMEPAGE="http://dovecot.procontrol.fi/" @@ -103,14 +103,14 @@ src_install () { newexe ${FILESDIR}/dovecot.init dovecot # PAM - if [ "`use pam`" ]; then + if use pam ; then dodir /etc/pam.d insinto /etc/pam.d newins ${FILESDIR}/dovecot.pam dovecot fi # Create SSL certificates - if [ "`use ssl`" || "`use gnutls`" ]; then + if use ssl || use gnutls ; then cd ${S}/doc dodir /etc/ssl/certs dodir /etc/ssl/private @@ -127,7 +127,7 @@ src_install () { } pkg_postinst() { - if [ "`use pam`" ]; then + if use pam ; then ewarn "If you are upgrading from Dovecot prior to 0.99.10, be aware" ewarn "that the PAM profile was changed from 'imap' to 'dovecot'." einfo "Please review /etc/pam.d/dovecot." |