blob: 7be51b222a6a9dcedd2be0569d48bdb2b33e572d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class site_postfix::satellite {
$root_mail_recipient = hiera ('contacts')
$mail = hiera ('mail')
$relayhost = $mail['smarthost']
$cert_name = hiera('name')
class { '::postfix::satellite':
relayhost => $relayhost,
root_mail_recipient => $root_mail_recipient
}
include site_postfix::mx::smtp_tls
}
|