1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #!/usr/sbin/nft -f
#
# !!! This file is managed by Ansible !!!
#
table inet firewall {
chain inbound {
# Allow mail stuff.
tcp dport smtp accept comment "maddy (smtp)"
tcp dport submissions accept comment "maddy (submissions)"
tcp dport submission accept comment "maddy (submission)"
tcp dport imaps accept comment "maddy (imaps)"
tcp dport imap2 accept comment "maddy (imap)"
}
}