summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/mx/received_anon.pp
blob: 51ba3faa002c2aa9535c043436f6f09eed779664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Anonymize the user's home IP from the email headers (Feature #3866) 
class site_postfix::mx::received_anon {

  package { 'postfix-pcre': ensure => installed, require => Package['postfix'] }

  file { '/etc/postfix/checks/received_anon':
    source => 'puppet:///modules/site_postfix/checks/received_anon',
    mode   => '0644',
    owner  => root,
    group  => root,
    notify => Service['postfix']
  }
}