Advertisement
Guest User

dovecot

a guest
Aug 25th, 2011
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. mail_debug = yes
  2. auth_debug=yes
  3. auth_debug_passwords=yes
  4. base_dir = /var/run/dovecot
  5. protocols = lmtp none
  6. auth_verbose=yes
  7. ssl = no
  8. disable_plaintext_auth = no
  9. log_timestamp = "%b %d %H:%M:%S "
  10. syslog_facility = mail
  11. login_chroot = yes
  12. login_user = dovecot
  13. login_greeting = dovecot MUA ready
  14. maildir_copy_with_hardlinks=yes
  15. maildir_copy_preserve_filename=yes
  16. mail_location = maildir:/var/mail/otchet/mail/%d/%n
  17. mail_debug=yes
  18. first_valid_uid=5000
  19. first_valid_gid=5000
  20. protocol pop3 {
  21. pop3_uidl_format = %08Xu%08Xv
  22. pop3_client_workarounds = outlook-no-nuls oe-ns-eoh
  23. }
  24.  
  25. protocol imap {
  26. imap_client_workarounds = delay-newmail outlook-idle netscape-eoh tb-extra-mailbox-sep
  27. }
  28.  
  29. protocol lda {
  30. postmaster_address = admin@exim.sc.local
  31. syslog_facility = mail
  32. }
  33.  
  34. service lmtp {
  35. unix_listener /var/spool/postfix/private/dovecot-lmtp {
  36. group = postfix
  37. mode = 0660
  38. user = vmail
  39. }
  40. }
  41.  
  42. auth default {
  43. mechanisms = plain
  44. socket listen {
  45. master {
  46. path = /var/run/dovecot/auth-master
  47. mode = 0660
  48. user=vmail
  49. group=Debian-exim
  50. }
  51. }
  52.  
  53. passdb sql {
  54. args = /etc/dovecot-sql.conf
  55. }
  56. userdb prefetch {
  57. }
  58. userdb sql {
  59. driver = static
  60. args = uid = 5000 gid = 5000 home = /var/mail/otchet/mail/%d/%n
  61.  
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement