Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/relay-ctrl/
Date: Sun, 31 May 2020 04:58:33
Message-Id: 1590900411.4f08d7f499b8b425adcd9ac6b4453e644ee03fd2.robbat2@gentoo
1 commit: 4f08d7f499b8b425adcd9ac6b4453e644ee03fd2
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 04:39:04 2020 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 04:46:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f08d7f4
7
8 net-mail/relay-ctrl: tweak storage permissions
9
10 Closes: https://bugs.gentoo.org/224545
11 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
12
13 net-mail/relay-ctrl/relay-ctrl-3.1.1-r3.ebuild | 6 +++++-
14 1 file changed, 5 insertions(+), 1 deletion(-)
15
16 diff --git a/net-mail/relay-ctrl/relay-ctrl-3.1.1-r3.ebuild b/net-mail/relay-ctrl/relay-ctrl-3.1.1-r3.ebuild
17 index 25383ad78d6..88c8668e862 100644
18 --- a/net-mail/relay-ctrl/relay-ctrl-3.1.1-r3.ebuild
19 +++ b/net-mail/relay-ctrl/relay-ctrl-3.1.1-r3.ebuild
20 @@ -46,7 +46,8 @@ src_install() {
21
22 keepdir ${RELAYCTRL_BASE} ${RELAYCTRL_BASE}/${RELAYCTRL_STORAGE}
23 fperms 700 ${RELAYCTRL_BASE}
24 - fperms 1777 ${RELAYCTRL_BASE}/${RELAYCTRL_STORAGE}
25 + # perm 777 is intentional, see http://untroubled.org/relay-ctrl/
26 + fperms 777 ${RELAYCTRL_BASE}/${RELAYCTRL_STORAGE}
27
28 dodir ${RELAYCTRL_CONFDIR}
29
30 @@ -70,4 +71,7 @@ pkg_postinst() {
31 fi
32 elog "Please see the instructions in /usr/share/doc/${PF}/README"
33 elog "for setup instructions with Courier-IMAP and Qmail"
34 +
35 + einfo "Ensure that the relay-ctrl-age cronjob is running"
36 + einfo "otherwise your system may accumulate old relay entries."
37 }