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