aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/list/private_open.pp
blob: 7f3f510564ee76725c1a4fc22ca505a83e7cc6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# list with private archive, restricted to member of $ldap_group
# everybody can post
# used for contact alias
define sympa::list::private_open( $subject,
                                  $subscriber_ldap_group,
                                  $language = 'en',
                                  $topics = false) {
    sympa::list { $name:
        subject               => $subject,
        profile               => '',
        language              => $language,
        topics                => $topics,
        subscriber_ldap_group => $subscriber_ldap_group,
        public_archive        => false,
    }
}