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
This commit is contained in:
Anita Kuno 2014-09-02 20:39:36 -04:00
parent a35d8b60cf
commit 546c6801c2

View File

@ -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,
}
}