You've already forked docker-mailserver
mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-07 23:03:10 +02:00
Fix: only chmod when there are files (#3203)
This commit is contained in:
@ -87,8 +87,8 @@ function _setup_dovecot_sieve
|
||||
fi
|
||||
|
||||
chown dovecot:root -R /usr/lib/dovecot/sieve-*
|
||||
find /usr/lib/dovecot/sieve-* -type d -exec chmod 755 {} \;
|
||||
chmod +x /usr/lib/dovecot/sieve-{filter,pipe}/*
|
||||
find /usr/lib/dovecot/sieve-* -type d -exec chmod 755 {} +
|
||||
find /usr/lib/dovecot/sieve-{filter,pipe} -type f -exec chmod +x {} +
|
||||
}
|
||||
|
||||
function _setup_dovecot_quota
|
||||
|
Reference in New Issue
Block a user