diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-25 15:17:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-25 15:17:38 -0300 |
commit | fbfe6182f0e45f5e702601f400518955dc76b16d (patch) | |
tree | f9be2195c54fcd2b9ce14015228567d154157d50 /manifests | |
parent | 62c8a5b159e2ae3402880196780bfc466cb26137 (diff) | |
download | puppet-mail-fbfe6182f0e45f5e702601f400518955dc76b16d.tar.gz puppet-mail-fbfe6182f0e45f5e702601f400518955dc76b16d.tar.bz2 |
Sympa aliases
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/sympa.pp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/manifests/sympa.pp b/manifests/sympa.pp index b604006..0198197 100644 --- a/manifests/sympa.pp +++ b/manifests/sympa.pp @@ -54,4 +54,24 @@ class mail::sympa { "sympa_destination_recipient_limit": value => '1'; "sympabounce_destination_recipient_limit": value => '1'; } + + mailalias { "sympa": + recipient => "|/usr/lib/sympa/bin/queue sympa", + notify => Exec["newaliases"], + } + + mailalias { "sympa-request": + recipient => "postmaster", + notify => Exec["newaliases"], + } + + mailalias { "sympa-owner": + recipient => "postmaster", + notify => Exec["newaliases"], + } + + mailalias { "listmaster": + recipient => "postmaster", + notify => Exec["newaliases"], + } } |