Set up ssh between snapshot nodes
[mirror/dsa-puppet.git] / modules / exim / manifests / mx.pp
index bcee6aa..8916c09 100644 (file)
@@ -23,14 +23,12 @@ class exim::mx(
     notify => Service['exim4'],
   }
 
-  $autocertdir = hiera('paths.auto_certs_dir')
-  dnsextras::tlsa_record{ 'tlsa-submission':
-    zone     => 'debian.org',
-    certfile => "${autocertdir}/${::fqdn}.crt",
-    port     => 587,
-    hostname => $::fqdn,
-  }
   package { 'monitoring-plugins-standard':
     ensure => installed,
   }
+
+  ferm::rule::simple { 'dsa-smtp':
+    description => 'Allow smtp access from the world',
+    port        => '25',
+  }
 }