Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / modules / roles / manifests / lists.pp
1 class roles::lists {
2   include apache2
3
4   ssl::service { 'lists.debian.org':
5     notify => Exec['service apache2 reload'],
6     key    => true,
7   }
8
9   ferm::rule::simple { 'dsa-smtp':
10     description => 'Allow smtp access from the world',
11     port        => '25',
12   }
13 }