diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-11-23 15:56:15 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-11-23 15:56:15 +0000 |
commit | 06bf93d16c94d29996be54dd06ec2fad9ca1a318 (patch) | |
tree | dd768e1f247ebc2fa55addfc63989c399cef839c /net-mail | |
parent | dev-db/mysql => virtual/mysql (diff) | |
download | gentoo-2-06bf93d16c94d29996be54dd06ec2fad9ca1a318.tar.gz gentoo-2-06bf93d16c94d29996be54dd06ec2fad9ca1a318.tar.bz2 gentoo-2-06bf93d16c94d29996be54dd06ec2fad9ca1a318.zip |
Fix mbox location in default dovecot.conf
(Portage version: 2.1.2_rc2-r1)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/dovecot/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/dovecot/dovecot-1.0_rc15.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-mail/dovecot/ChangeLog b/net-mail/dovecot/ChangeLog index 7c583babf4ca..d4ddf36544f5 100644 --- a/net-mail/dovecot/ChangeLog +++ b/net-mail/dovecot/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/dovecot # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.76 2006/11/22 17:32:32 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.77 2006/11/23 15:56:15 uberlord Exp $ + + 23 Nov 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_rc15.ebuild: + Fix mbox location in default dovecot.conf 22 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org> dovecot-1.0_rc15.ebuild: diff --git a/net-mail/dovecot/dovecot-1.0_rc15.ebuild b/net-mail/dovecot/dovecot-1.0_rc15.ebuild index 540a1a3c7643..f8cd378f6d5c 100644 --- a/net-mail/dovecot/dovecot-1.0_rc15.ebuild +++ b/net-mail/dovecot/dovecot-1.0_rc15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-1.0_rc15.ebuild,v 1.5 2006/11/22 17:32:32 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-1.0_rc15.ebuild,v 1.6 2006/11/23 15:56:15 uberlord Exp $ inherit autotools eutils @@ -38,11 +38,12 @@ pkg_setup() { } src_compile() { - local myconf="--sysconfdir=/etc/dovecot --with-ioloop=best --with-poll=best" + local myconf= use ssl && myconf="${myconf} --with-ssl=openssl" \ || myconf="${myconf} --without-ssl" - econf --localstatedir=/var \ + econf --localstatedir=/var --sysconfdir=/etc/dovecot \ + --with-ioloop=best --with-poll=best \ $(use_enable debug) \ $(use_enable ipv6) \ $(use_with kerberos gssapi) \ @@ -83,7 +84,7 @@ src_install () { # .maildir is the Gentoo default, but we need to support mbox to local mail_location="maildir:~/.maildir" if use mbox ; then - mail_loctation="mbox:/var/spool/mail/%u:INDEX=/var/dovecot/%u" + mail_location="mbox:/var/spool/mail/%u:INDEX=/var/dovecot/%u" keepdir /var/dovecot sed -i -e 's|#mail_extra_groups =|mail_extra_groups = mail|' "${conf}" fi |