Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. root@fastmail:/etc/dovecot# doveconf -n
  2. # 2.3.4.1 (f79e8e7e4): /etc/dovecot/dovecot.conf
  3. # Pigeonhole version 0.5.4 ()
  4. # OS: Linux 5.2.0 x86_64 Debian buster/sid
  5. # Hostname: fastmail
  6. auth_mechanisms = plain login
  7. default_client_limit = 10000
  8. default_process_limit = 300
  9. default_vsz_limit = 512 M
  10. dict {
  11. sqlquota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
  12. }
  13. disable_plaintext_auth = no
  14. imap_idle_notify_interval = 1 mins
  15. imapc_max_idle_time = 1 days
  16. listen = *
  17. login_greeting = Decimal - Informatica e Gestao, Lda
  18. mail_home = /home/mail/%d/%u/Maildir
  19. mail_location = maildir:~/Maildir
  20. mail_plugins = quota
  21. mail_privileged_group = mail
  22. managesieve_notify_capability = mailto
  23. 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 index ihave duplicate mime foreverypart extracttext vacation-seconds editheader imapflags notify
  24. namespace inbox {
  25. inbox = yes
  26. location =
  27. mailbox Drafts {
  28. auto = subscribe
  29. special_use = \Drafts
  30. }
  31. mailbox Junk {
  32. auto = subscribe
  33. special_use = \Junk
  34. }
  35. mailbox Sent {
  36. auto = subscribe
  37. special_use = \Sent
  38. }
  39. mailbox Trash {
  40. auto = subscribe
  41. special_use = \Trash
  42. }
  43. prefix =
  44. }
  45. passdb {
  46. args = /etc/dovecot/dovecot-sql.conf.ext
  47. driver = sql
  48. }
  49. plugin {
  50. quota = dict:User Quota::proxy::sqlquota
  51. quota_exceeded_message = Quota exceeded (mailbox for user is full) / Conta de destino cheia (o email de destino tem a caixa cheia)
  52. quota_rule = *:storage=100M
  53. sieve = ~/.dovecot.sieve
  54. sieve_dir = ~/sieve
  55. sieve_extensions = +notify +imapflags +vacation-seconds +editheader
  56. sieve_max_actions = 1024
  57. sieve_max_redirects = 1024
  58. sieve_max_script_size = 32M
  59. }
  60. postmaster_address = trash@decimal.pt
  61. protocols = imap lmtp pop3 sieve
  62. service dict {
  63. unix_listener dict {
  64. mode = 0777
  65. }
  66. }
  67. service imap {
  68. process_limit = 1024
  69. }
  70. service lmtp {
  71. inet_listener lmtp {
  72. address = 0.0.0.0
  73. port = 24
  74. }
  75. process_min_avail = 10
  76. unix_listener /var/spool/postfix/private/dovecot-lmtp {
  77. group = postfix
  78. mode = 0666
  79. user = postfix
  80. }
  81. }
  82. service pop3-login {
  83. inet_listener pop3 {
  84. port = 110
  85. }
  86. }
  87. service pop3 {
  88. process_limit = 1024
  89. }
  90. ssl = no
  91. ssl_cert = </etc/dovecot/dovecot.pem
  92. ssl_key = # hidden, use -P to show it
  93. userdb {
  94. args = /etc/dovecot/dovecot-sql.conf.ext
  95. driver = sql
  96. }
  97. protocol lmtp {
  98. mail_plugins = quota sieve
  99. }
  100. protocol imap {
  101. mail_max_userip_connections = 50
  102. mail_plugins = quota imap_quota last_login
  103. }
  104. protocol pop3 {
  105. mail_max_userip_connections = 50
  106. mail_plugins = quota last_login
  107. }
  108. root@fastmail:/etc/dovecot#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement