Advertisement
Guest User

MAIN.CF SMTP

a guest
Mar 2nd, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.25 KB | None | 0 0
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2. # Debian specific:  Specifying a file name will cause the first
  3. # line of that file to be used as the name.  The Debian default
  4. # is /etc/mailname.
  5.  
  6. myorigin = /etc/mailname
  7. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU - SK3)
  8. biff = no
  9.  
  10. # appending .domain is the MUA's job.
  11. append_dot_mydomain = no
  12.  
  13. # Uncomment the next line to generate "delayed mail" warnings
  14. #delay_warning_time = 4h
  15.  
  16. readme_directory = no
  17.  
  18. # TLS parameters
  19. #smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  20. #smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  21. #smtpd_use_tls=yes
  22. #smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  23. #smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  24.  
  25. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  26. # information on enabling SSL in the smtp client.
  27. mydomain = ndd.net
  28. myhostname = fkl.ndd.net
  29. alias_maps = hash:/etc/aliases
  30. alias_database = hash:/etc/aliases
  31. mydestination = fkl.ndd.net, localhost.ndd.net, , localhost
  32. #relayhost = $mydomain
  33. mynetworks = /etc/postfix/network_table
  34. mailbox_size_limit = 0
  35. recipient_delimiter = +
  36. inet_interfaces = all
  37. inet_protocols = ipv4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement