Advertisement
Guest User

Untitled

a guest
May 30th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. protocols = imap imaps
  2.  
  3. disable_plaintext_auth = yes
  4.  
  5. log_path = /var/log/dovecot.log
  6.  
  7. info_log_path = /var/log/dovecot.info
  8.  
  9. log_timestamp = "%Y-%m-%d %H:%M:%S "
  10.  
  11. ssl_cert_file = /etc/ssl/certs/dovecot.cert
  12. ssl_key_file = /etc/ssl/private/dovecot.key
  13.  
  14. mail_location = maildir:%h/mails
  15.  
  16. mail_privileged_group = mail
  17.  
  18. mail_debug = yes
  19.  
  20. protocol imap {
  21. imap_client_workarounds = outlook-idle delay-newmail
  22. }
  23.  
  24. protocol pop3 {
  25. pop3_uidl_format = %08Xu%08Xv
  26. }
  27.  
  28. protocol managesieve {
  29.  
  30. }
  31.  
  32. auth default {
  33. mechanisms = plain
  34.  
  35. passdb pam {
  36. }
  37.  
  38. userdb passwd {
  39. }
  40. passdb shadow {
  41.  
  42. }
  43.  
  44. user = root
  45.  
  46. socket listen {
  47. client {
  48. path = /var/spool/postfix/private/auth
  49. mode = 0660
  50. user = postfix
  51. group = postfix
  52. }
  53. }
  54. }
  55.  
  56. dict {
  57. }
  58.  
  59. plugin {
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement