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 | |
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.
-rwxr-xr-x | deployment/lists/manifests/init.pp | 1 | ||||
-rw-r--r-- | modules/sympa/manifests/list/public.pp | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/deployment/lists/manifests/init.pp b/deployment/lists/manifests/init.pp index feecdd75..4a190ea9 100755 --- a/deployment/lists/manifests/init.pp +++ b/deployment/lists/manifests/init.pp @@ -193,6 +193,7 @@ class lists { sympa::list::public {'kernel': subject => 'Development discussion list about Kernel', + sender_email => [ "bugzilla_noreply@ml.${::domain}" ], topics => 'developers', } 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}", } |