diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index adc869050c..c0e72f1dfe 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -367,6 +367,7 @@ class openstack_project::lists( webserver => $listdomain, mailserver => $listdomain, } + maillist { 'embargo-notice': ensure => present, admin => 'jeremy@openstack.org', @@ -375,4 +376,13 @@ class openstack_project::lists( webserver => $listdomain, mailserver => $listdomain, } + + maillist { 'release-announce': + ensure => present, + admin => 'thierry@openstack.org', + password => $listpassword, + description => 'Announcement of official OpenStack releases.', + webserver => $listdomain, + mailserver => $listdomain, + } }