diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-01 14:38:52 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:13 +0200 |
commit | 170dc68f9275dffb48fbe3f8ebb2183cd7ddf111 (patch) | |
tree | 6049724b1bb2d527a337c2f07e14275b9bc40818 /roles/lists | |
parent | 909e291291414721b7f7bb4aae471a5c187b02c4 (diff) |
Outgoing SMTP proxy.
Diffstat (limited to 'roles/lists')
-rw-r--r-- | roles/lists/templates/etc/postfix/main.cf.j2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/lists/templates/etc/postfix/main.cf.j2 b/roles/lists/templates/etc/postfix/main.cf.j2 index 45e66aa..083fa2b 100644 --- a/roles/lists/templates/etc/postfix/main.cf.j2 +++ b/roles/lists/templates/etc/postfix/main.cf.j2 @@ -47,10 +47,10 @@ message_size_limit = 67108864 recipient_delimiter = + # Forward everything to our internal mailhub -{% if 'MTA-out' in group_names %} -relayhost = [127.0.0.1]:{{ postfix_instance["MTA-out"].port }} +{% if 'out' in group_names %} +relayhost = [127.0.0.1]:{{ postfix_instance.out.port }} {% else %} -relayhost = [outgoing.fripost.org]:{{ postfix_instance["MTA-out"].port }} +relayhost = [outgoing.fripost.org]:{{ postfix_instance.out.port }} {% endif %} relay_domains = @@ -68,7 +68,7 @@ smtpd_timeout = 1200s # Tunnel everything through IPSec smtp_tls_security_level = none -{% if 'MTA-out' in group_names %} +{% if 'out' in group_names %} smtp_bind_address = 127.0.0.1 {% else %} smtp_bind_address = 172.16.0.1 |