From 340255d445c76107eabaaf29c5d8c87f9fe09563 Mon Sep 17 00:00:00 2001 From: mh Date: Sat, 3 Oct 2009 16:53:55 +0200 Subject: add pop3 rules --- manifests/rules/out/pop3.pp | 11 +++++++++++ manifests/rules/pop3.pp | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 manifests/rules/out/pop3.pp create mode 100644 manifests/rules/pop3.pp (limited to 'manifests/rules') 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'; + } +} diff --git a/manifests/rules/pop3.pp b/manifests/rules/pop3.pp new file mode 100644 index 0000000..2587856 --- /dev/null +++ b/manifests/rules/pop3.pp @@ -0,0 +1,11 @@ +class shorewall::rules::pop3 { + shorewall::rule { + 'net-me-tcp_pop3_s': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => 'pop3,pop3s', + order => 260, + action => 'ACCEPT'; + } +} -- cgit v1.2.3