Просмотр исходного кода

Merge pull request #932 from ioannidesalex/patch-10

Dovecot fix for folders creation
Serghey Rodin 9 лет назад
Родитель
Сommit
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
+    }
+}