8916c096a20efe3c0cf9dbdb0944fd9783e0ab34
[mirror/dsa-puppet.git] / modules / exim / manifests / mx.pp
1 # our heavy exim class
2 # @param is_mailrelay this system is a mailrelay, both in and out, for debian hosts
3 class exim::mx(
4   Boolean $is_mailrelay = false,
5 ){
6   class { 'exim':
7     use_smarthost => false,
8     is_mailrelay  => $is_mailrelay,
9   }
10
11   include clamav
12   include postgrey
13   include fail2ban::exim
14
15   file { '/etc/exim4/ccTLD.txt':
16     source => 'puppet:///modules/exim/common/ccTLD.txt',
17   }
18   file { '/etc/exim4/surbl_whitelist.txt':
19     source => 'puppet:///modules/exim/common/surbl_whitelist.txt',
20   }
21   file { '/etc/exim4/exim_surbl.pl':
22     source => 'puppet:///modules/exim/common/exim_surbl.pl',
23     notify => Service['exim4'],
24   }
25
26   package { 'monitoring-plugins-standard':
27     ensure => installed,
28   }
29
30   ferm::rule::simple { 'dsa-smtp':
31     description => 'Allow smtp access from the world',
32     port        => '25',
33   }
34 }