blob: 339bb05bbbd44ee938b63ae05c984a17d2c0ea71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class nodo::mail {
# General configuration
$volatile_enabled = true
$mail_delivery = "postfix"
# Sympa mailing list manager
case $mail_sympa {
true: {
$sympa_subdomain = "listas"
$sympa_lang = "pt_BR"
}
}
# Class inclusion
include nodo::vserver
include mail::system
}
|