選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

dovecot.conf 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # 2.1.7: /etc/dovecot/dovecot.conf
  2. # OS: Linux 2.6.35.8-ikhpv1 x86_64 Debian 7.6 ext3
  3. mail_debug = yes
  4. auth_mechanisms = plain login
  5. auth_verbose = yes
  6. first_valid_gid = 7788
  7. first_valid_uid = 7788
  8. last_valid_gid = 7788
  9. last_valid_uid = 7788
  10. log_timestamp = "%Y-%m-%d %H:%M:%S "
  11. mail_location = maildir:/var/email/%d/%n/Maildir:LAYOUT=fs
  12. mail_privileged_group = email
  13. passdb {
  14. args = /etc/dovecot/dovecot-pgsql.conf
  15. driver = sql
  16. }
  17. protocols = imap pop3 sieve lmtp
  18. service auth {
  19. executable = /usr/lib/dovecot/auth
  20. inet_listener {
  21. port = DOVECOT_SASL_PORT
  22. address = 0.0.0.0
  23. }
  24. unix_listener auth-master {
  25. group = email
  26. mode = 0600
  27. user = email
  28. }
  29. }
  30. ssl_ca = </etc/ssl/private/mail-chain.crt
  31. ssl_cert = </etc/ssl/private/mail.crt
  32. ssl_key = </etc/ssl/private/mail.key
  33. userdb {
  34. args = /etc/dovecot/dovecot-pgsql.conf
  35. driver = sql
  36. }
  37. protocol lda {
  38. auth_socket_path = /var/run/dovecot/auth-master
  39. mail_plugins = sieve
  40. postmaster_address = postmaster@example.org
  41. }
  42. protocol lmtp {
  43. mail_plugins = sieve
  44. }
  45. plugin {
  46. sieve = ~/.dovecot.sieve
  47. sieve_dir = ~/sieve
  48. sieve_global_dir = /etc/dovecot/sieve/include/
  49. sieve_default = /etc/dovecot/sieve/default.sieve
  50. sieve_before = /etc/dovecot/sieve/before/
  51. sieve_after = /etc/dovecot/sieve/after/
  52. }
  53. service managesieve-login {
  54. inet_listener sieve {
  55. address = 0.0.0.0
  56. }
  57. }
  58. log_path = /dev/stderr
  59. postmaster_address = postmaster@example.org
  60. service lmtp {
  61. inet_listener lmtp {
  62. address = 0.0.0.0
  63. port = DOVECOT_LMTP_PORT
  64. }
  65. }