linccce

Dovecot conf

Feb 27th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. ## Dovecot 2.0 configuration file
  2.  
  3. #IPv4
  4. listen = *
  5.  
  6. #IPv4 and IPv6:
  7. #listen = *, ::
  8.  
  9. auth_username_chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@&
  10. auth_verbose = yes
  11. disable_plaintext_auth = no
  12. login_greeting = Dovecot DA ready.
  13. mail_access_groups = mail
  14. default_login_user = dovecot
  15. mail_location = maildir:~/Maildir
  16. passdb {
  17. driver = shadow
  18. }
  19. passdb {
  20. args = username_format=%n /etc/virtual/%d/passwd
  21. driver = passwd-file
  22. }
  23. protocols = imap pop3
  24. service auth {
  25. user = root
  26. }
  27. service imap-login {
  28. process_min_avail = 8
  29. user = dovecot
  30. }
  31. service pop3-login {
  32. process_min_avail = 8
  33. user = dovecot
  34. }
  35. ssl_cert = </etc/httpd/conf/ssl.crt/server.crt
  36. ssl_cipher_list = ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
  37. ssl_key = </etc/httpd/conf/ssl.key/server.key
  38. userdb {
  39. driver = passwd
  40. }
  41. userdb {
  42. args = username_format=%n /etc/virtual/%d/passwd
  43. driver = passwd-file
  44. }
  45. verbose_proctitle = yes
  46. protocol pop3 {
  47. pop3_uidl_format = %08Xu%08Xv
  48. pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s, bytes=%i/%o
  49. }
Advertisement
Add Comment
Please, Sign In to add comment