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