diff --git a/bin/v-add-mail-account-autoreply b/bin/v-add-mail-account-autoreply index 20f5d7ad..d7faf161 100755 --- a/bin/v-add-mail-account-autoreply +++ b/bin/v-add-mail-account-autoreply @@ -44,7 +44,15 @@ is_object_unsuspended "mail/$domain" 'ACCOUNT' "$account" #----------------------------------------------------------# # Add exim autoreply echo -e "$autoreply" > $HOMEDIR/$user/conf/mail/$domain/autoreply.$account.msg -chown -R root:mail $HOMEDIR/$user/conf/mail/$domain/autoreply.$account.msg + +# Set ownership and permissions +if [ "$MAIL_SYSTEM" = 'exim' ]; then + mail_user=exim +fi +if [ "$MAIL_SYSTEM" = 'exim4' ]; then + mail_user=Debian-exim +fi +chown $mail_user:mail $HOMEDIR/$user/conf/mail/$domain/autoreply.$account.msg chmod 660 $HOMEDIR/$user/conf/mail/$domain/autoreply.$account.msg