diff options
author | mh <mh@immerda.ch> | 2009-10-03 16:53:55 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-12-07 11:34:39 -0500 |
commit | 340255d445c76107eabaaf29c5d8c87f9fe09563 (patch) | |
tree | 3cdd054377b46d97e2041f2e635d8e244e10dc81 /manifests/rules/out/pop3.pp | |
parent | 94e1638a1156e58057808e8175a6db71b3268633 (diff) | |
download | puppet-shorewall-340255d445c76107eabaaf29c5d8c87f9fe09563.tar.gz puppet-shorewall-340255d445c76107eabaaf29c5d8c87f9fe09563.tar.bz2 |
add pop3 rules
Diffstat (limited to 'manifests/rules/out/pop3.pp')
-rw-r--r-- | manifests/rules/out/pop3.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rules/out/pop3.pp b/manifests/rules/out/pop3.pp new file mode 100644 index 0000000..ebd4828 --- /dev/null +++ b/manifests/rules/out/pop3.pp @@ -0,0 +1,11 @@ +class shorewall::rules::out::pop3 { + shorewall::rule { + 'me-net-tcp_pop3_s': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => 'pop3,pop3s', + order => 260, + action => 'ACCEPT'; + } +} |