From: Silvio Rhatto Date: Sun, 4 Aug 2013 22:59:44 +0000 (-0300) Subject: Enabling gpg-mailgate X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=14b806694588c430f4e24ef955c09fe763c4dc5d;p=puppet-mail.git Enabling gpg-mailgate --- 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}" } }