Advertisement
Guest User

dovecot.conf

a guest
Aug 23rd, 2011
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. protocols = pop3 pop3s
  2. listen = *
  3. disable_plaintext_auth = no
  4. mail_location = maildir:/home/vmail/%d/%n
  5.  
  6. namespace private {
  7. separator = .
  8. prefix = INBOX.
  9. inbox = yes
  10. }
  11.  
  12. auth default {
  13. mechanisms = plain login
  14. passdb sql {
  15. args = /etc/dovecot/dovecot-sql.conf
  16. }
  17. userdb static {
  18. args = uid=5000 gid=5000 home=/home/vmail/%d/%n allow_all_users=yes
  19. }
  20. socket listen {
  21. master {
  22. path = /var/run/dovecot/auth-master
  23. mode = 0600
  24. user = vmail
  25. }
  26. client {
  27. path = /var/spool/postfix/private/auth
  28. mode = 0660
  29. user = postfix
  30. group = postfix
  31. }
  32. }
  33. }
  34.  
  35. protocol lda {
  36. log_path = /home/vmail/dovecot-deliver.log
  37. auth_socket_path = /var/run/dovecot/auth-master
  38. postmaster_address = i.boiarsinov@lumier.org
  39. mail_plugins = cmusieve
  40. }
  41.  
  42. dict {
  43. }
  44.  
  45. !include conf.d/*.conf
  46. !include_try local.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement