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