From 546c6801c20d26d0cd0895a93f9654dadbefc417 Mon Sep 17 00:00:00 2001 From: Anita Kuno Date: Tue, 2 Sep 2014 20:39:36 -0400 Subject: [PATCH] Creates third-party-requests mailing list The previous patch deleted the entry for the third-party-request mailing list since -request is a reserved word on the mailing list server. This patch adds the list entry back with the name third-party-requests, which should avoid a word usage clash with the mail server. Change-Id: I91cc67ba87c1deb1f21fa102f4051934cf9d890d --- modules/openstack_project/manifests/lists.pp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index 52982d156a..7f9f7a7001 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -223,4 +223,13 @@ class openstack_project::lists( mailserver => $listdomain, } + maillist { 'third-party-requests': + ensure => present, + admin => 'anteaya@anteaya.info', + password => $listpassword, + description => 'Third party system account requests.', + webserver => $listdomain, + mailserver => $listdomain, + } + }