Advertisement
diabliyo

postix_config

Mar 14th, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. # postconf -n
  2.  
  3. shell# postconf -n
  4.  
  5. alias_database = hash:/etc/aliases
  6. alias_maps = hash:/etc/aliases
  7. broken_sasl_auth_clients = yes
  8. command_directory = /usr/sbin
  9. config_directory = /etc/postfix
  10. daemon_directory = /usr/libexec/postfix
  11. debug_peer_level = 2
  12. disable_vrfy_command = yes
  13. home_mailbox = Maildir/
  14. html_directory = no
  15. inet_interfaces = all
  16. mail_owner = postfix
  17. mail_spool_directory = /var/spool/mail/
  18. mailbox_command =
  19. mailq_path = /usr/bin/mailq.postfix
  20. manpage_directory = /usr/share/man
  21. masquerade_domains = $mydomain
  22. mydestination = $myhostname, $mydomain, localhost.$mydomain, localhost, /etc/postfix/mis_dominios.cf
  23. mydomain = crver.net
  24. myhostname = server.crver.net
  25. mynetworks = 127.0.0.0/8
  26. myorigin = $mydomain
  27. newaliases_path = /usr/bin/newaliases.postfix
  28. notify_classes = resource, software
  29. queue_directory = /var/spool/postfix
  30. readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES
  31. relay_domains = $mydestination
  32. sample_directory = /usr/share/doc/postfix-2.3.3/samples
  33. sendmail_path = /usr/sbin/sendmail.postfix
  34. setgid_group = postdrop
  35. smtp_connect_timeout = 0
  36. smtp_sasl_security_options = noanonymous
  37. smtp_sasl_tls_security_options = noanonymous
  38. smtp_tls_note_starttls_offer = yes
  39. smtp_use_tls = yes
  40. smtpd_banner = $myhostname ESMTP
  41. smtpd_error_sleep_time = 0
  42. smtpd_helo_required = yes
  43. smtpd_sasl_auth_enable = yes
  44. smtpd_sasl_authenticated_header = yes
  45. smtpd_sasl_local_domain = $myhostname
  46. smtpd_sasl_path = /usr/lib64/sasl2
  47. smtpd_sasl_security_options = noanonymous
  48. smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
  49. smtpd_tls_auth_only = yes
  50. smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
  51. smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
  52. smtpd_tls_loglevel = 1
  53. smtpd_tls_received_header = yes
  54. smtpd_tls_security_level = may
  55. smtpd_tls_session_cache_timeout = 3600s
  56. smtpd_use_tls = yes
  57. strict_rfc821_envelopes = yes
  58. tls_random_source = dev:/dev/urandom
  59. transport_maps = hash:/etc/postfix/transport
  60. unknown_local_recipient_reject_code = 550
  61.  
  62. # master.cf
  63. shell# cat /etc/postfix/master.cf
  64.  
  65. smtp inet n - n - - smtpd -v
  66. pickup fifo n - n 60 1 pickup
  67. cleanup unix n - n - 0 cleanup
  68. qmgr fifo n - n 300 1 qmgr
  69. tlsmgr unix - - n 1000? 1 tlsmgr
  70. rewrite unix - - n - - trivial-rewrite
  71. bounce unix - - n - 0 bounce
  72. defer unix - - n - 0 bounce
  73. trace unix - - n - 0 bounce
  74. verify unix - - n - 1 verify
  75. flush unix n - n 1000? 0 flush
  76. proxymap unix - - n - - proxymap
  77. smtp unix - - n - - smtp
  78. relay unix - - n - - smtp
  79. -o fallback_relay=
  80. showq unix n - n - - showq
  81. error unix - - n - - error
  82. discard unix - - n - - discard
  83. local unix - n n - - local
  84. virtual unix - n n - - virtual
  85. lmtp unix - - n - - lmtp
  86. anvil unix - - n - 1 anvil
  87. scache unix - - n - 1 scache
  88. maildrop unix - n n - - pipe
  89. flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient} ${extension} ${recipient} ${user} ${nexthop} ${sender}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement