Guest User

Untitled

a guest
Jan 18th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.05 KB | None | 0 0
  1. queue_directory = /var/spool/postfix
  2. command_directory = /usr/sbin
  3. daemon_directory = /usr/libexec/postfix
  4. data_directory = /var/lib/postfix
  5. mail_owner = postfix
  6. myhostname = postfix1.test.lan
  7. mydomain = test.lan
  8. myorigin = $mydomain
  9. inet_interfaces = all
  10. inet_protocols = all
  11. mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
  12. unknown_local_recipient_reject_code = 550
  13. mynetworks = 10.10.0.0/24, 127.0.0.0/8
  14. relay_domains = $mydestination
  15. relayhost = posta.test.lan
  16. alias_maps = hash:/etc/aliases
  17. alias_database = hash:/etc/aliases
  18. home_mailbox = Maildir/
  19.  
  20. mail_spool_directory = /var/spool/mail
  21.  
  22. debug_peer_level = 2
  23. debug_peer_list = 127.0.0.1
  24. debugger_command =
  25. PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
  26. ddd $daemon_directory/$process_name $process_id & sleep 5
  27. sendmail_path = /usr/sbin/sendmail.postfix
  28. newaliases_path = /usr/bin/newaliases.postfix
  29. mailq_path = /usr/bin/mailq.postfix
  30. setgid_group = postdrop
  31. html_directory = no
  32. manpage_directory = /usr/share/man
  33. sample_directory = /usr/share/doc/postfix-2.10.1/samples
  34. readme_directory = /usr/share/doc/postfix-2.10.1/README_FILES
  35. smtp_use_tls=yes
  36. smtpd_use_tls=yes
  37. smtpd_tls_auth_only = yes
  38. smtpd_tls_received_header = yes
  39. smtp_tls_note_starttls_offer = yes
  40. smtpd_tls_cert_file=/etc/postfix/mycert.pem
  41. smtpd_tls_key_file=/etc/postfix/private/mykey.key
  42. smtpd_tls_ciphers= high
  43. smtpd_tls_exclude_ciphers = aNULL, DES, 3DES, MD5, DES+MD5, RC4
  44. smtpd_tls_protocols = !SSLv2, !SSLv3
  45. smtp_tls_protocols = !SSLv2, !SSLv3
  46. smtpd_sasl_type = dovecot
  47. smtpd_sasl_path = private/auth
  48. smtpd_sasl_auth_enable = yes
  49. smtpd_sasl_security_options = noanonymous
  50. smtpd_sasl_authenticated_header = yes
  51. cyrus_sasl_config_path = /etc/sasl2/smtpd.conf
  52. virtual_transport=dovecot
  53. smtpd_sender_restrictions =
  54. permit_sasl_authenticated,
  55. permit_mynetworks,
  56. reject_non_fqdn_sender,
  57. reject_sender_login_mismatch,
  58. reject_authenticated_sender_login_mismatch,
  59. reject_unauthenticated_sender_login_mismatch,
  60. reject
  61.  
  62. smtp inet n - n - - smtpd
  63. pickup unix n - n 60 1 pickup
  64. cleanup unix n - n - 0 cleanup
  65. qmgr unix n - n 300 1 qmgr
  66. tlsmgr unix - - n 1000? 1 tlsmgr
  67. rewrite unix - - n - - trivial-rewrite
  68. bounce unix - - n - 0 bounce
  69. defer unix - - n - 0 bounce
  70. trace unix - - n - 0 bounce
  71. verify unix - - n - 1 verify
  72. flush unix n - n 1000? 0 flush
  73. proxymap unix - - n - - proxymap
  74. proxywrite unix - - n - 1 proxymap
  75. smtp unix - - n - - smtp
  76. relay unix - - n - - smtp
  77. showq unix n - n - - showq
  78. error unix - - n - - error
  79. retry unix - - n - - error
  80. discard unix - - n - - discard
  81. local unix - n n - - local
  82. virtual unix - n n - - virtual
  83. lmtp unix - - n - - lmtp
  84. anvil unix - - n - 1 anvil
  85. scache unix - - n - 1 scache
  86. dovecot unix - n n - - pipe
  87. flags=DRhu user=vmail:vmail argv=/usr/libexec/dovecot/deliver -d ${recipient}
  88. submission inet n - - - - smtpd
  89. -o syslog_name=postfix/submission
  90. -o smtpd_tls_wrappermode=no
  91. -o smtpd_tls_security_level=encrypt
  92. -o smtpd_sasl_auth_enable=yes
  93. -o smtpd_recipient_restrictions=permit_mynetworks,permit_sasl_authenticated,reject
  94. -o milter_macro_daemon_name=ORIGINATING
  95. -o smtpd_sasl_type=dovecot
  96. -o smtpd_sasl_path=private/auth
  97.  
  98. mail_home = maildir:/var/spool/mail/%u
  99.  
  100. mail_location = maildir:/var/spool/mail/%u
Add Comment
Please, Sign In to add comment