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