From: Peter Palfrader Date: Sun, 22 Sep 2019 09:25:40 +0000 (+0200) Subject: bugs_master: allow incoming mail to the submission port from the role X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=f248cc589e7d528d16f61c8420c33983b88ae699;p=mirror%2Fdsa-puppet.git bugs_master: allow incoming mail to the submission port from the role --- diff --git a/modules/roles/manifests/bugs_master.pp b/modules/roles/manifests/bugs_master.pp index ba478bd38..3df3c7c54 100644 --- a/modules/roles/manifests/bugs_master.pp +++ b/modules/roles/manifests/bugs_master.pp @@ -9,4 +9,10 @@ class roles::bugs_master { owner => 'debbugs', group => 'debbugs', } + + # The bugs service accepts bug reports on the submission port + ferm::rule::simple { 'bugs-submission': + description => 'Allow submission access from the world', + port => 'submission', + } }