summaryrefslogtreecommitdiff
path: root/manifests/rules/imap.pp
blob: 7fbe181833ecdd79a6145abc9f63a99f2a0654fd (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::imap {
    shorewall::rule {
        'net-me-tcp_imap_s':
            source          =>      'net',
            destination     =>      '$FW',
            proto           =>      'tcp',
            destinationport =>      '143,993',
            order           =>      260,
            action          =>      'ACCEPT';
    }
}