diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2018-04-04 16:11:20 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2018-04-04 16:11:20 +0200 |
commit | b5a0be7a37e1bbc1aef2a7d1844a1da4aec5634f (patch) | |
tree | 6db47371993c0f9957b7ee8cd04c49a01df50590 /roles/common/templates/etc | |
parent | 779fc904868bb2bc3f5f73cfd225ec7655ba14cf (diff) |
Perform recipient address verification on the MSA itself.
Diffstat (limited to 'roles/common/templates/etc')
-rw-r--r-- | roles/common/templates/etc/iptables/services.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/common/templates/etc/iptables/services.j2 b/roles/common/templates/etc/iptables/services.j2 index d199c9e..4a6d559 100644 --- a/roles/common/templates/etc/iptables/services.j2 +++ b/roles/common/templates/etc/iptables/services.j2 @@ -27,7 +27,7 @@ out tcp 636 # LDAPS {% if 'MX' in group_names %} in tcp 25 # SMTP {% endif %} -{% if 'out' in group_names %} +{% if 'out' in group_names or 'MSA' in group_names %} out tcp 25 # SMTP {% endif %} {% if 'IMAP' in group_names %} |