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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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_session_cache_database = btree:${data_directory}/smtpd_scache
  36. #smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  37. smtpd_tls_auth_only = yes
  38. smtp_tls_security_level = may
  39. smtp_tls_loglevel = 2
  40. smtpd_tls_received_header = yes
  41. smtp_tls_note_starttls_offer = yes
  42. smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
  43. smtpd_sasl_type = dovecot
  44. smtpd_sasl_path = private/auth
  45. smtpd_sasl_auth_enable = yes
  46. broken_sasl_auth_clients = yes
  47. smtpd_sasl_security_options = noanonymous
  48. smtpd_recipient_restrictions =
  49. permit_sasl_authenticated,
  50. permit_mynetworks,
  51. reject_unauth_pipelining,
  52. reject_unauth_destination,
  53. reject_invalid_hostname,
  54. reject_non_fqdn_hostname,
  55. reject_non_fqdn_recipient,
  56. reject_unknown_recipient_domain,
  57. check_policy_service inet:127.0.0.1:10023,
  58. permit
  59. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  60. # information on enabling SSL in the smtp client.
  61. myhostname = {{ mail_server_hostname }}
  62. myorigin = $mydomain
  63. alias_maps = hash:/etc/aliases
  64. alias_database = hash:/etc/aliases
  65. mydestination = localhost
  66. relayhost =
  67. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 {{ ' '.join(friendly_networks) }}
  68. #mailbox_command = procmail -a "$EXTENSION"
  69. mailbox_size_limit = 0
  70. recipient_delimiter = +
  71. inet_interfaces = all
  72. # dovecot mysql
  73. virtual_transport = dovecot
  74. dovecot_destination_recipient_limit = 1
  75. virtual_mailbox_domains = mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
  76. virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
  77. virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf
  78. local_recipient_maps = $virtual_mailbox_maps
  79. # OpenDKIM
  80. smtpd_milters = inet:127.0.0.1:8891
  81. non_smtpd_milters = $smtpd_milters
  82. milter_default_action = accept
  83. # new settings for dspam: only scan one mail at a time, localhost doesn't get scanned, everything else does
  84. dspam_destination_recipient_limit = 1
  85. smtpd_client_restrictions =
  86. permit_sasl_authenticated
  87. check_client_access pcre:/etc/postfix/dspam_filter_access
  88. # Postscreen
  89. postscreen_access_list = permit_mynetworks
  90. postscreen_dnsbl_sites =
  91. sbl-xbl.spamhaus.org*2
  92. cbl.abuseat.org*2
  93. bl.spamcop.net*2
  94. dnsbl.sorbs.net*1
  95. spam.spamrats.com*2
  96. dnsbl.ahbl.org*2
  97. postscreen_dnsbl_threshold = 3
  98. postscreen_dnsbl_action = enforce
  99. postscreen_greet_action = enforce