diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-02 18:40:03 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:17 +0200 |
commit | e04f5a300bd6c0aa5622093b936846fce69d82f2 (patch) | |
tree | bad8d4771baa630de7ff04bb5887f4756b7c7ee5 /roles/common | |
parent | a9af50cc3e54389281caa0a353ddf82e10069425 (diff) |
typo
Diffstat (limited to 'roles/common')
-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 3e31f04..f382ea3 100644 --- a/roles/common/templates/etc/iptables/services.j2 +++ b/roles/common/templates/etc/iptables/services.j2 @@ -10,30 +10,30 @@ out udp 67 # DHCP {% if 'NTP-master' in group_names %} out udp 123 123 # NTP {% endif %} in tcp {{ ansible_ssh_port|default('22') }} # SSH {% if 'MX' in group_names %} in tcp 25 # SMTP {% endif %} {% if 'out' in group_names %} in tcp {{ postfix_instance.out.port }} out tcp 25 # SMTP {% else %} out tcp {{ postfix_instance.out.port }} {% endif %} {% if 'IMAP' in group_names %} in tcp 993 # IMAPS in tcp 4190 # ManageSieve {% endif %} {% if 'MDA' in group_names %} -in tcp {{ postfix_instance.mda.port }} +in tcp {{ postfix_instance.IMAP.port }} {% endif %} {% if 'MSA' in group_names %} in tcp 587 # SMTP-AUTH {% endif %} {% if 'webmail' in group_names %} in tcp 80,443 # HTTP/HTTPS out tcp 993 # IMAP # TODO imapc out tcp 4190 {% endif %} |