| 1234567891011121314151617181920212223242526272829 | # SERVERinet_interfaces = all# $myhostname is as prefix is a RFC requirementsmtpd_banner = $myhostname ESMTP $mail_name quid agis?smtpd_sender_restrictions = reject_non_fqdn_sender# RCPT TO matches $relay_domains => !reject_unauth_destinationsmtpd_relay_restrictions = reject_non_fqdn_recipient, reject_unauth_destination# include TLS protocol & cipher in 'Received' headersmtpd_tls_received_header = yes# + sasl usernamesmtpd_sasl_authenticated_header = yes# CLIENTsmtp_tls_security_level = securesmtp_tls_secure_cert_match = nexthop# exceptions where secure nexthop policy is too strictsmtp_tls_policy_maps = hash:/etc/postfix/smtp-tls-policy-map# trusted CA for exceptions specified in policy map (lvl verify & secure)smtp_tls_CAfile = /etc/postfix/smtp-tls-trusted-ca.pem# docs recommend against whitelistsmtp_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1smtp_tls_session_cache_database = btree:${data_directory}/smtp-tls-session-cache# DANE TLSA records are validated with DNSSECsmtp_dns_support_level = dnssec# DANE validation requires DNS lookupssmtp_host_lookup = dns# http://www.postfix.org/COMPATIBILITY_README.htmlcompatibility_level = 2
 |