}
}
+# 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,
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"],
+ }
}