[Dovecot] Masking INBOX.INBOX
I am using dovecot and trying to make it compatible with my a BincIMAP installation. BincIMAP uses a scheme similar to Courier-IMAP, so I set up this default_mail_env:
default_mail_env = maildir:~/Maildir
And this namespace:
namespace private { separator = . prefix = INBOX. inbox = yes }
Which mostly works as expected, but I now see an "INBOX" subfolder of "INBOX" in LIST:
- OK Dovecot ready. 1 login ben ******** 1 OK Logged in. 2 list "" "*"
- LIST (\HasChildren) "." "INBOX"
- LIST (\HasNoChildren) "." "INBOX.INBOX"
- LIST (\HasNoChildren) "." "INBOX.Drafts"
- LIST (\HasChildren) "." "INBOX.Jabber"
- LIST (\HasChildren) "." "INBOX.Keepers"
- LIST (\HasChildren) "." "INBOX.Ruby"
- LIST (\HasNoChildren) "." "INBOX.Trash"
- LIST (\HasNoChildren) "." "INBOX.Sent"
- LIST (\HasNoChildren) "." "INBOX.Spam"
- LIST (\HasNoChildren) "." "INBOX.postmaster"
- LIST (\HasNoChildren) "." "INBOX.qmail"
- LIST (\HasNoChildren) "." "INBOX.Jabber.XMPPWG"
- LIST (\HasNoChildren) "." "INBOX.Jabber.standards-jig"
- LIST (\HasNoChildren) "." "INBOX.Keepers.2003"
- LIST (\HasNoChildren) "." "INBOX.Keepers.2004"
- LIST (\HasNoChildren) "." "INBOX.Keepers.2005"
- LIST (\HasNoChildren) "." "INBOX.Ruby.ruby-talk" 2 OK List completed.
Is there anyway to mask this from displaying? I've toyed with various configurations to try to hide it, but nothing seems to work. What's annoying is this situation:
3 LSUB "" "*"
- LSUB () "." "INBOX.Spam"
- LSUB () "." "INBOX.Trash"
- LSUB () "." "INBOX.Sent"
- LSUB () "." "INBOX.Drafts" 3 OK Lsub completed. 4 SUBSCRIBE "INBOX" 4 OK Subscribe completed. 5 LSUB "" "*"
- LSUB () "." "INBOX.Spam"
- LSUB () "." "INBOX.Trash"
- LSUB () "." "INBOX.Sent"
- LSUB () "." "INBOX.Drafts"
- LSUB () "." "INBOX.INBOX" 5 OK Lsub completed.
Note that in my first LSUB the main "INBOX" isn't subscribed to. I then "SUBSCRIBE" in 4 to "INBOX" and dovecot translates that to subscribing to "INBOX.INBOX". Not a huge deal, but it does cause Thunderbird to act weirdly (although Thunderbird allows me to UNSUBSCRIBE to "INBOX" and still get new mail), but I'm not sure what the effect will be on other clients.
Any ideas?
Thanks, Ben
On Tue, 2006-07-18 at 09:43 -0600, Ben Schumacher wrote:
I am using dovecot and trying to make it compatible with my a BincIMAP installation. BincIMAP uses a scheme similar to Courier-IMAP, so I set up this default_mail_env:
default_mail_env = maildir:~/Maildir
And this namespace:
namespace private { separator = . prefix = INBOX. inbox = yes }
Which mostly works as expected, but I now see an "INBOX" subfolder of "INBOX" in LIST:
Delete ~/Maildir/.INBOX/ directory.
On 7/18/06, Timo Sirainen tss@iki.fi wrote:
Delete ~/Maildir/.INBOX/ directory.
There actually is no .INBOX directory:
$ ls -a ./ ../ .Drafts/ .Jabber/ .Jabber.XMPPWG/ .Jabber.standards-jig/ .Keepers/ .Keepers.2003/ .Keepers.2004/ .Keepers.2005/ .Ruby/ .Ruby.ruby-talk/ .Sent/ .Spam/ .Trash/ .bincimap-subscribed .postmaster/ .qmail/ bincimap-cache bincimap-uidvalidity cur/ dovecot-keywords dovecot-uidlist dovecot.index dovecot.index.cache dovecot.index.log new/ subscriptions tmp/ uidvalfilename
Cheers, Ben
participants (2)
-
Ben Schumacher
-
Timo Sirainen