mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Allow postfix master.cf overrides to start with numbers, not only characters (#1190)
This commit is contained in:
parent
c3e7ecc773
commit
cba6b07391
|
@ -1039,7 +1039,7 @@ function _setup_postfix_override_configuration() {
|
|||
fi
|
||||
if [ -f /tmp/docker-mailserver/postfix-master.cf ]; then
|
||||
while read line; do
|
||||
if [[ "$line" =~ ^[a-z] ]]; then
|
||||
if [[ "$line" =~ ^[0-9a-z] ]]; then
|
||||
postconf -P "$line"
|
||||
fi
|
||||
done < /tmp/docker-mailserver/postfix-master.cf
|
||||
|
|
Loading…
Reference in a new issue