Avoid infinite failure log in Amavis with SMTP_ONLY=1

Fix #801 by simply touching the file if it doesn't exist.

@Tecnativa TT20505
This commit is contained in:
Jairo Llopis 2019-12-03 13:43:43 +00:00
parent 2bb1a753e7
commit 7f1bc8f8b3
No known key found for this signature in database
GPG Key ID: 59564BF1E22F314F
1 changed files with 2 additions and 0 deletions

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
}