Advertisement
Guest User

Untitled

a guest
Sep 13th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # 2.1.7: /etc/dovecot/dovecot.conf
  2. # OS: Linux 3.2.0-4-amd64 x86_64 Debian 7.1
  3. auth_debug = yes
  4. auth_debug_passwords = yes
  5. auth_verbose = yes
  6. mail_debug = yes
  7. mail_gid = vmail
  8. mail_privileged_group = vmail
  9. mail_uid = vmail
  10. passdb {
  11. args = /etc/dovecot/dovecot-ldap.conf
  12. driver = ldap
  13. }
  14. plugin {
  15. sieve = /var/vmail/sieve/%n.%d.sieve
  16. sieve_global_path = /var/vmail/globalsieverc
  17. }
  18. protocols = imap
  19. service auth {
  20. unix_listener /var/spool/postfix/private/auth {
  21. group = postfix
  22. mode = 0660
  23. user = postfix
  24. }
  25. unix_listener auth-master {
  26. group = vmail
  27. mode = 0600
  28. user = vmail
  29. }
  30. }
  31. ssl_cert = </etc/ssl/certs/server.crt
  32. ssl_key = </etc/ssl/private/server.key
  33. userdb {
  34. args = /etc/dovecot/dovecot-ldap.conf
  35. driver = ldap
  36. }
  37. verbose_ssl = yes
  38. protocol lda {
  39. auth_socket_path = /var/run/dovecot/auth-master
  40. log_path = /var/vmail/dovecot-deliver.log
  41. mail_plugins = sieve
  42. postmaster_address = fbranczyk@example.net
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement