diff options
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/courier/ChangeLog | 6 | ||||
-rw-r--r-- | mail-mta/courier/files/courier-init-r4 | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/mail-mta/courier/ChangeLog b/mail-mta/courier/ChangeLog index c8023136e90b..153c00f2aaae 100644 --- a/mail-mta/courier/ChangeLog +++ b/mail-mta/courier/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-mta/courier # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.167 2013/10/04 15:32:54 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.168 2013/10/18 13:21:14 hanno Exp $ + + 18 Oct 2013; Hanno Boeck <hanno@gentoo.org> files/courier-init-r4: + Fix ownership of /var/run/courier, this doesn't matter for most uses, but + some extensions like courierfilter need it. 04 Oct 2013; Jeroen Roovers <jer@gentoo.org> courier-0.71.ebuild: Stable for HPPA (bug #486504). diff --git a/mail-mta/courier/files/courier-init-r4 b/mail-mta/courier/files/courier-init-r4 index 16701f4d1def..7b5c68304ac9 100644 --- a/mail-mta/courier/files/courier-init-r4 +++ b/mail-mta/courier/files/courier-init-r4 @@ -1,6 +1,6 @@ #!/sbin/runscript # Portions Copyright 2003 Gentoo Linux -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/files/courier-init-r4,v 1.2 2013/03/07 23:51:41 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/files/courier-init-r4,v 1.3 2013/10/18 13:21:14 hanno Exp $ # # script originally from Courier distfile original name = courier.sysvinit # adapted for Gentoo by Brian Jackson @@ -24,7 +24,7 @@ depend() { } checkconfig() { - checkpath -q -d -m 0755 /var/run/courier + checkpath -q -d -o mail:mail -m 0755 /var/run/courier [ -f ${sysconfdir}/pop3d-ssl ] && . ${sysconfdir}/pop3d-ssl |