diff options
Diffstat (limited to 'manifests/rules/smtp.pp')
| -rw-r--r-- | manifests/rules/smtp.pp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/manifests/rules/smtp.pp b/manifests/rules/smtp.pp new file mode 100644 index 0000000..b038901 --- /dev/null +++ b/manifests/rules/smtp.pp @@ -0,0 +1,10 @@ +class shorewall::rules::smtp { +    shorewall::rule { 'net-me-smtp-tcp': +        source          => 'net', +        destination     => '$FW', +        proto           => 'tcp', +        destinationport => '25', +        order           => 240, +        action          => 'ACCEPT'; +    } +} | 
