Merge "Creates StarlingX mailing lists"

This commit is contained in:
Zuul 2018-06-06 13:04:32 +00:00 committed by Gerrit Code Review
commit ee1ba99c04
1 changed files with 30 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class openstack_project::lists(
$listpassword = ''
) {
$mm_domains='lists.openstack.org:lists.zuul-ci.org:lists.airshipit.org'
$mm_domains='lists.openstack.org:lists.zuul-ci.org:lists.airshipit.org:lists.starlingx.io'
class { 'mailman':
multihost => true,
@ -145,6 +145,11 @@ class openstack_project::lists(
default_url_host => 'lists.airshipit.org',
}
mailman::site { 'starlingx':
default_email_host => 'lists.starlingx.io',
default_url_host => 'lists.starlingx.io',
}
# Add new mailing lists below this line
mailman_list { 'mailman@openstack':
@ -547,4 +552,28 @@ class openstack_project::lists(
password => $listpassword,
description => 'Discussion of Airship usage and development.',
}
mailman_list { 'mailman@starlingx':
require => Mailman::Site['starlingx'],
ensure => present,
admin => 'nobody@openstack.org',
password => $listpassword,
description => 'The mailman site list',
}
mailman_list { 'starlingx-announce@starlingx':
require => Mailman::Site['starlingx'],
ensure => present,
admin => 'jonathan@openstack.org',
password => $listpassword,
description => 'Announcements of StarlingX releases and other important information.',
}
mailman_list { 'starlingx-discuss@starlingx':
require => Mailman::Site['starlingx'],
ensure => present,
admin => 'jonathan@openstack.org',
password => $listpassword,
description => 'Discussion of StarlingX usage and development.',
}
}