diff options
author | Richard A Nelson (Rick) <cowboy@debian.org> | 2007-11-23 22:02:00 +0000 |
---|---|---|
committer | Andreas Beckmann <debian@abeckmann.de> | 2012-10-01 20:07:34 +0200 |
commit | d920c2bbf44af5fa0af8d4112290cb55a0de3c94 (patch) | |
tree | 89e7f6bd71eb51c4de65da605366eefcd87affbe /debian/local/update_auth.in | |
parent | e2c9ad1abeb477b91d72eaa49080e255de79c907 (diff) | |
download | sendmail-debian/8.14.2-2.tar.gz |
Imported Debian patch 8.14.2-2debian/8.14.2-2
Diffstat (limited to 'debian/local/update_auth.in')
-rw-r--r-- | debian/local/update_auth.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/local/update_auth.in b/debian/local/update_auth.in index 9b2a58e..d23b5b4 100644 --- a/debian/local/update_auth.in +++ b/debian/local/update_auth.in @@ -297,7 +297,7 @@ if [ ! -f ${SASLDB} ]; then ${SASLDBLISTUSERS} 1>/dev/null 2>&1 || true; echo "$SMPWD" | ${SASLPASSWD} -p -c -u $SMRLM $SMAID \ 1>/dev/null 2>&1 || true; - chown root:smmsp ${SASLDB}; + chown root:sasl ${SASLDB}; chmod 0660 ${SASLDB}; else echo "*** You do not have the ${SASL_BIN} package installed!"; @@ -317,9 +317,9 @@ if [ -x ${SASLPASSWD} ]; then # For sendmail, /etc/sasldb must be 0600 or (0640/0660 w/dontblamesendmail) if [ -f ${SASLDB} ]; then - find ${SASLDB} -gid 0 -print | xargs -r chown root:smmsp; - find ${SASLDB} -gid 8 -print | xargs -r chown root:smmsp; - find ${SASLDB} -group smmsp -print | xargs -r chmod g+rw; + find ${SASLDB} -gid 0 -print | xargs -r chown root:sasl; + find ${SASLDB} -gid 8 -print | xargs -r chown root:sasl; + find ${SASLDB} -group smmsp -print | xargs -r chown root:sasl; chmod g-x,o-rwx ${SASLDB}; fi; |