1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-08-08 23:06:49 +02:00

Merge pull request #1332 from Tecnativa/amavis-touch-vhost

Avoid infinite failure log in Amavis with SMTP_ONLY=1
This commit is contained in:
Erik Wramner
2019-12-06 07:20:29 +01:00
committed by GitHub

View File

@ -1093,6 +1093,8 @@ function _setup_postfix_vhost() {
if [ -f /tmp/vhost.tmp ]; then
cat /tmp/vhost.tmp | sort | uniq > /etc/postfix/vhost && rm /tmp/vhost.tmp
elif [ ! -f /etc/postfix/vhost ]; then
touch /etc/postfix/vhost
fi
}