summaryrefslogtreecommitdiff
path: root/manifests/rules/out/pyzor.pp
blob: f4f5151a606516af76c659be12ef8125c426da1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# pyzor calls out on 24441
# https://wiki.apache.org/spamassassin/NetTestFirewallIssues
class shorewall::rules::out::pyzor {
  shorewall::rule { 'me-net-udp_pyzor':
    source          => '$FW',
    destination     => 'net',
    proto           => 'udp',
    destinationport => '24441',
    order           => 240,
    action          => 'ACCEPT';
  }
}