aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/list/announce.pp
blob: ec0649269a8649b84b50b868e505555a14a00d3f (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,
    }
}