X-Git-Url: https://pwan.org/git/?p=hgr.git;a=blobdiff_plain;f=manifests%2Fpostfix.pp;h=9bee27551f3319d17bb7acdc579fcd6cf4fcafce;hp=506af5cddbffb6f5ae2fa846b25b5f2e4bea4be8;hb=68357a041147937852c9c872c244d9bc732a2294;hpb=85f3d9e49845b6bfaaeaa59a5a7496cc2f89140e diff --git a/manifests/postfix.pp b/manifests/postfix.pp index 506af5c..9bee275 100644 --- a/manifests/postfix.pp +++ b/manifests/postfix.pp @@ -34,6 +34,14 @@ class hgr::postfix { mode => "0644", notify => Service["postfix"], require => [Package["postfix","spamassassin"]]; + # TODO: need to run portmap on this file after updating it / before restarting postfix + "/etc/postfix/send_access": + ensure => present, + owner => "root", + group => "root", + mode => "0644", + notify => Service["postfix"], + require => Package["postfix"]; "/etc/procmailrc": ensure => present, source => "puppet:///modules/hgr/procmailrc", @@ -41,8 +49,6 @@ class hgr::postfix { group => "root", mode => "0644", require => Package["procmail"]; - - } service { @@ -51,8 +57,4 @@ class hgr::postfix { enable => true, require => Package["postfix"]; } - - - - }