aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/announce_list_email.pp
blob: bebeea130654e826bd772b4ad51d97d803004a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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,
				  $subscriber_ldap_group = false,
                                  $language = 'en',
                                  $topics = false) {
    list { $name:
        subject      => $subject,
        profile      => '',
        language     => $language,
        topics       => $topics,
        reply_to     => $reply_to,
        sender_email => $sender_email,
	subscriber_ldap_group => $subscriber_ldap_group,
    }
}