46 lines
1.0 KiB
ReStructuredText
46 lines
1.0 KiB
ReStructuredText
|
:title: Mailing Lists
|
||
|
|
||
|
.. _lists:
|
||
|
|
||
|
Mailing Lists
|
||
|
#############
|
||
|
|
||
|
`Mailman <http://www.gnu.org/software/mailman/>`_ is installed on
|
||
|
lists.openstack.org to run OpenStack related mailing lists, as well as
|
||
|
host list archives.
|
||
|
|
||
|
At a Glance
|
||
|
===========
|
||
|
|
||
|
:Hosts:
|
||
|
* http://lists.openstack.org
|
||
|
:Puppet:
|
||
|
* :file:`modules/mailman`
|
||
|
* :file:`modules/openstack_project/manifests/lists.pp`
|
||
|
:Projects:
|
||
|
* http://www.gnu.org/software/mailman/
|
||
|
:Bugs:
|
||
|
* http://bugs.launchpad.net/openstack-ci
|
||
|
* https://bugs.launchpad.net/mailman
|
||
|
:Resources:
|
||
|
* `Mailman Documentation <http://www.gnu.org/software/mailman/docs.html>`_
|
||
|
|
||
|
Adding a List
|
||
|
=============
|
||
|
|
||
|
A list may be added by adding it to the ``openstack-infra/config``
|
||
|
repository in ``modules/openstack_project/manifests/lists.pp``. For
|
||
|
example:
|
||
|
|
||
|
.. code-block:: ruby
|
||
|
|
||
|
maillist { 'openstack-foo':
|
||
|
ensure => present,
|
||
|
admin => 'admin@example.com',
|
||
|
password => $listpassword,
|
||
|
description => 'Discussion of OpenStack Foo',
|
||
|
webserver => $listdomain,
|
||
|
mailserver => $listdomain,
|
||
|
}
|
||
|
|