summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/mx.pp
blob: 9104c2cb89d6697e72a9c78bdbfffbc9646915eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class site_postfix::mx {

  $domain_hash = hiera ('domain')
  $domain = $domain_hash['full_suffix']

  # see https://leap.se/code/issues/1936 for contact email addr
  #$root_mail_recipient = ''
  $postfix_smtp_listen = 'all'

  postfix::config {
    # just en example
    'delay_warning_time':     value => '4h';
  }

  include ::postfix
}