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