Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Many systems send emails "From" root@system-name. That causes problems when
# an email is bounced. This type is used to have Postfix change the sender
# address of an email while it is in flight. Both the From: header and the
# envelope sender are changed.
#
# Example of how to set a sender:
#
# base::postfix::sender { 'root@stanford.edu':
# ensure => 'noreply@stanford.edu'
# }
#
# Example of how to ensure there is no sender map:
#
# base::postfix::sender { 'luke': ensure => absent }
#
# Assumes that a command 'postmap hash:$file' has been defined that will
# rebuild the senders map.
define base::postfix::sender(
$ensure,
$file = '/etc/postfix/senders'
) {
$pattern = "'^${name}'"
case $ensure {
'absent': {
exec { "rm-sender-${name}":
command => "sed -i -e '/^${name}/d' ${file}",
onlyif => "grep ${pattern} ${file}",
notify => Exec["postmap hash:${file}"]
}
}
default: {
$line = "${name} ${ensure}"
exec { "add-sender-${name}":
command => "echo '${line}' >> ${file}",
unless => "grep ${pattern} ${file}",
require => Package['postfix'],
notify => Exec["postmap hash:${file}"],
}
exec { "fix-sender-${name}":
command => "sed -i -e 's/^${name}..*\$/${line}/' ${file}",
unless => "grep '^${line}\$' ${file}",
require => Exec["add-sender-${name}"],
notify => Exec["postmap hash:${file}"],
}
}
}
}