formula-postfix/postfix/iptables-input.sls
David J. M. Karlsen c7e986e12e have unique names
2014-04-23 21:55:01 +02:00

25 lines
406 B
Plaintext

smtp.input:
iptables.chain_present:
-
smtp.iptables.tcp:
iptables.insert:
- table: filter
- position: 1
- chain: smtp.input
- jump: ACCEPT
- match: state
- connstate: NEW,ESTABLISHED
- dport: 25
- proto: tcp
- save: True
smtp.iptables.filter:
iptables.insert:
- table: filter
- position: 1
- chain: INPUT
- jump: smtp.input
- save: True