Advertisement
Guest User

Untitled

a guest
May 11th, 2016
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. root@dovecot:/# dovecot -n
  2. # 2.2.23 (806d709): /etc/dovecot/dovecot.conf
  3. # Pigeonhole version 0.4.13 (7b14904)
  4. # OS: Linux 4.4.0-15-generic x86_64 Debian 8.4 ceph
  5. auth_mechanisms = plain login
  6. default_vsz_limit = 512 M
  7. disable_plaintext_auth = no
  8. doveadm_password = # hidden, use -P to show it
  9. imap_max_line_length = 2 M
  10. import_environment = DOVECOT_CLUSTER
  11. log_path = /dev/stderr
  12. mail_attachment_dir = /srv/dovecot/attach/%d
  13. mail_attachment_hash = %{sha512}
  14. mail_attachment_min_size = 64 k
  15. mail_fsync = always
  16. mail_gid = nogroup
  17. mail_location = sdbox:/srv/dovecot/mail/%d/%n
  18. mail_max_userip_connections = 500
  19. mail_nfs_index = yes
  20. mail_nfs_storage = yes
  21. mail_plugins = quota zlib
  22. mail_uid = nobody
  23. mmap_disable = yes
  24. namespace {
  25. inbox = yes
  26. location =
  27. mailbox Drafts {
  28. special_use = \Drafts
  29. }
  30. mailbox Sent {
  31. special_use = \Sent
  32. }
  33. mailbox Spam {
  34. special_use = \Junk
  35. }
  36. mailbox Trash {
  37. special_use = \Trash
  38. }
  39. prefix = INBOX.
  40. separator = .
  41. }
  42. passdb {
  43. args = /etc/dovecot/dovecot-sql.conf.ext
  44. driver = sql
  45. }
  46. plugin {
  47. quota = dict:Quota::file:/srv/dovecot/mail/%d/%n/dovecot-quota
  48. sieve = /srv/dovecot/mail/%d/%n/.dovecot.sieve
  49. sieve_before = /etc/dovecot/sieve/makedToSpamFolder.sieve
  50. sieve_dir = /srv/dovecot/mail/%d/%n/sieve
  51. zlib_save = bz2
  52. zlib_save_level = 6
  53. }
  54. protocols = imap pop3 lmtp
  55. service doveadm {
  56. inet_listener {
  57. port = 12345
  58. }
  59. }
  60. service imap-login {
  61. inet_listener imap {
  62. port = 143
  63. }
  64. inet_listener imaps {
  65. port = 993
  66. }
  67. service_count = 1000
  68. }
  69. service lmtp {
  70. inet_listener lmtp {
  71. port = 7025
  72. }
  73. }
  74. service pop3-login {
  75. inet_listener pop3 {
  76. port = 110
  77. }
  78. inet_listener pop3s {
  79. port = 995
  80. }
  81. service_count = 1000
  82. }
  83. ssl = no
  84. userdb {
  85. args = /etc/dovecot/dovecot-sql.conf.ext
  86. driver = sql
  87. }
  88. protocol lmtp {
  89. mail_plugins = quota zlib sieve
  90. postmaster_address = postmaster@m9.network
  91. }
  92. protocol imap {
  93. mail_max_userip_connections = 500
  94. mail_plugins = quota zlib imap_quota
  95. }
  96. protocol pop3 {
  97. mail_max_userip_connections = 500
  98. pop3_uidl_format = %v-%u
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement