diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/system.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index 4e61fb2..5323fc6 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -15,6 +15,7 @@ class mail::system( use_sympa => "yes", use_mlmmj => "yes", use_firma => "yes", + use_gpg_mailgate => "yes", use_submission => "yes", use_smtps => "no", anon_sasl => "yes", @@ -90,6 +91,13 @@ class mail::system( } } + # GPG Mail Gateway + case hiera('mail::gpg_mailgate', false) { + true: { + class { 'mail::gpg_mailgate': } + } + } + case $relay_domains { '': { $real_relay_domains = "${mydestination}${sympa_relay_domains}${schleuder_relay_domains}${mlmmj_relay_domains}${firma_relay_domains}" } } |