aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/public_list.pp
blob: b14ff05270bbd3e875ea52ca612027cd10a81c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# public discussion list
# reply_to is set to the list
define sympa::public_list($subject,
                          $language = 'en',
                          $topics = false) {
    include sympa::variable
    list { $name:
        subject                 => $subject,
        language                => $language,
        topics                  => $topics,
        sender_subscriber       => true,
        reply_to                => "$name@$sympa::variable::vhost",
    }
}