Advertisement
Guest User

doveconf -n

a guest
Mar 20th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. # 2.1.12: /imapdata/services/dovecot/etc/dovecot/dovecot.conf
  2. # OS: SunOS 5.10 i86pc zfs
  3. auth_mechanisms = plain login
  4. base_dir = /var/run/dovecot/
  5. debug_log_path = /var/log/dovecot.debug
  6. default_client_limit = 8395
  7. first_valid_uid = 90
  8. hostname = imap.domain.de
  9. info_log_path = /var/log/dovecot.info
  10. lda_mailbox_autosubscribe = yes
  11. lmtp_save_to_detail_mailbox = yes
  12. log_path = /var/log/dovecot.log
  13. login_access_sockets = tcpwrap
  14. mail_home = /imapdata/dovecot/imap/%u
  15. mail_location = maildir:/imapdata/dovecot/imap/%u/maildir
  16. mail_plugins = quota
  17. mail_temp_dir = /imapdata/dovecot/temp
  18. managesieve_notify_capability = mailto
  19. 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
  20. passdb {
  21. args = /imapdata/services/dovecot/etc/dovecot/dovecot-ldap.conf.ext
  22. driver = ldap
  23. }
  24. plugin {
  25. antispam_backend = dspam
  26. antispam_debug_target = syslog
  27. antispam_dspam_args = --source=error;--signature=%%s;--user;%u
  28. antispam_dspam_binary = /imapdata/services/dspam/bin/dspamc
  29. antispam_dspam_notspam = --class=innocent
  30. antispam_dspam_spam = --class=spam
  31. antispam_signature = X-DSPAM-Signature
  32. antispam_spam = SPAM
  33. antispam_trash_pattern_ignorecase = TRASH;DELETED
  34. antispam_verbose_debug = 1
  35. autocreate = SPAM
  36. autosubscribe = SPAM
  37. quota = maildir:User quota
  38. quota_rule2 = Trash:storage=+200M
  39. quota_warning = storage=95%% quota-warning 95 %u
  40. quota_warning2 = storage=80%% quota-warning 80 %u
  41. recipient_delimiter = +
  42. sieve = /imapdata/dovecot/sieve/%u/dovecot.sieve
  43. sieve_before = /imapdata/dovecot/sieve/spam.sieve
  44. sieve_dir = /imapdata/dovecot/sieve/%u/
  45. sieve_global_dir = /imapdata/dovecot/sieve
  46. sieve_global_path = /imapdata/dovecot/sieve/default.sieve
  47. sieve_max_actions = 64
  48. sieve_max_script_size = 1M
  49. sieve_quota_max_storage = 1M
  50. }
  51. protocols = imap pop3 lmtp sieve
  52. sendmail_path = /usr/lib/sendmail
  53. service auth {
  54. client_limit = 13712
  55. }
  56. service imap-login {
  57. inet_listener imap {
  58. port = 0
  59. }
  60. inet_listener imaps {
  61. port = 993
  62. ssl = yes
  63. }
  64. process_limit = 8192
  65. process_min_avail = 8
  66. service_count = 1
  67. }
  68. service imap {
  69. process_limit = 4096
  70. }
  71. service managesieve-login {
  72. inet_listener sieve {
  73. port = 4190
  74. }
  75. process_min_avail = 0
  76. service_count = 1
  77. }
  78. service pop3-login {
  79. inet_listener pop3 {
  80. port = 0
  81. }
  82. inet_listener pop3s {
  83. port = 995
  84. ssl = yes
  85. }
  86. }
  87. service pop3 {
  88. process_limit = 1024
  89. }
  90. service quota-warning {
  91. executable = script /imapdata/services/dovecot/bin/quota-warning.sh
  92. unix_listener quota-warning {
  93. user = root
  94. }
  95. user = root
  96. }
  97. service tcpwrap {
  98. unix_listener login/tcpwrap {
  99. group = $default_login_user
  100. mode = 0600
  101. user = $default_login_user
  102. }
  103. }
  104. ssl_cert = </imapdata/services/dovecot/openssl/certs/imap.pem
  105. ssl_cipher_list = ALL:!ADH:!LOW:!SSLv2:!EXP:!aNULL:RC4+RSA:+HIGH:+MEDIUM
  106. ssl_key = </imapdata/services/dovecot/openssl/certs/imap.key.pem
  107. userdb {
  108. args = /imapdata/services/dovecot/etc/dovecot/dovecot-ldap.conf.ext
  109. driver = ldap
  110. }
  111. verbose_proctitle = yes
  112. protocol lda {
  113. mail_plugins = quota sieve
  114. }
  115. protocol sieve {
  116. mail_max_userip_connections = 10
  117. managesieve_implementation_string = Cyrus timsieved v2.2.13
  118. managesieve_logout_format = bytes=%i/%o
  119. managesieve_max_line_length = 65536
  120. }
  121. protocol imap {
  122. mail_plugins = quota autocreate imap_quota antispam mail_log notify
  123. }
  124. protocol lmtp {
  125. mail_plugins = quota sieve
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement