From 42634d4ada187cb6e287d925f2487255a01c08e6 Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Tue, 14 Jan 2014 10:13:56 +0800 Subject: [PATCH] Add mailing list for OpenStack Ambassadors Currently, OpenStack Ambassadors are conducting any private communications using a massive list of CCs. While most communications should happen directly with the community, and on the community mailing list, this new private mailing list will faciliate internal discussions on sensitive topics. Change-Id: I46122c9d688f66e910a47e7b26a73bca4cefc28b --- modules/openstack_project/manifests/lists.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index c5df823b75..3539993e84 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -128,4 +128,14 @@ class openstack_project::lists( webserver => $listdomain, mailserver => $listdomain, } + + + maillist { 'ambassadors': + ensure => present, + admin => 'tom@openstack.org', + password => $listpassword, + description => 'Private discussions between OpenStack Ambassadors', + webserver => $listdomain, + mailserver => $listdomain, + } }