Advertisement
redhat19

Untitled

May 16th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. # 2.0.14: /etc/dovecot/dovecot.conf
  2. # dovecot.conf file for Noway2
  3. auth_mechanisms = plain cram-md5 digest-md5
  4. base_dir = /var/run/dovecot/
  5. first_valid_uid = 5000
  6. last_valid_uid = 5000
  7. log_timestamp = "%Y-%m-%d %H:%M:%s "
  8. mail_location = maildir:/var/mail/%d/%n
  9. #managesieve_notify_capability = mailto
  10. #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
  11. passdb {
  12. args = /etc/dovecot/dovecot-sql.conf
  13. driver = sql
  14. }
  15. protocols = imap pop3
  16. service auth {
  17. unix_listener /var/spool/postfix/private/auth {
  18. group = postfix
  19. mode = 0660
  20. user = postfix
  21. }
  22. unix_listener auth-master {
  23. group = mail
  24. mode = 0660
  25. user = vmail
  26. }
  27. #user = nobody
  28. #Not sure about this one, it came from the Gentoo Wiki on Dovecot 2
  29. user = root
  30. }
  31.  
  32. service auth-worker {
  33. # user = $default_internal_user
  34. # remembered this from gentoo docs
  35. user = root
  36. unix_listener auth-worker {
  37. user = postfix
  38. }
  39. }
  40.  
  41. service imap-login {
  42. executable = /usr/libexec/dovecot/imap-login
  43. inet_listener imap {
  44. address = *
  45. port = 143
  46. }
  47. inet_listener imaps {
  48. address = *
  49. port = 993
  50. }
  51. }
  52. service imap {
  53. executable = /usr/libexec/dovecot/imap
  54. }
  55. service pop3-login {
  56. executable = /usr/libexec/dovecot/pop3-login
  57. inet_listener pop3 {
  58. address = *
  59. port = 110
  60. }
  61. inet_listener pop3s {
  62. address = *
  63. port = 995
  64. }
  65. }
  66. service pop3 {
  67. executable = /usr/libexec/dovecot/pop3
  68. }
  69. ssl_cert = </etc/postfix/ssl.crt
  70. ssl_key = </etc/postfix/ssl.key
  71. userdb {
  72. args = /etc/dovecot/dovecot-sql.conf
  73. driver = sql
  74. }
  75. protocol imap {
  76. imap_client_workarounds = tb-extra-mailbox-sep
  77. imap_max_line_length = 64 k
  78. }
  79. protocol pop3 {
  80. pop3_uidl_format = %08Xu%08Xv
  81. }
  82. protocol lda {
  83. auth_socket_path = /var/run/dovecot/auth-master
  84. postmaster_address = postmaster@
  85. sendmail_path = /usr/lib/sendmail
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement