Advertisement
Guest User

main.cf

a guest
Feb 23rd, 2011
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.71 KB | None | 0 0
  1.  
  2. smtpd_banner = $myhostname Poczta $mail_name (Slackware)
  3. biff = no
  4. append_dot_mydomain = no
  5. # TLS parameters
  6. home_mailbox = Maildir/
  7. smtpd_tls_auth_only = yes
  8. smtp_tls_note_starttls_offer = yes
  9. smtpd_tls_cert_file=/etc/postfix/ssl/smtpd.pem
  10. smtpd_tls_key_file=/etc/postfix/ssl/smtpd.pem
  11. smtpd_tls_CAfile =/etc/postfix/ssl/smtpd.pem
  12. smtp_use_tls = yes
  13. smtpd_use_tls=yes
  14. smtpd_tls_received_header = yes
  15. smtpd_tls_session_cashe_timeout = 3600s
  16. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  17. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  18. smtpd_sasl_authenticated_header = yes
  19. myhostname = localhost
  20. alias_maps = hash:/etc/aliases
  21. alias_database = hash:/etc/aliases
  22. myorigin = /etc/mailname
  23. mydestination = localhost, localdomain
  24. mynetworks = 192.168.1.0/24 127.0.0.0/8
  25. mailbox_size_limit = 0
  26. recipient_delimiter = +
  27. inet_interfaces = all
  28. inet_protocols = all
  29. broken_sasl_auth_clients = yes
  30. smtp_tls_loglevel=1
  31. smtp_tls_security_level=encrypt
  32. smtp_sasl_auth_enable=yes
  33. smtp_sasl2_auth_enable=yes
  34. broken_sasl_auth_clients=yes
  35. smtp_sasl_local_domain=$myhostname
  36. smtp_sasl_password_maps=hash:/etc/postfix/sasl_passwd
  37. smtp_sasl_security_options = noanonymous
  38. smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
  39. smtp_generic_maps=hash:/etc/postfix/generic
  40. relayhost=[example.org]:587
  41. smtpd_sasl_local_domain =$myhostname
  42. smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination
  43. smtpd_sasl_path = smtpd
  44. mailbox_command = procmail -a "$EXTENSION"
  45. tls_random_source = dev:/dev/urandom
  46. sender_bcc_maps = hash:/etc/postfix/bcc_maps
  47. recipient_bcc_maps = hash:/etc/postfix/bcc_maps
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement