From d41e3cbf65d55d23734b40411616270d004c6ea7 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 19 Mar 2012 16:20:59 +0000 Subject: split all others type of list --- modules/sympa/manifests/public_list.pp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 modules/sympa/manifests/public_list.pp (limited to 'modules/sympa/manifests/public_list.pp') diff --git a/modules/sympa/manifests/public_list.pp b/modules/sympa/manifests/public_list.pp new file mode 100644 index 00000000..6b660abf --- /dev/null +++ b/modules/sympa/manifests/public_list.pp @@ -0,0 +1,13 @@ +# public discussion list +# reply_to is set to the list +define sympa::public_list($subject, + $language = 'en', + $topics = false) { + include sympa::variable + list { $name: + subject => $subject, + language => $language, + topics => $topics, + reply_to => "$name@$sympa::variable::vhost", + } +} -- cgit v1.2.1