Version information
released May 24th 2013
Start using this module
Add this module to your Puppetfile:
mod 'thias-mailman', '0.1.4'
Learn more about managing modules with a PuppetfileDocumentation
thias/mailman — version 0.1.4 May 24th 2013
puppet-mailman
Overview
This module manages the main Mailman configuration. In addition, you will need other modules to provide :
- The web server configuration needed for the web interface.
- The mail transport agent configuration needed to receive and send emails.
You can use the default puppet maillist
type to create and delete lists once
the instance is up and running.
mailman
: Configure the main Mailman instance
Examples
class { 'mailman':
default_url_host => 'lists.example.com',
default_email_host => 'example.com',
default_url_pattern => 'https://%s/mailman/',
mailman_site_list => 'mailman-list',
mm_cfg_settings => {
'ALLOW_SITE_ADMIN_COOKIES' => 'Yes',
'PUBLIC_ARCHIVE_URL' => "'https://%(hostname)s/pipermail/%(listname)s'",
'MTA' => "'Postfix'",
'POSTFIX_STYLE_VIRTUAL_DOMAINS' => "'False'",
'DEFAULT_SUBJECT_PREFIX' => "''",
'DEFAULT_REPLY_GOES_TO_LIST' => '1',
},
}
2013-05-24 - 0.1.4
- Update README and use markdown.
- Change to 2-space indent.
- Prefix puppet variables with @ in the template.
2012-04-03 - 0.1.3
- Start cleaning up the module to match current puppetlabs guidelines.
- Sort mm_cfg_settings to have a consistent file with puppet 2.7+.
- Add support for add_virtualhost.
Copyright (C) 2011-2013 Matthias Saou Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.