From 6ac105b3aaf6364138283b948590497eedd881a4 Mon Sep 17 00:00:00 2001 From: Alexandros Ioannides Date: Wed, 23 Nov 2016 16:39:20 +0200 Subject: [PATCH] Fix for folders creation --- install/ubuntu/16.04/dovecot/dovecot.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/install/ubuntu/16.04/dovecot/dovecot.conf b/install/ubuntu/16.04/dovecot/dovecot.conf index 0a855351..311a3351 100644 --- a/install/ubuntu/16.04/dovecot/dovecot.conf +++ b/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 + } +}