aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/restricted_list_open.pp
blob: 1730b9705f67e5031f59ee410d5630d9f55c0a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# same as restricted list, but anybody can post
define sympa::restricted_list_open( $subject,
                                    $subscriber_ldap_group,
                                    $language = 'en',
                                    $topics = false) {
    list { $name:
        subject               => $subject,
        profile               => '',
        language              => $language,
        topics                => $topics,
        subscriber_ldap_group => $subscriber_ldap_group,
        sender_ldap_group     => $subscriber_ldap_group,
    }
}