Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. #myorigin = /etc/mailname
  2.  
  3. smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
  4. biff = no
  5.  
  6. # appending .domain is the MUA's job.
  7. append_dot_mydomain = no
  8.  
  9. # Uncomment the next line to generate "delayed mail" warnings
  10. #delay_warning_time = 4h
  11.  
  12. readme_directory = no
  13.  
  14. # TLS parameters
  15. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  16. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  17. smtpd_use_tls=yes
  18. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  19. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  20.  
  21. smtp_generic_maps = hash:/etc/postfix/generic
  22. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  23. # information on enabling SSL in the smtp client.
  24.  
  25. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
  26. myhostname = alfisto.com
  27. alias_maps = hash:/etc/aliases
  28. alias_database = hash:/etc/aliases
  29. myorigin = /etc/mailname
  30. mydestination = $myhostname, alfisto.com, localhost.com, , localhost
  31. relayhost =
  32. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  33. mailbox_size_limit = 0
  34. recipient_delimiter = +
  35. inet_interfaces = localhost
  36. inet_protocols = all
  37. smtp_generic_maps = hash:/etc/postfix/generic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement