Forge Home

mailman

Mailman mailing-list server

10,905 downloads

10,479 latest version

3.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.4 (latest)
  • 0.1.3
released May 24th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'thias-mailman', '0.1.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add thias-mailman
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install thias-mailman --version 0.1.4

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

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