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