Advertisement
strangeman

dovecot.conf

May 27th, 2012
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. protocols = imap
  2. disable_plaintext_auth = no
  3. ssl = no
  4. mail_location = maildir:/var/vmail/%n
  5. auth_username_format = %Lu
  6.  
  7. valid_chroot_dirs=/var/vmail
  8.  
  9. #maximum verbose
  10. auth_verbose = yes
  11. verbose_proctitle = yes
  12. auth_debug = yes
  13. verbose_ssl=yes
  14. auth_debug_passwords=yes
  15. mail_debug=yes
  16.  
  17. protocol imap {
  18. mail_plugin_dir = /usr/lib/dovecot/modules/imap
  19. }
  20. protocol pop3 {
  21. mail_plugin_dir = /usr/lib/dovecot/modules/pop3
  22. }
  23.  
  24. auth_executable = /usr/lib/dovecot/dovecot-auth
  25. auth default {
  26. mechanisms = login plain
  27. passdb ldap {
  28. args = /etc/dovecot/dovecot-ldap.conf
  29. }
  30. userdb ldap {
  31. args = /etc/dovecot/dovecot-ldap.conf
  32. }
  33.  
  34. user = vmail
  35. socket listen {
  36. master {
  37. path = /var/run/dovecot/auth-master
  38. mode = 0666
  39. user = vmail
  40. group = vmail
  41. }
  42. client {
  43. path = /var/run/dovecot/auth-client
  44. mode = 0666
  45. user = postfix
  46. group = postfix
  47. }
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement