main.cf.j2 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {% if ansible_prolog -%}
  2. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  3. {{ prolog() }}
  4. {% endif -%}
  5. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  6. # Debian specific: Specifying a file name will cause the first
  7. # line of that file to be used as the name. The Debian default
  8. # is /etc/mailname.
  9. smtpd_banner = $myhostname ESMTP $mail_name
  10. biff = no
  11. # appending .domain is the MUA's job.
  12. append_dot_mydomain = no
  13. # Uncomment the next line to generate "delayed mail" warnings
  14. #delay_warning_time = 4h
  15. readme_directory = no
  16. # TLS parameters
  17. smtpd_tls_security_level = may
  18. smtpd_tls_loglevel = 1
  19. smtpd_tls_received_header = yes
  20. smtpd_tls_ask_ccert = yes
  21. smtpd_tls_req_ccert = no
  22. smtpd_tls_auth_only = yes
  23. smtpd_tls_mandatory_ciphers = high
  24. smtpd_tls_mandatory_exclude_ciphers = aNULL, RC4, MD5
  25. smtpd_tls_protocols = !SSLv2, !SSLv3
  26. smtpd_tls_dh1024_param_file = /etc/ssl/private/dh2048.pem
  27. smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem
  28. smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key
  29. smtpd_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
  30. smtpd_tls_session_cache_timeout = 3600
  31. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  32. smtp_tls_security_level = may
  33. smtp_tls_loglevel = 1
  34. smtp_tls_note_starttls_offer = yes
  35. smtp_tls_cert_file = $smtpd_tls_cert_file
  36. smtp_tls_key_file = $smtpd_tls_key_file
  37. smtp_tls_mandatory_ciphers = $smtpd_tls_mandatory_ciphers
  38. smtp_tls_mandatory_exclude_ciphers = $smtpd_tls_mandatory_exclude_ciphers
  39. smtp_tls_protocols = $smtpd_tls_protocols
  40. smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
  41. smtp_tls_session_cache_timeout = 3600
  42. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  43. {% if postfix_fqdn is defined %}
  44. myhostname = {{ postfix_fqdn }}
  45. {% else %}
  46. myhostname = {{ ansible_fqdn }}
  47. {% endif %}
  48. myorigin = $myhostname
  49. mydomain = $myhostname
  50. mydestination = $myhostname {% if postfix_hostname is defined %}{{ postfix_hostname }}{% else %}{{ ansible_hostname }}{% endif %} localhost localhost.localdomain
  51. {% if smtp_relay_host is defined %}
  52. relayhost = {{ smtp_relay_host }}
  53. {% elif with_postfix_external_smtp %}
  54. relayhost = [{{ postfix_external_smtp_host }}]:{{ postfix_external_smtp_port }}
  55. smtp_sasl_auth_enable = yes
  56. smtp_sasl_security_options = noanonymous
  57. smtp_sasl_password_maps = hash:/etc/postfix/sasl/credentials
  58. smtpd_sasl_local_domain = {{ postfix_external_smtp_host_localdomain }}
  59. smtp_sasl_mechanism_filter = login plain
  60. sender_canonical_maps = regexp:/etc/postfix/sasl/sender_rewrite
  61. {% endif %}
  62. alias_maps = hash:/etc/aliases
  63. alias_database = $alias_maps
  64. {% if with_postfix_slowsmtp %}
  65. transport_maps =
  66. hash:/etc/postfix/transport_slowsmtp
  67. slowsmtp_destination_recipient_limit = 20
  68. slowsmtp_destination_concurrency_limit = 2
  69. {% endif %}
  70. {% if smtp_relay_domains is defined %}
  71. relay_domains =
  72. {% for domain in smtp_relay_domains %}
  73. {{ domain}}
  74. {% endfor %}
  75. {% endif %}
  76. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 {% if postfix_mynetworks is defined %}{{ postfix_mynetworks }}{% endif %}
  77. mailbox_command = procmail -a "$EXTENSION"
  78. mailbox_size_limit = 0
  79. message_size_limit = 0
  80. recipient_delimiter = +
  81. inet_interfaces = all
  82. disable_vrfy_command = yes
  83. smtpd_recipient_restrictions =
  84. permit_mynetworks,
  85. reject_non_fqdn_sender,
  86. reject_non_fqdn_recipient,
  87. reject_unknown_sender_domain,
  88. reject_unauth_destination,
  89. reject_unknown_recipient_domain,
  90. permit
  91. smtpd_client_restrictions =
  92. permit_mynetworks,
  93. reject_unauth_pipelining,
  94. reject_unauth_destination
  95. smtpd_helo_required = yes
  96. smtpd_helo_restrictions =
  97. permit_mynetworks,
  98. reject_non_fqdn_helo_hostname,
  99. reject_invalid_helo_hostname
  100. smtpd_sender_restrictions =
  101. permit_mynetworks,
  102. reject_non_fqdn_sender,
  103. reject_unknown_sender_domain
  104. {% if with_opendkim is defined and with_opendkim %}
  105. # DKIM support
  106. milter_default_action = accept
  107. smtpd_milters = inet:localhost:8891
  108. non_smtpd_milters = inet:localhost:8891
  109. {% endif %}
  110. {% if postfix_config is defined %}
  111. # Additionnal configuration
  112. {% for key in postfix_config %}
  113. {{ key }} = {{ postfix_config[key] }}
  114. {% endfor %}
  115. {% endif %}