瀏覽代碼

Merge pull request #932 from ioannidesalex/patch-10

Dovecot fix for folders creation
Serghey Rodin 9 年之前
父節點
當前提交
ebdb1c4109
共有 1 個文件被更改,包括 20 次插入0 次删除
  1. 20 0
      install/ubuntu/16.04/dovecot/dovecot.conf

+ 20 - 0
install/ubuntu/16.04/dovecot/dovecot.conf

@@ -2,3 +2,23 @@ protocols = imap pop3
 listen = *, ::
 listen = *, ::
 base_dir = /var/run/dovecot/
 base_dir = /var/run/dovecot/
 !include conf.d/*.conf
 !include conf.d/*.conf
+
+namespace {
+    type = private
+    separator = /
+    prefix =
+    inbox = yes
+
+    mailbox Sent {
+        auto = subscribe
+        special_use = \Sent
+    }
+    mailbox Drafts {
+        auto = subscribe
+        special_use = \Drafts
+    }
+    mailbox Trash {
+        auto = subscribe
+        special_use = \Trash
+    }
+}