blob: 1d4ca751bd3a81b61514f4f61925d004b82a77b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class mail::schleuder(
$subdomain = hiera('schleuder_subdomain', $mail::schleuder::params::subdomain)
) {
# Schleuder subsystems
include mail::schleuder::packages
postfix::config { "schleuder_destination_recipient_limit": value => '1', nonstandard => true }
postfix::transport { "${subdomain}.$domain":
ensure => present,
destination => "schleuder",
}
}
|