Advertisement
Guest User

dovecot.conf moahco

a guest
Sep 14th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. rotocols = imap pop3
  2. auth_mechanisms = plain login
  3. disable_plaintext_auth = no
  4. log_timestamp = "%Y-%m-%d %H:%M:%S "
  5. mail_privileged_group = vmail
  6. ssl_cert = </etc/postfix/smtpd.cert
  7. ssl_key = </etc/postfix/smtpd.key
  8. passdb {
  9. args = /etc/dovecot/dovecot-sql.conf
  10. driver = sql
  11. }
  12. userdb {
  13. args = /etc/dovecot/dovecot-sql.conf
  14. driver = sql
  15. }
  16. plugin {
  17. quota = dict:user::file:/var/vmail/%d/%n/.quotausage
  18. sieve=/var/vmail/%d/%n/.sieve
  19. }
  20. service auth {
  21. unix_listener /var/spool/postfix/private/auth {
  22. group = postfix
  23. mode = 0660
  24. user = postfix
  25. }
  26. unix_listener auth-userdb {
  27. group = vmail
  28. mode = 0600
  29. user = vmail
  30. }
  31. user = root
  32. }
  33. protocol imap {
  34. mail_plugins = quota imap_quota
  35. }
  36. protocol pop3 {
  37. pop3_uidl_format = %08Xu%08Xv
  38. mail_plugins = quota
  39. }
  40. protocol lda {
  41. mail_plugins = sieve quota
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement