diff options
author | mh <mh@immerda.ch> | 2010-03-29 23:41:04 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-03-29 23:41:04 +0200 |
commit | ddda68d19bc375e73cf15bbb45e6eaef04b268f8 (patch) | |
tree | 59c2c173a6f0738be480ed80cfe2f66ba223482e /manifests/rules | |
parent | c594395a9df6b08e8e0f3da64d4cdca4b1e1b75e (diff) | |
download | puppet-shorewall-ddda68d19bc375e73cf15bbb45e6eaef04b268f8.tar.gz puppet-shorewall-ddda68d19bc375e73cf15bbb45e6eaef04b268f8.tar.bz2 |
add smtp submission port
Diffstat (limited to 'manifests/rules')
-rw-r--r-- | manifests/rules/smtp_submission.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/smtp_submission.pp b/manifests/rules/smtp_submission.pp new file mode 100644 index 0000000..dff90f3 --- /dev/null +++ b/manifests/rules/smtp_submission.pp @@ -0,0 +1,10 @@ +class shorewall::rules::smtp_submission { + shorewall::rule { 'net-me-smtp_submission-tcp': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => '587', + order => 240, + action => 'ACCEPT'; + } +} |