Advertisement
Guest User

postfix cfg

a guest
Jul 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. # This file is managed by puppet; local changes will be overridden.
  2.  
  3. smtpd_banner = $myhostname ESMTP $mail_name (Zulip Voyager)
  4. biff = no
  5.  
  6. # appending .domain is the MUA's job.
  7. append_dot_mydomain = no
  8.  
  9. readme_directory = no
  10.  
  11. # TLS parameters
  12. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  13. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  14. smtpd_use_tls=yes
  15. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  16. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  17.  
  18. myhostname = Rocket
  19. alias_maps = hash:/etc/aliases
  20. alias_database = hash:/etc/aliases
  21. transport_maps = hash:/etc/postfix/transport
  22. myorigin = /etc/mailname
  23. mydestination = chat.gumrf.ru, localhost, Rocket
  24. relayhost =
  25. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 85.142.41.0/27
  26. mailbox_size_limit = 0
  27. recipient_delimiter = +
  28. inet_interfaces = all
  29. inet_protocols = all
  30.  
  31. # This enables us to do a catchall
  32. virtual_alias_maps = regexp:/etc/postfix/virtual
  33.  
  34. # Needed to accept mail with percents without trying to interpret as
  35. # percent-style routing.
  36. allow_percent_hack = no
  37. allow_untrusted_routing = yes
  38. strict_rfc821_envelopes = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement