aboutsummaryrefslogtreecommitdiff
path: root/manifests/mail.pp
blob: 58f77dc2883ec1c27ba062899c41a7a73970e33d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class nodo::mail {
  # General configuration
  $volatile_enabled = true
  $mail_virtual     = true
  $mail_delivery    = "postfix"

  # Sympa mailing list manager
  case $mail_sympa {
    true,'disabled': {
      $sympa_subdomain  = "listas"
      $sympa_lang       = "pt_BR"
    }
  }

  # Class inclusion
  include nodo::vserver
  include mail::system
}