[Postfix] Add custom_transport.pcre
parent
b2cff8226e
commit
e1fdbba0f7
|
@ -10,6 +10,7 @@ data/conf/postfix/sni.map
|
||||||
data/conf/postfix/sni.map.db
|
data/conf/postfix/sni.map.db
|
||||||
data/conf/postfix/extra.cf
|
data/conf/postfix/extra.cf
|
||||||
data/conf/postfix/sql
|
data/conf/postfix/sql
|
||||||
|
data/conf/postfix/custom_transport.pcre
|
||||||
data/conf/postfix/allow_mailcow_local.regexp
|
data/conf/postfix/allow_mailcow_local.regexp
|
||||||
data/conf/dovecot/sql
|
data/conf/dovecot/sql
|
||||||
data/conf/nextcloud-*.bak
|
data/conf/nextcloud-*.bak
|
||||||
|
|
|
@ -313,9 +313,14 @@ if [ -f /opt/postfix/conf/extra.cf ]; then
|
||||||
cat /opt/postfix/conf/extra.cf >> /opt/postfix/conf/main.cf
|
cat /opt/postfix/conf/extra.cf >> /opt/postfix/conf/main.cf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -f /opt/postfix/conf/custom_transport.pcre ]; then
|
||||||
|
echo "Creating dummy custom_transport.pcre"
|
||||||
|
touch /opt/postfix/conf/custom_transport.pcre
|
||||||
|
fi
|
||||||
|
|
||||||
# Fix Postfix permissions
|
# Fix Postfix permissions
|
||||||
chown -R root:postfix /opt/postfix/conf/sql/
|
chown -R root:postfix /opt/postfix/conf/sql/ /opt/postfix/conf/custom_transport.pcre
|
||||||
chmod 640 /opt/postfix/conf/sql/*.cf
|
chmod 640 /opt/postfix/conf/sql/*.cf /opt/postfix/conf/custom_transport.pcre
|
||||||
chgrp -R postdrop /var/spool/postfix/public
|
chgrp -R postdrop /var/spool/postfix/public
|
||||||
chgrp -R postdrop /var/spool/postfix/maildrop
|
chgrp -R postdrop /var/spool/postfix/maildrop
|
||||||
postfix set-permissions
|
postfix set-permissions
|
||||||
|
|
|
@ -181,7 +181,8 @@ smtp_tls_policy_maps=proxy:mysql:/opt/postfix/conf/sql/mysql_tls_policy_override
|
||||||
smtp_header_checks = pcre:/opt/postfix/conf/anonymize_headers.pcre
|
smtp_header_checks = pcre:/opt/postfix/conf/anonymize_headers.pcre
|
||||||
mail_name = Postcow
|
mail_name = Postcow
|
||||||
# local_transport map catches local destinations and prevents routing local dests when the next map would route "*"
|
# local_transport map catches local destinations and prevents routing local dests when the next map would route "*"
|
||||||
transport_maps = pcre:/opt/postfix/conf/local_transport,
|
transport_maps = pcre:/opt/postfix/conf/custom_transport.pcre,
|
||||||
|
pcre:/opt/postfix/conf/local_transport,
|
||||||
proxy:mysql:/opt/postfix/conf/sql/mysql_transport_maps.cf
|
proxy:mysql:/opt/postfix/conf/sql/mysql_transport_maps.cf
|
||||||
smtp_sasl_auth_soft_bounce = no
|
smtp_sasl_auth_soft_bounce = no
|
||||||
postscreen_discard_ehlo_keywords = silent-discard, dsn
|
postscreen_discard_ehlo_keywords = silent-discard, dsn
|
||||||
|
|
Loading…
Reference in New Issue