summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-09-25 14:22:07 -0400
committerMicah Anderson <micah@leap.se>2013-09-25 14:22:41 -0400
commitaf6e944090a3b54ca605b1b6145fbb7c008fb093 (patch)
tree943b5821434dd8499c2cfb66ab0e47f0ffabe47a
parente757dd2f52f3859c17f5015274299998dd9f6ba6 (diff)
add smtp_tls_received_header to include information about the protocol and cipher used as well as the client and issuer CommonName into the "Received:" header
Also, clean up the parameters to standardize them Change-Id: Ib6be27f0f93e0a9e20fbdffa1d42220a25fc8ed4
-rw-r--r--puppet/modules/site_postfix/manifests/mx.pp14
1 files changed, 10 insertions, 4 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp
index abc0ab46..80b750d0 100644
--- a/puppet/modules/site_postfix/manifests/mx.pp
+++ b/puppet/modules/site_postfix/manifests/mx.pp
@@ -16,10 +16,16 @@ class site_postfix::mx {
postfix::config {
'mydestination':
value => "\$myorigin, localhost, localhost.\$mydomain, ${domain}";
- 'mailbox_size_limit': value => '0';
- 'home_mailbox': value => 'Maildir/';
- 'virtual_alias_maps': value => 'tcp:localhost:4242';
- 'luser_relay': value => 'vmail';
+ 'mailbox_size_limit':
+ value => '0';
+ 'home_mailbox':
+ value => 'Maildir/';
+ 'virtual_alias_maps':
+ value => 'tcp:localhost:4242';
+ 'luser_relay':
+ value => 'vmail';
+ 'smtpd_tls_received_header':
+ value => 'yes';
}
include site_postfix::mx::smtpd_checks