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