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