Advertisement
Guest User

Untitled

a guest
Jan 14th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. # 2.1.7: /etc/dovecot/dovecot.conf
  2. # OS: Linux 2.6.32-5-686-bigmem i686 Debian 6.0.6 ext3
  3. auth_debug = yes
  4. auth_verbose = yes
  5. disable_plaintext_auth = no
  6. info_log_path = /var/log/dovecot/dovecot.log
  7. log_path = /var/log/dovecot/dovecot-info.log
  8. log_timestamp = "%Y-%m-%d %H:%M:%S "
  9. mail_debug = yes
  10. mail_fsync = never
  11. mail_gid = 1000
  12. mail_location = maildir:/home/vmail/%d/%u/Maildir
  13. mail_log_prefix = "%Us(%u): "
  14. mail_uid = 1000
  15. mmap_disable = yes
  16. passdb {
  17. args = /etc/dovecot/dovecot-sql.conf
  18. driver = sql
  19. }
  20. plugin {
  21. autocreate = Trash
  22. autocreate2 = Junk
  23. autocreate3 = Sent
  24. autocreate4 = Drafts
  25. autosubscribe = Trash
  26. autosubscribe2 = Junk
  27. autosubscribe3 = Sent
  28. autosubscribe4 = Drafts
  29. fts = squat
  30. mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
  31. mail_log_fields = uid box msgid size, from, subject, size
  32. }
  33. protocols = imap lmtp
  34. service auth {
  35. unix_listener auth-client {
  36. mode = 0777
  37. }
  38. unix_listener auth-master {
  39. group = vmail
  40. mode = 0777
  41. user = vmail
  42. }
  43. }
  44. service imap-login {
  45. inet_listener imap {
  46. address = *
  47. port = 143
  48. }
  49. }
  50. service lmtp {
  51. inet_listener lmtp {
  52. address = 79.172.197.77 127.0.0.1
  53. port = 24
  54. }
  55. }
  56. ssl_cert = </etc/ssl/certs/ssl-cert-snakeoil.pem
  57. ssl_key = </etc/ssl/private/ssl-cert-snakeoil.key
  58. userdb {
  59. args = uid=1000 gid=1000
  60. driver = static
  61. }
  62. verbose_proctitle = yes
  63. protocol imap {
  64. mail_max_userip_connections = 200
  65. mail_plugins = quota imap_quota autocreate fts fts_squat mail_log notify
  66. }
  67. protocol pop3 {
  68. pop3_uidl_format = %08Xu%08Xv
  69. }
  70. protocol lda {
  71. mail_plugins = sieve
  72. rejection_reason = Your message to <%t> was automatically rejected:%n%r
  73. rejection_subject = Rejected: %s
  74. }
  75. protocol lmtp {
  76. mail_plugins = sieve
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement