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