summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/checks.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-09-03 10:37:21 -0400
committerMicah Anderson <micah@leap.se>2013-09-03 12:26:17 -0400
commitcfdbad27fe0b1c5e98b127f2c3d22258e233ef11 (patch)
treefeab8e0e771af7616d22af7a78d41f354babbe25 /puppet/modules/site_postfix/manifests/checks.pp
parent822f92c3ff3fb8ef640b7e1c10819f367014f8d1 (diff)
add /etc/postfix/checks directory and setup a check_helo_access that allows admins to have some control over problem clients connecting that present helo patterns that they wish to block (#3694)
Change-Id: I159c29b6fe17e3d75b607d1a6fa82856b976c9b4
Diffstat (limited to 'puppet/modules/site_postfix/manifests/checks.pp')
-rw-r--r--puppet/modules/site_postfix/manifests/checks.pp23
1 files changed, 23 insertions, 0 deletions
diff --git a/puppet/modules/site_postfix/manifests/checks.pp b/puppet/modules/site_postfix/manifests/checks.pp
new file mode 100644
index 00000000..06f9a7a4
--- /dev/null
+++ b/puppet/modules/site_postfix/manifests/checks.pp
@@ -0,0 +1,23 @@
+class site_postfix::checks {
+
+ file {
+ '/etc/postfix/checks':
+ ensure => directory,
+ mode => '0755',
+ owner => root,
+ group => postfix,
+ require => Class['postfix'];
+
+ '/etc/postfix/checks/helo_checks':
+ content => template('site_postfix/checks/helo_access.erb'),
+ mode => '0644',
+ owner => root,
+ group => root;
+ }
+
+ exec {
+ '/usr/sbin/postmap /etc/postfix/checks/helo_checks':
+ refreshonly => true,
+ subscribe => File['/etc/postfix/checks/helo_checks'];
+ }
+}