Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. root@tessa:/etc/dovecot# cat dovecot.txt
  2. ALLOW_COREDUMPS=1
  3. #protocols = imap imaps
  4. protocols = imap
  5. disable_plaintext_auth = no
  6. log_timestamp = "%Y-%m-%d %H:%M:%S "
  7. mail_location = maildir:/mnt/raid/www_root/mail/%d/%n
  8. mail_access_groups = vmail
  9. first_valid_uid = 5000
  10. first_valid_gid = 5000
  11.  
  12. protocol imap {
  13. }
  14.  
  15. protocol pop3 {
  16. pop3_uidl_format = %08Xu%08Xv
  17. }
  18. #auth default {
  19. # mechanisms = plain digest-md5 cram-md5
  20. passdb sql {
  21. args = /etc/dovecot/dovecot-mysql.conf
  22. }
  23. userdb sql {
  24. args = /etc/dovecot/dovecot-mysql.conf
  25. }
  26.  
  27. # socket listen {
  28. # client {
  29. # # Assuming the default Postfix $queue_directory setting
  30. # path = /var/spool/postfix/private/auth
  31. # mode = 0660
  32. # Assuming the default Postfix user and group
  33. # user = postfix
  34. # group = postfix
  35. # }
  36. # deliver and some other programs need also auth-master:
  37. #master {
  38. # path = /var/run/dovecot/auth-master
  39. # mode = 0600
  40. #}
  41. # }
  42. # }
  43.  
  44. listen = *
  45. ssl_listen = *
  46. ssl = yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement