Advertisement
Guest User

Dovecot

a guest
Apr 3rd, 2013
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. # dovecot -n
  2. # 2.2.rc3: /etc/dovecot/dovecot.conf
  3. # OS: Linux 3.4.0-cloud x86_64 Gentoo Base System release 2.1 ext3
  4. auth_mechanisms = login plain
  5. default_process_limit = 200
  6. disable_plaintext_auth = no
  7. first_valid_gid = 12
  8. first_valid_uid = 8
  9. last_valid_gid = 12
  10. last_valid_uid = 8
  11. lda_mailbox_autocreate = yes
  12. lda_mailbox_autosubscribe = yes
  13. mail_gid = 12
  14. mail_location = maildir:/var/mail/%d/%n/Maildir/:INDEX=/var/mail/%d/%n/indexes
  15. mail_uid = 8
  16. managesieve_notify_capability = mailto
  17. managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave
  18. namespace inbox {
  19. inbox = yes
  20. location =
  21. mailbox Drafts {
  22. special_use = \Drafts
  23. }
  24. mailbox Junk {
  25. special_use = \Junk
  26. }
  27. mailbox Sent {
  28. special_use = \Sent
  29. }
  30. mailbox "Sent Messages" {
  31. special_use = \Sent
  32. }
  33. mailbox Trash {
  34. special_use = \Trash
  35. }
  36. prefix =
  37. separator = /
  38. }
  39. passdb {
  40. args = /etc/dovecot/dovecot-sql.conf.ext
  41. driver = sql
  42. }
  43. plugin {
  44. autocreate = Trash
  45. autocreate2 = Spam
  46. autocreate3 = LearnAsSpam
  47. autocreate4 = LearnAsHam
  48. autosubscribe = Trash
  49. autosubscribe2 = Spam
  50. autosubscribe3 = LearnAsSpam
  51. autosubscribe4 = LearnAsHam
  52. mail_debug = yes
  53. sieve = /var/mail/%d/%n/dovecot.sieve
  54. sieve_after = /etc/dovecot/sieve/after/
  55. sieve_before = /etc/dovecot/sieve/before/
  56. sieve_dir = /var/mail/%d/%n/sieve
  57. sieve_global_dir = /etc/dovecot/sieve/global/
  58. }
  59. postmaster_address = postmaster@xxx.com
  60. protocols = imap pop3 sieve
  61. service auth {
  62. unix_listener /var/spool/postfix/private/auth {
  63. group = postfix
  64. mode = 0660
  65. user = postfix
  66. }
  67. unix_listener auth-userdb {
  68. group = mail
  69. mode = 0600
  70. user = mail
  71. }
  72. }
  73. service imap {
  74. process_limit = 1024
  75. }
  76. service pop3 {
  77. process_limit = 1024
  78. }
  79. ssl_cert = </etc/ssl/private/xxx.com/dovecot.cert.xxx.com.pem
  80. ssl_key = </etc/ssl/private/xxx.com/dovecot.key.xxx.com.pem
  81. userdb {
  82. driver = prefetch
  83. }
  84. userdb {
  85. args = /etc/dovecot/dovecot-sql.conf.ext
  86. driver = sql
  87. }
  88. protocol lda {
  89. log_path = /var/log/dovecot-lda.log
  90. mail_debug = yes
  91. mail_plugins = sieve autocreate listescape
  92. }
  93. protocol imap {
  94. mail_plugins = " autocreate listescape"
  95. }
  96. protocol sieve {
  97. mail_debug = yes
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement