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