aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/sympa/manifests/list/public.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/sympa/manifests/list/public.pp b/modules/sympa/manifests/list/public.pp
index f0062665..7b97534a 100644
--- a/modules/sympa/manifests/list/public.pp
+++ b/modules/sympa/manifests/list/public.pp
@@ -2,12 +2,14 @@
# reply_to is set to the list
define sympa::list::public($subject,
$language = 'en',
- $topics = false) {
+ $topics = false,
+ $sender_email = false) {
include sympa::variable
list { $name:
subject => $subject,
language => $language,
topics => $topics,
+ sender_email => $sender_email,
sender_subscriber => true,
reply_to => "${name}@${sympa::variable::vhost}",
}