From 9b556ab5a8e114b0d47fd392ef0af5971ac00de8 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:15:08 -0600 Subject: [PATCH 1/6] adds special use and xlist --- install/tpl/debian_dovecot2.conf.master | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/install/tpl/debian_dovecot2.conf.master b/install/tpl/debian_dovecot2.conf.master index 8fdaf44eeb..7ca60a7c65 100644 --- a/install/tpl/debian_dovecot2.conf.master +++ b/install/tpl/debian_dovecot2.conf.master @@ -65,3 +65,19 @@ protocol lmtp { mail_plugins = quota sieve } mail_plugins = $mail_plugins quota +imap_capability=+SEPCIAL-USE XLIST +namespace inbox { + inbox = yes + mailbox Drafts { + special_use = \Drafts + } + mailbox Junk { + special_use = \Junk + } + mailbox Trash { + special_use = \Trash + } + mailbox Sent { + special_use = \Sent + } +} -- GitLab From 948ffa51c713908d681c30dc3bb550e69161a727 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:17:58 -0600 Subject: [PATCH 2/6] order changed (alphabetical) --- install/tpl/debian_dovecot2.conf.master | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/tpl/debian_dovecot2.conf.master b/install/tpl/debian_dovecot2.conf.master index 7ca60a7c65..f125aafaf7 100644 --- a/install/tpl/debian_dovecot2.conf.master +++ b/install/tpl/debian_dovecot2.conf.master @@ -74,10 +74,10 @@ namespace inbox { mailbox Junk { special_use = \Junk } - mailbox Trash { - special_use = \Trash - } mailbox Sent { special_use = \Sent } + mailbox Trash { + special_use = \Trash + } } -- GitLab From 86fc85316b0a595599db34442f5ee15795210512 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:21:44 -0600 Subject: [PATCH 3/6] added special-use --- install/tpl/debian6_dovecot2.conf.master | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/install/tpl/debian6_dovecot2.conf.master b/install/tpl/debian6_dovecot2.conf.master index db6e0bfbe2..015f6094dd 100644 --- a/install/tpl/debian6_dovecot2.conf.master +++ b/install/tpl/debian6_dovecot2.conf.master @@ -66,3 +66,20 @@ protocol lmtp { postmaster_address = webmaster@localhost mail_plugins = quota sieve } +imap_capability=+SEPCIAL-USE XLIST +namespace inbox { + inbox = yes + mailbox Drafts { + special_use = \Drafts + } + mailbox Junk { + special_use = \Junk + } + mailbox Sent { + special_use = \Sent + } + mailbox Trash { + special_use = \Trash + } +} + -- GitLab From 68423b4e65e8589f24f3f45f0ab86357c038a183 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:22:03 -0600 Subject: [PATCH 4/6] added special-use --- install/tpl/fedora_dovecot2.conf.master | 17 +++++++++++++++++ install/tpl/opensuse_dovecot2.conf.master | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/install/tpl/fedora_dovecot2.conf.master b/install/tpl/fedora_dovecot2.conf.master index c14af1d44d..5d9299c529 100644 --- a/install/tpl/fedora_dovecot2.conf.master +++ b/install/tpl/fedora_dovecot2.conf.master @@ -62,3 +62,20 @@ protocol lmtp { mail_plugins = quota sieve } mail_plugins = $mail_plugins quota +imap_capability=+SEPCIAL-USE XLIST +namespace inbox { + inbox = yes + mailbox Drafts { + special_use = \Drafts + } + mailbox Junk { + special_use = \Junk + } + mailbox Sent { + special_use = \Sent + } + mailbox Trash { + special_use = \Trash + } +} + diff --git a/install/tpl/opensuse_dovecot2.conf.master b/install/tpl/opensuse_dovecot2.conf.master index f28c1095d2..68bbf19f4e 100644 --- a/install/tpl/opensuse_dovecot2.conf.master +++ b/install/tpl/opensuse_dovecot2.conf.master @@ -61,3 +61,20 @@ protocol lmtp { mail_plugins = quota sieve } mail_plugins = $mail_plugins quota +imap_capability=+SEPCIAL-USE XLIST +namespace inbox { + inbox = yes + mailbox Drafts { + special_use = \Drafts + } + mailbox Junk { + special_use = \Junk + } + mailbox Sent { + special_use = \Sent + } + mailbox Trash { + special_use = \Trash + } +} + -- GitLab From b21e8c26c8df883d36663e59e55368f224985e0a Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:27:36 -0600 Subject: [PATCH 5/6] added quota to mail plugins --- install/tpl/debian6_dovecot2.conf.master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/tpl/debian6_dovecot2.conf.master b/install/tpl/debian6_dovecot2.conf.master index 015f6094dd..155453bd35 100644 --- a/install/tpl/debian6_dovecot2.conf.master +++ b/install/tpl/debian6_dovecot2.conf.master @@ -66,6 +66,7 @@ protocol lmtp { postmaster_address = webmaster@localhost mail_plugins = quota sieve } +mail_plugins = $mail_plugins quota imap_capability=+SEPCIAL-USE XLIST namespace inbox { inbox = yes @@ -82,4 +83,3 @@ namespace inbox { special_use = \Trash } } - -- GitLab From 0fa80cca2d123e16b93bac83607bf682f5ff586e Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2018 12:33:51 -0600 Subject: [PATCH 6/6] last changes --- install/tpl/fedora_dovecot2.conf.master | 1 - install/tpl/opensuse_dovecot2.conf.master | 1 - 2 files changed, 2 deletions(-) diff --git a/install/tpl/fedora_dovecot2.conf.master b/install/tpl/fedora_dovecot2.conf.master index 5d9299c529..ac321469a2 100644 --- a/install/tpl/fedora_dovecot2.conf.master +++ b/install/tpl/fedora_dovecot2.conf.master @@ -78,4 +78,3 @@ namespace inbox { special_use = \Trash } } - diff --git a/install/tpl/opensuse_dovecot2.conf.master b/install/tpl/opensuse_dovecot2.conf.master index 68bbf19f4e..49ba52e5f5 100644 --- a/install/tpl/opensuse_dovecot2.conf.master +++ b/install/tpl/opensuse_dovecot2.conf.master @@ -77,4 +77,3 @@ namespace inbox { special_use = \Trash } } - -- GitLab