summaryrefslogtreecommitdiff
path: root/manifests/system.pp
blob: 86781addde42495a9eb52b7ceab0f15b1a752ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
class mail::system {
  $postfix_smtp_listen     = "all"
  $postfix_use_amavisd     = "yes"
  $postfix_use_dovecot_lda = "yes"
  $postfix_mydestination   = '$myhostname, localhost.$mydomain, localhost'

  case $postfix_mynetworks {
    '': { $postfix_mynetworks = "127.0.0.0/8" }
  }

  case $postfixadmin_database_password {
    '': { fail("You need to define \$postfixadmin_database_password host config") }
  }

  case $postfixadmin_setup_hash {
    '': {
      warning("You need to define \$postfixadmin_setup_hash host config")
      $postfixadmin_setup_hash = 'changeme'
    }
  }

  case $postfixadmin_database_user {
    '': { $postfixadmin_database_user = "postfix" }
  }

  case $postfixadmin_database_host {
    '': { $postfixadmin_database_host = "localhost" }
  }

  case $postfixadmin_database_name {
    '': { $postfixadmin_database_name= "postfix" }
  }

  # Module requirements
  include postfix
  include database
  include ssl::mail

  # Subsystems
  include mail::packages
  include mail::sasl
  include mail::tls
  include mail::dovecot
  include mail::amavisd
  include mail::header_checks
  include mail::postfixadmin
  include mail::web

  # Mailing list manager
  case $mail_sympa {
    true: {

      case $sympa_database_password {
        '': { fail("You need to define \$sympa_database_password host config") }
      }

      case $sympa_database_name {
        '': { $sympa_database_name= "sympa" }
      }

      include mail::sympa
      include mail::web::sympa
      include mail::packages::sympa
    }
  }

  # Postfix configuration
  postfix::config {
    "mydomain":                            value => "$domain";
    "myhostname":                          value => "$fqdn";
    "mydestination":                       value => "$postfix_mydestination";
    "mynetworks":                          value => "$postfix_mynetworks";
    "relay_domains":                       value => '$mydestination';
    "transport_maps":                      value => "hash:/etc/postfix/transport";
    "mailbox_command":                     value => '/usr/bin/maildrop -d ${USER}';
    "virtual_mailbox_base":                value => '/var/mail/virtual';
    "virtual_uid_maps":                    value => 'static:5000';
    "virtual_gid_maps":                    value => 'static:5000';
    "virtual_transport":                   value => 'dovecot';
    "dovecot_destination_recipient_limit": value => '1';
    "recipient_delimiter":                 value => '+';
  }

  postfix::hash { "/etc/postfix/virtual":
    ensure => present,
  }

  postfix::hash { "/etc/postfix/transport":
    ensure => present,
  }

  # Recipient restrictions
  postfix::config { "smtpd_recipient_restrictions":
    value => 'permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_rbl_client psbl.surriel.com, check_policy_service inet:127.0.0.1:60000' }

  # Virtual mailboxes
  file { '/var/mail/virtual':
    ensure  => directory,
    owner   => vmail,
    group   => vmail,
    mode    => 0750,
    require => User['vmail'],
  }

  group { "vmail":
    ensure => present,
    gid    => 5000,
  }

  user { "vmail":
    ensure   => present,
    uid      => 5000,
    gid      => "vmail",
    password => "*",
    home     => '/var/mail/virtual',
    require  => Group['vmail'],
  }
}