diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-01-14 06:51:03 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:35 +0200 |
commit | 650db94b3b8dc6665c3883ac29f78adfe23e03f0 (patch) | |
tree | 8fc334329381952850dda59f16a558d0159305d9 /roles/webmail | |
parent | f8a46672a40b29f04a1a6417042759e2c25d4671 (diff) |
Don't use IPSec to relay messages to localhost.
Diffstat (limited to 'roles/webmail')
-rw-r--r-- | roles/webmail/templates/etc/postfix/main.cf.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/webmail/templates/etc/postfix/main.cf.j2 b/roles/webmail/templates/etc/postfix/main.cf.j2 index cb57b23..cd026d1 100644 --- a/roles/webmail/templates/etc/postfix/main.cf.j2 +++ b/roles/webmail/templates/etc/postfix/main.cf.j2 @@ -63,7 +63,11 @@ smtp_data_done_timeout = 1200s # Tunnel everything through IPSec smtp_tls_security_level = none +{% if 'MTA-out' in group_names %} +smtp_bind_address = 127.0.0.1 +{% else %} smtp_bind_address = 172.16.0.1 +{% endif %} smtpd_tls_security_level = none |