aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/restricted_list.pp
blob: 798531de67343a353b9dc4b2a80ae5835c137e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# list where people cannot subscribe, where people from $ldap_group receive
# mail, with public archive
define sympa::restricted_list($subject,
                              $subscriber_ldap_group,
                              $language = 'en',
                              $topics = false) {
    list { $name:
        subject               => $subject,
        profile               => '',
        topics                => $topics,
        language              => $language,
        subscriber_ldap_group => $subscriber_ldap_group,
        sender_ldap_group     => $subscriber_ldap_group,
    }
}