From: mh Date: Sun, 6 Mar 2011 13:56:15 +0000 (+0100) Subject: add outgoing smtp rule X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=19e70974a098d235dcad5014652600ee8fc0e84d;p=puppet-shorewall.git add outgoing smtp rule --- diff --git a/manifests/rules/out/smtp.pp b/manifests/rules/out/smtp.pp new file mode 100644 index 0000000..2cc77cc --- /dev/null +++ b/manifests/rules/out/smtp.pp @@ -0,0 +1,11 @@ +class shorewall::rules::out::smtp { + shorewall::rule { + 'me-net-tcp_smtp': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => 'smtp', + order => 240, + action => 'ACCEPT'; + } +}