Advertisement
Guest User

Untitled

a guest
Jun 24th, 2010
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. # Debian specific: Specifying a file name will cause the first
  2. # line of that file to be used as the name. The Debian default
  3. # is /etc/mailname.
  4. #myorigin = /etc/mailname
  5.  
  6. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
  7. biff = no
  8.  
  9. # appending .domain is the MUA's job.
  10. append_dot_mydomain = no
  11.  
  12. # Uncomment the next line to generate "delayed mail" warnings
  13. #delay_warning_time = 4h
  14.  
  15. readme_directory = no
  16.  
  17. # TLS parameters
  18. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  19. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  20. smtpd_use_tls=yes
  21. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  22. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  23.  
  24. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  25. # information on enabling SSL in the smtp client.
  26.  
  27. myhostname = sds.fastvps.ru
  28. alias_maps = hash:/etc/aliases
  29. alias_database = hash:/etc/aliases
  30. myorigin = /etc/mailname
  31. mydestination = %mydomainname%, localhost.fastvps.ru, localhost
  32. relayhost =
  33. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  34. mailbox_command = procmail -a "$EXTENSION"
  35. mailbox_size_limit = 0
  36. recipient_delimiter = +
  37. inet_interfaces = all
  38. inet_protocols = ipv4
  39. mailbox_transport = lmtp:unix:/var/run/cyrus/socket/lmtp
  40. local_recipient_maps =
  41.  
  42. # sasl
  43. smtpd_sasl_local_domain =
  44. smtpd_sasl_auth_enable = yes
  45. smtpd_sasl_security_options = noanonymous
  46. broken_sasl_auth_clients = yes
  47. smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
  48. smtpd_sasl_authenticated_header = yes
  49. smtpd_sasl_application_name = smtpd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement