7 Jun
2013
7 Jun
'13
12:28 p.m.
On Fri, Jun 7, 2013 at 9:23 AM, Alex Dubinin <maillist.debian@gmail.com>wrote:
This is my first experience of the mail server. Set up a mail server from Postfix + Dovecot with the MySQL authorization. When you create a new user dovecot makes strange folder structure: the 'inbox' contains 'juncus', 'tash', 'sent' etc. ie 'sent' and other folders are subdir to the 'inbox'.
My result:
04 LIST "" "*"
- LIST (\HasChildren) "." "INBOX"
- LIST (\HasNoChildren) "." "INBOX.Trash"
I want:
04 LIST "" "*"
- LIST (\HasNoChildren) "." "INBOX"
- LIST (\HasNoChildren) "." "Trash"
namespace inbox { hidden = no inbox = yes list = yes location = mailbox Drafts { special_use = \Drafts } mailbox Trash { special_use = \Trash } mailbox Junk { special_use = \Junk } mailbox Sent { special_use = \Sent }
>>>>>>>>>>>>>>>>>>>>>>>>>>> prefix = INBOX. separator = . type = private }
You explicitly told Dovecot to ... Luca