aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/announce_list_email.pp
blob: e93f6b599899f5465916d778dc39870c86ae70ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# list where announce are sent by $email only
# reply_to is set to $reply_to
define sympa::announce_list_email($subject,
                                  $reply_to,
                                  $sender_email,
                                  $language = 'en',
                                  $topics = false) {
    list { $name:
        subject      => $subject,
        profile      => '',
        language     => $language,
        topics       => $topics,
        reply_to     => $reply_to,
        sender_email => $sender_email,
    }
}