summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/mx/smtp_auth.pp
blob: ab75130efe27057679f7f88d71256aa46709a2da (plain)
1
2
3
4
5
6
7
8
9
10
class site_postfix::mx::smtp_auth {
  $x509 = hiera('x509')

  postfix::config {
    'smtpd_tls_cert_file': value => $x509['client_ca_cert'];
    'smtpd_tls_key_file':  value => $x509['client_ca_key'];
    'smtpd_tls_ask_ccert': value => 'yes';
    #'smtpd_tls_CAfile':    value =>
  }
}