Browse Source

added dovecot namespace for folder names

tags/v1.3.0^0
Robin Thoni 7 years ago
parent
commit
ece22092a9
1 changed files with 60 additions and 0 deletions
  1. 60
    0
      dovecot/config/dovecot.conf

+ 60
- 0
dovecot/config/dovecot.conf View File

@@ -70,3 +70,63 @@ service lmtp {
70 70
     port = DOVECOT_LMTP_PORT
71 71
   }
72 72
 }
73
+
74
+namespace inbox {
75
+  type = private
76
+  separator = .
77
+  inbox = yes
78
+  mailbox Drafts {
79
+    special_use = \Drafts
80
+    auto = subscribe
81
+  }
82
+
83
+  mailbox Junk {
84
+    special_use = \Junk
85
+    auto = create
86
+  }
87
+
88
+  mailbox spam {
89
+    special_use = \Junk
90
+    auto = no
91
+  }
92
+
93
+  mailbox Spam {
94
+    special_use = \Junk
95
+    auto = no
96
+  }
97
+
98
+  mailbox Trash {
99
+    special_use = \Trash
100
+    auto = subscribe
101
+  }
102
+
103
+  mailbox TRASH {
104
+    special_use = \Trash
105
+    auto = no
106
+  }
107
+
108
+  mailbox Sent {
109
+    special_use = \Sent
110
+    auto = subscribe
111
+  }
112
+
113
+  mailbox "Sent Mail" {
114
+    special_use = \Sent
115
+    auto = no
116
+  }
117
+
118
+  mailbox "Sent Messages" {
119
+    special_use = \Sent
120
+    auto = no
121
+  }
122
+
123
+  mailbox Archive {
124
+    special_use = \Archive
125
+    auto = create
126
+  }
127
+
128
+  mailbox "Archives" {
129
+    special_use = \Archive
130
+    auto = no
131
+  }
132
+}

Loading…
Cancel
Save