summaryrefslogtreecommitdiff
path: root/manifests/system.pp
blob: 2fd4662cc1929051ec58ba76b089158f8466a0a6 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
class mail::system(
  $mydestination       = hiera('mail::mydestination',       '$myhostname, localhost.$mydomain, localhost'),
  $relay_domains       = hiera('mail::relay_domains',       ''),
  $mynetworks          = hiera('mail::postfix_mynetworks',  "127.0.0.0/8"),
  $root_mail_recipient = hiera('mail::root_mail_recipient', 'nobody')
) {

  # Base postfix class
  class { 'postfix':
    root_mail_recipient     => $root_mail_recipient,
    smtp_listen             => "all",
    use_amavisd             => "yes",
    use_dovecot_lda         => "yes",
    use_schleuder           => hiera('mail::schleuder', false) ? {
      true    => "yes",
      default => "no",
    },
    use_sympa               => hiera('mail::sympa', false) ? {
      true    => "yes",
      default => "no",
    },
    use_mlmmj               => hiera('mail::mlmmj', false) ? {
      true    => "yes",
      default => "no",
    },
    use_firma               => hiera('mail::firma', false) ? {
      true    => "yes",
      default => "no",
    },
    use_gpg_mailgate        => hiera('mail::gpg_mailgate', false) ? {
      true    => "yes",
      default => "no",
    },
    use_submission          => "yes",
    use_smtps               => "no",
    anon_sasl               => "yes",
    manage_transport_regexp => "yes",
    manage_virtual_regexp   => "yes",
    manage_header_checks    => "yes",
    manage_tls_policy       => hiera('mail::postfix_manage_tls_policy', 'no')
  }

  # Log rotation
  file { '/etc/logrotate.d/postfix':
    ensure  => present,
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
    source  => 'puppet:///modules/postfix/postfix/logrotate',
    alias   => 'alias',
  }

  # SSL support
  include ssl

  # Common subsystems
  include mail::packages
  include mail::tls::hardened
  include mail::amavisd
  include mail::header_checks
  include mail::clamav
  include mail::spamassassin
  include mail::opendkim

  # DKIM
  mail::opendkim::key { "$domain": }

  # Default parameters
  include mail::firma::params
  include mail::mlmmj::params
  include mail::sympa::params
  include mail::schleuder::params
  include mail::virtual::params
  include mail::virtual::web::params

  # Virtual mail system
  case hiera('mail::virtual', false) {
    true: {
      class { 'mail::virtual': }
    }
    default: {
      include mail::regular
    }
  }

  # Sympa mailing list manager
  case hiera('mail::sympa', false) {
    true: {
      class { 'mail::sympa': }
      $sympa_relay_domains = ", ${mail::sympa::subdomain}.${domain}"
    }
    'disabled': {
      include mail::sympa::disabled
    }
    default: {
    }
  }

  # Schleuder mailing list manager
  case hiera('mail::schleuder', false) {
    true: {
      class { 'mail::schleuder': }
      $schleuder_relay_domains = ", ${mail::schleuder::subdomain}.${domain}"
    }
  }

  # Mlmmj
  case hiera('mail::mlmmj', false) {
    true: {
      class { 'mail::mlmmj': }

      $mlmmj_relay_domains = ", ${mail::mlmmj::subdomain}.${domain}"
    }
  }

  # Firma
  case hiera('mail::firma', false) {
    true: {
      class { 'mail::firma': }
      $firma_relay_domains = ", ${mail::firma::subdomain}.${domain}"
    }
  }

  # GPG Mail Gateway
  case hiera('mail::gpg_mailgate', false) {
    true: {
      class { 'mail::gpg_mailgate': }
    }
  }

  case $relay_domains {
    '': { $real_relay_domains = "${mydestination}${sympa_relay_domains}${schleuder_relay_domains}${mlmmj_relay_domains}${firma_relay_domains}" }
  }

  # Include base configuration
  include mail::base
}