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