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