diff options
Diffstat (limited to 'manifests/system.pp')
-rw-r--r-- | manifests/system.pp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index b0926f5..217e5c3 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -4,6 +4,7 @@ class mail::system { $postfix_use_dovecot_lda = "yes" $postfix_use_schleuder = "yes" $postfix_use_sympa = "yes" + $postfix_use_mlmmj = "yes" $postfix_anon_sasl = "yes" $postfix_manage_transport_regexp = "yes" $postfix_manage_virtual_regexp = "yes" @@ -65,8 +66,20 @@ class mail::system { } } + # Mlmmj + case $mail_mlmmj { + true: { + case $mlmmj_subdomain { + '': { $mlmmj_subdomain = "mlmmj" } + } + + $mlmmj_relay_domains = ", ${mlmmj_subdomain}.${domain}" + include mail::mlmmj + } + } + case $postfix_relay_domains { - '': { $postfix_relay_domains = "${postfix_default_relay_domains}${sympa_relay_domains}${schleuder_relay_domains}" } + '': { $postfix_relay_domains = "${postfix_default_relay_domains}${sympa_relay_domains}${schleuder_relay_domains}${mlmmj_relay_domains}" } } # Include base configuration |