Advertisement
Guest User

Untitled

a guest
Feb 13th, 2019
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2.  
  3. # Debian specific: Specifying a file name will cause the first
  4. # line of that file to be used as the name. The Debian default
  5. # is /etc/mailname.
  6. #myorigin = /etc/mailname
  7.  
  8. smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
  9. biff = no
  10.  
  11. # appending .domain is the MUA's job.
  12. append_dot_mydomain = no
  13.  
  14. # Uncomment the next line to generate "delayed mail" warnings
  15. #delay_warning_time = 4h
  16.  
  17. readme_directory = no
  18.  
  19. # See http://www.postfix.org/COMPATIBILITY_README.html -- default to 2 on
  20. # fresh installs.
  21. compatibility_level = 2
  22.  
  23. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  24. # information on enabling SSL in the smtp client.
  25.  
  26. #smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
  27. myhostname = example.org
  28. alias_database = hash:/etc/aliases
  29. mydestination = example.org, WordPress1a41a6jkns20181003e8ea30, localhost.localdomain, localhost
  30. mynetworks = 127.0.0.1/32 172.19.199.0/24
  31.  
  32. # Support the default VERP delimiter.
  33. recipient_delimiter = +
  34. unknown_local_recipient_reject_code = 550
  35. owner_request_special = no
  36. transport_maps = regexp:/opt/mailman/core/var/data/postfix_lmtp
  37. local_recipient_maps = regexp:/opt/mailman/core/var/data/postfix_lmtp
  38. relay_domains = regexp:/opt/mailman/core/var/data/postfix_domains
  39. myorigin = /etc/mailname
  40. mailbox_size_limit = 0
  41. inet_interfaces = all
  42. inet_protocols = ipv4
  43.  
  44. # OpenDKIM
  45. milter_default_action = accept
  46. milter_protocol = 6
  47. smtpd_milters = inet:localhost:12301
  48. non_smtpd_milters = inet:localhost:12301
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement