diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-04-22 17:45:42 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-04-22 17:45:42 +0000 |
commit | a9ffcee2b2ebe2f46609d2705e1af44d0627e827 (patch) | |
tree | d4246ab6d2a6ec8a8b773b327ebad007ba37fbd8 /modules/sympa/manifests/public_list.pp | |
parent | 0f5eb63dc507635367d8f2a5d9e175d2e9c3faf5 (diff) | |
download | puppet-a9ffcee2b2ebe2f46609d2705e1af44d0627e827.tar puppet-a9ffcee2b2ebe2f46609d2705e1af44d0627e827.tar.gz puppet-a9ffcee2b2ebe2f46609d2705e1af44d0627e827.tar.bz2 puppet-a9ffcee2b2ebe2f46609d2705e1af44d0627e827.tar.xz puppet-a9ffcee2b2ebe2f46609d2705e1af44d0627e827.zip |
sympa: merge subscriber_moderated scenari into sender.restricted scenari
Diffstat (limited to 'modules/sympa/manifests/public_list.pp')
-rw-r--r-- | modules/sympa/manifests/public_list.pp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/sympa/manifests/public_list.pp b/modules/sympa/manifests/public_list.pp index 6b660abf..b14ff052 100644 --- a/modules/sympa/manifests/public_list.pp +++ b/modules/sympa/manifests/public_list.pp @@ -5,9 +5,10 @@ define sympa::public_list($subject, $topics = false) { include sympa::variable list { $name: - subject => $subject, - language => $language, - topics => $topics, - reply_to => "$name@$sympa::variable::vhost", + subject => $subject, + language => $language, + topics => $topics, + sender_subscriber => true, + reply_to => "$name@$sympa::variable::vhost", } } |