summaryrefslogtreecommitdiff
path: root/manifests/rules/out/pop3.pp
blob: ea66bf7b4c121bf2312b11507a82a39c1b5ccc8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# outoging oper3
class shorewall::rules::out::pop3(
  $shorewall6 = true,
) {
  shorewall::rule {
    'me-net-tcp_pop3_s':
      source          => '$FW',
      destination     => 'net',
      proto           => 'tcp',
      destinationport => 'pop3,pop3s',
      order           => 260,
      action          => 'ACCEPT',
      shorewall6      => $shorewall6,
  }
}