1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-20 02:52:11 +00:00

#1946: fixing envelope-from on sieve redirecting

This commit is contained in:
Thomas Urban 2021-03-26 09:33:01 +01:00
parent 6653dbb2e2
commit de9207f48d

View File

@ -192,6 +192,12 @@ EOF
cp conf/sieve-spam.txt /etc/dovecot/sieve-spam.sieve
sievec /etc/dovecot/sieve-spam.sieve
# Adjust sieve to use local account's address as envelope-from in forwarding
# mails to external MTAs (#1946).
grep sieve_redirect_envelope_from /etc/dovecot/conf.d/99-local-sieve.conf &>/dev/null || \
sed -i /etc/dovecot/conf.d/99-local-sieve.conf -e '/^}$/ i\
sieve_redirect_envelope_from = orig_recipient'
# PERMISSIONS
# Ensure configuration files are owned by dovecot and not world readable.