Advertisement
Guest User

Untitled

a guest
Oct 26th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2.  
  3.  
  4. # Debian specific: Specifying a file name will cause the first
  5. # line of that file to be used as the name. The Debian default
  6. # is /etc/mailname.
  7. #myorigin = /etc/mailname
  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. # TLS parameters
  20. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  21. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  22. smtpd_use_tls=yes
  23. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  24. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  25.  
  26. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  27. # information on enabling SSL in the smtp client.
  28.  
  29. myhostname = mydomain.com
  30. virtual_alias_maps = hash:/etc/postfix/virtual
  31. alias_database = hash:/etc/aliases
  32. myorigin = /etc/mailname
  33. mydestination = mydomain.com, localhost.com, , localhost
  34. relayhost =
  35. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  36. mailbox_command = /usr/bin/procmail procmail -a "$EXTENSION" DEFAULT=$HOME/Maildir/ MAILDIR=$HOME/Maildir
  37. mailbox_size_limit = 0
  38. recipient_delimiter = +
  39. inet_interfaces = all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement