No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_postfix_main.cf.j2 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2. # Modified as per http://sealedabstract.com/code/nsa-proof-your-e-mail-in-2-hours/
  3. smtpd_banner = $myhostname ESMTP $mail_name
  4. biff = no
  5. # Accept messages up to 50MB
  6. message_size_limit = 51200000
  7. # appending .domain is the MUA's job.
  8. append_dot_mydomain = no
  9. # Uncomment the next line to generate "delayed mail" warnings
  10. #delay_warning_time = 4h
  11. readme_directory = no
  12. # antispam
  13. smtpd_helo_required = yes
  14. smtpd_helo_restrictions = permit_mynetworks, reject_invalid_hostname
  15. smtpd_sender_restrictions = reject_unknown_address
  16. disable_vrfy_command = yes
  17. strict_rfc821_envelopes = yes
  18. invalid_hostname_reject_code = 554
  19. multi_recipient_bounce_reject_code = 554
  20. non_fqdn_reject_code = 554
  21. relay_domains_reject_code = 554
  22. unknown_address_reject_code = 554
  23. unknown_client_reject_code = 554
  24. unknown_hostname_reject_code = 554
  25. unknown_local_recipient_reject_code = 554
  26. unknown_relay_recipient_reject_code = 554
  27. unknown_virtual_alias_reject_code = 554
  28. unknown_virtual_mailbox_reject_code = 554
  29. unverified_recipient_reject_code = 554
  30. unverified_sender_reject_code = 554
  31. # TLS parameters
  32. smtpd_tls_cert_file=/etc/ssl/certs/wildcard_combined.pem
  33. smtpd_tls_key_file=/etc/ssl/private/wildcard_private.key
  34. smtpd_use_tls=yes
  35. smtpd_tls_auth_only = yes
  36. smtp_tls_security_level = may
  37. smtp_tls_loglevel = 2
  38. smtpd_tls_received_header = yes
  39. smtp_tls_note_starttls_offer = yes
  40. smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
  41. smtpd_sasl_type = dovecot
  42. smtpd_sasl_path = private/auth
  43. smtpd_sasl_auth_enable = yes
  44. broken_sasl_auth_clients = yes
  45. smtpd_sasl_security_options = noanonymous
  46. smtpd_recipient_restrictions =
  47. permit_sasl_authenticated,
  48. permit_mynetworks,
  49. reject_unauth_pipelining,
  50. reject_unauth_destination,
  51. reject_invalid_hostname,
  52. reject_non_fqdn_hostname,
  53. reject_non_fqdn_recipient,
  54. reject_unknown_recipient_domain,
  55. check_policy_service inet:127.0.0.1:10023,
  56. permit
  57. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  58. # information on enabling SSL in the smtp client.
  59. myhostname = {{ mail_server_hostname }}
  60. myorigin = $mydomain
  61. alias_maps = hash:/etc/aliases
  62. alias_database = hash:/etc/aliases
  63. mydestination = localhost
  64. relayhost =
  65. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 {{ ' '.join(friendly_networks) }}
  66. #mailbox_command = procmail -a "$EXTENSION"
  67. mailbox_size_limit = 0
  68. recipient_delimiter = +
  69. inet_interfaces = all
  70. # dovecot mysql
  71. virtual_transport = dovecot
  72. dovecot_destination_recipient_limit = 1
  73. virtual_mailbox_domains = mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
  74. virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
  75. virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf
  76. local_recipient_maps = $virtual_mailbox_maps
  77. # OpenDKIM
  78. smtpd_milters = inet:127.0.0.1:8891
  79. non_smtpd_milters = $smtpd_milters
  80. milter_default_action = accept
  81. # new settings for dspam: only scan one mail at a time, localhost doesn't get scanned, everything else does
  82. dspam_destination_recipient_limit = 1
  83. smtpd_client_restrictions =
  84. permit_sasl_authenticated
  85. check_client_access pcre:/etc/postfix/dspam_filter_access
  86. # Postscreen
  87. postscreen_access_list = permit_mynetworks
  88. postscreen_dnsbl_sites =
  89. sbl-xbl.spamhaus.org*2
  90. cbl.abuseat.org*2
  91. bl.spamcop.net*2
  92. dnsbl.sorbs.net*1
  93. spam.spamrats.com*2
  94. dnsbl.ahbl.org*2
  95. postscreen_dnsbl_threshold = 3
  96. postscreen_dnsbl_action = enforce
  97. postscreen_greet_action = enforce