formula-postfix/postfix/iptables-input.sls

25 lines
406 B
Plaintext
Raw Normal View History

2014-04-23 15:50:54 -04:00
smtp.input:
iptables.chain_present:
-
2014-04-23 15:55:01 -04:00
smtp.iptables.tcp:
2014-04-23 15:50:54 -04:00
iptables.insert:
- table: filter
- position: 1
- chain: smtp.input
- jump: ACCEPT
- match: state
- connstate: NEW,ESTABLISHED
- dport: 25
- proto: tcp
- save: True
2014-04-23 15:55:01 -04:00
smtp.iptables.filter:
2014-04-23 15:50:54 -04:00
iptables.insert:
- table: filter
- position: 1
- chain: INPUT
- jump: smtp.input
- save: True