diff options
Diffstat (limited to 'mail-filter/opendkim/opendkim-2.10.3-r9.ebuild')
-rw-r--r-- | mail-filter/opendkim/opendkim-2.10.3-r9.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail-filter/opendkim/opendkim-2.10.3-r9.ebuild b/mail-filter/opendkim/opendkim-2.10.3-r9.ebuild index 841184ed46b9..9a9ff14612ae 100644 --- a/mail-filter/opendkim/opendkim-2.10.3-r9.ebuild +++ b/mail-filter/opendkim/opendkim-2.10.3-r9.ebuild @@ -140,7 +140,13 @@ src_install() { echo "# For use with unbound" >> "${T}/opendkim.conf" || die echo "#TrustAnchorFile /etc/dnssec/root-anchors.txt" \ >> "${T}/opendkim.conf" || die - echo UserID opendkim >> "${T}/opendkim.conf" || die + echo "UserID opendkim" >> "${T}/opendkim.conf" || die + + # The UMask is really only used for the PID file (root:root) and the + # local UNIX socket, if you're using one. It should be 0117 for the + # socket, so we might as well set that unconditionally here. + echo "UMask 0117" >> "${T}/opendkim.conf" || die + insinto /etc/opendkim doins "${T}/opendkim.conf" } |