From: Silvio Rhatto Date: Thu, 10 Nov 2011 13:20:30 +0000 (-0200) Subject: Adding $exim_tls_verify_relay_to_domains X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=68b52e165e0a76c9fe8c1fef825fac49f5ec73fb;p=puppet-exim.git Adding $exim_tls_verify_relay_to_domains --- diff --git a/manifests/init.pp b/manifests/init.pp index d5c9d69..7b047e2 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -76,6 +76,7 @@ class exim::disabled inherits exim { } } +# See http://www.exim.org/exim-html-current/doc/html/spec_html/ch39.html class exim::tls inherits exim { file { "/etc/exim4/conf.d/router/195_exim4_config_tls_verify": ensure => present, @@ -94,4 +95,16 @@ class exim::tls inherits exim { source => "puppet:///modules/exim/30_exim4-config_remote_smtp_tls_verify", notify => Service["exim4"], } + + file { '/etc/exim4/conf.d/main/00_local_settings': + ensure => $exim_tls_verify_relay_to_domains ? { + '' => absent, + default => $exim_tls_verify_relay_to_domains, + }, + owner => root, + group => root, + mode => 0644, + content => "$exim_tls_verify_relay_to_domains\n", + notify => Service["exim4"], + } }