From 7c954dba72e2be6baaa7e28c466447f995638f37 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 28 May 2019 13:56:42 -0700 Subject: [PATCH] Add opendev service-announce list This way we can send a single email that our users can see if subscribed to this list instead of sending emails to all of their discuss lists. Change-Id: I3b978a3c4e7888f14e3986628cb29a6c86bbcf61 --- modules/openstack_project/manifests/lists.pp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index 31dd195741..d3b330fa24 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -499,4 +499,12 @@ class openstack_project::lists( password => $listpassword, description => 'Collaborating on Network Based Media Processing related platform and infrastructure systems usage and development.', } + + mailman_list { 'service-announce@opendev': + require => Mailman::Site['opendev'], + ensure => present, + admin => 'cboylan@sapwetik.org', + password => $listpassword, + description => 'Announcement list for OpenDev services.', + } }