diff options
author | Dan Fandrich <danf@mageia.org> | 2025-02-14 14:00:28 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2025-02-14 14:00:28 -0800 |
commit | 20e7024f471d165ec210f510357c31ae15058a97 (patch) | |
tree | d575a0756b2a330caf49c9bc6b0f4b522f1ed3d1 /modules/sympa | |
parent | 8b5f1bf9f2ed49d81a9e75c21e867b5bdf2e5b75 (diff) | |
download | puppet-20e7024f471d165ec210f510357c31ae15058a97.tar puppet-20e7024f471d165ec210f510357c31ae15058a97.tar.gz puppet-20e7024f471d165ec210f510357c31ae15058a97.tar.bz2 puppet-20e7024f471d165ec210f510357c31ae15058a97.tar.xz puppet-20e7024f471d165ec210f510357c31ae15058a97.zip |
Allow Bugzilla messages to the kernel list (mga#33748)
Extend the public mailing list template to allow hard-coding specific
addresses, like the announce template allows.
Diffstat (limited to 'modules/sympa')
-rw-r--r-- | modules/sympa/manifests/list/public.pp | 4 |
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}", } |