summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp20
1 files changed, 20 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 5a41e4d..d5c9d69 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -75,3 +75,23 @@ class exim::disabled inherits exim {
ensure => stopped,
}
}
+
+class exim::tls inherits exim {
+ file { "/etc/exim4/conf.d/router/195_exim4_config_tls_verify":
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 0644,
+ source => "puppet:///modules/exim/195_exim4_config_tls_verify",
+ notify => Service["exim4"],
+ }
+
+ file { "/etc/exim4/conf.d/transport/30_exim4-config_remote_smtp_tls_verify":
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 0644,
+ source => "puppet:///modules/exim/30_exim4-config_remote_smtp_tls_verify",
+ notify => Service["exim4"],
+ }
+}