postfix-formula/postfix/iptables-input.sls

25 lines
406 B
Plaintext
Raw Normal View History

2014-04-23 21:50:54 +02:00
smtp.input:
iptables.chain_present:
-
2014-04-23 21:55:01 +02:00
smtp.iptables.tcp:
2014-04-23 21:50:54 +02: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 21:55:01 +02:00
smtp.iptables.filter:
2014-04-23 21:50:54 +02:00
iptables.insert:
- table: filter
- position: 1
- chain: INPUT
- jump: smtp.input
- save: True