diff options
author | mh <mh@immerda.ch> | 2012-02-16 16:51:56 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-04-07 13:56:47 -0300 |
commit | 59010a1c304801db6423f67d656399478fc603f0 (patch) | |
tree | 2ff29f6c26451f2dd62f53a3a5abb5b09bef7ab4 /manifests/mailman.pp | |
parent | 462db65ec48b6398c9a04a88cc4c197eb73f34fa (diff) | |
download | puppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.gz puppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.bz2 |
put classes and defines in the proper place
To take advantage of puppet's autoloading feature, which will be
mandatory sooner or later. We move all the files in their appropriate
place.
Diffstat (limited to 'manifests/mailman.pp')
-rw-r--r-- | manifests/mailman.pp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/manifests/mailman.pp b/manifests/mailman.pp new file mode 100644 index 0000000..cba0848 --- /dev/null +++ b/manifests/mailman.pp @@ -0,0 +1,36 @@ +# +# == Class: postfix::mailman +# +# Configures a basic smtp server, able to work for the mailman mailing-list +# manager. +# +# Parameters: +# - every global variable which works for class "postfix" will work here. +# +# Example usage: +# +# node "toto.example.com" { +# include mailman +# include postfix::mailman +# } +# +class postfix::mailman { + $postfix_smtp_listen = "0.0.0.0" + include postfix + + postfix::config { + "mydestination": value => ""; + "virtual_alias_maps": value => "hash:/etc/postfix/virtual"; + "transport_maps": value => "hash:/etc/postfix/transport"; + "mailman_destination_recipient_limit": value => "1", nonstandard => true; + } + + postfix::hash { "/etc/postfix/virtual": + ensure => present, + } + + postfix::hash { "/etc/postfix/transport": + ensure => present, + } + +} |