I have an issue with shares mailboxes Example : I have 2 users A and B. A must have an access to all mail of B So i create a public namespace namespace public { separator = / prefix = Public/ location = maildir:/home/users/B/Maildir } It's OK for the subfolders, but not for the root (B's inbox, the most important !) it's seems to be like http://www.dovecot.org/list/dovecot/2007-October/025965.html it's the only feature that prevents me to migrate from Courier-IMAP !
On Tue, 2008-05-06 at 09:15 +0200, RIOTTEAU Gw?na?l wrote:> I have an issue with shares mailboxes > > Example : I have 2 users A and B. > A must have an access to all mail of B > So i create a public namespace > > namespace public { > separator = / > prefix = Public/ > location = maildir:/home/users/B/Maildir > } > > It's OK for the subfolders, but not for the root (B's inbox, the most > important !)It's kind of a kludge to use namespaces like that to share another user's mailboxes. But you should be able to work around this by: cd /home/users/B/Maildir ln -s . .INBOX Then you'll have Public/INBOX. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://dovecot.org/pipermail/dovecot/attachments/20080507/d92db342/attachment-0002.bin>
>> I have an issue with shares mailboxes >> >> Example : I have 2 users A and B. >> A must have an access to all mail of B >> So i create a public namespace >> >> namespace public { >> separator = / >> prefix = Public/ >> location = maildir:/home/users/B/Maildir >> } >> >> It's OK for the subfolders, but not for the root (B's inbox, the most >> important !) > > It's kind of a kludge to use namespaces like that to share another > user's mailboxes. But you should be able to work around this by: > > cd /home/users/B/Maildir > ln -s . .INBOX > > Then you'll have Public/INBOX. > >Thanks, it's work well. For me, namespaces is the only solution to share a mailbox to many people (without having multiple imap accounts on each mail client) Is there others solutions ?