aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/manifests/public_list.pp
blob: 6b660abf7c614e02fdf11355b244e5a42e74f821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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,
        reply_to => "$name@$sympa::variable::vhost",
    }
}