Преглед изворни кода

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 = *, ::
 base_dir = /var/run/dovecot/
 !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
+    }
+}