Advertisement
puggan

doveconf -n

Jul 11th, 2014
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. auth_mechanisms = plain login digest-md5 cram-md5
  2. listen = *
  3. mail_gid = vmail
  4. mail_privileged_group = vmail
  5. mail_uid = vmail
  6. namespace inbox {
  7. inbox = yes
  8. location =
  9. mailbox Drafts {
  10. special_use = \Drafts
  11. }
  12. mailbox Junk {
  13. special_use = \Junk
  14. }
  15. mailbox Sent {
  16. special_use = \Sent
  17. }
  18. mailbox "Sent Messages" {
  19. special_use = \Sent
  20. }
  21. mailbox Trash {
  22. special_use = \Trash
  23. }
  24. prefix =
  25. }
  26. passdb {
  27. args = /etc/dovecot/dovecot-sql.conf.ext
  28. driver = sql
  29. }
  30. plugin {
  31. sieve = ~/.dovecot.sieve
  32. sieve_dir = ~/sieve
  33. }
  34. service auth-worker {
  35. user = vmail
  36. }
  37. service imap-login {
  38. inet_listener imap {
  39. port = 143
  40. }
  41. inet_listener imaps {
  42. port = 993
  43. ssl = yes
  44. }
  45. }
  46. service lmtp {
  47. unix_listener /var/spool/postfix/private/dovecot-lmtp {
  48. group = postfix
  49. mode = 0600
  50. user = postfix
  51. }
  52. }
  53. ssl_cert = </etc/dovecot/ssl/public.pem
  54. ssl_cipher_list = ALL:!EXPORT:!LOW:!MEDIUM:!aNULL:+RC4:@STRENGTH
  55. ssl_key = </etc/dovecot/ssl/private.pem
  56. ssl_protocols = !SSLv2 !SSLv3
  57. userdb {
  58. args = /etc/dovecot/dovecot-sql.conf.ext
  59. driver = sql
  60. }
  61. protocol lda {
  62. mail_plugins = sieve
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement