aboutsummaryrefslogtreecommitdiff
path: root/manifests/mail.pp
blob: d31cfd877b05ce6cd970a387d0c0f7c17b97b789 (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: {
      $sympa_subdomain  = "listas"
      $sympa_lang       = "pt_BR"
    }
  }

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