Hi all, I wanna to set up shared folders for a couple of users and I'd like that everyone could keep the \Seen flag as private. So if user #1 reads some messages and user #2 not, those messages appear as "unseen" to #2 and "seen" to #1. I've implemented shared folders using namespaces with every user having their own "control" and "private" directories. But all the flags (\Seen included) are "shared". Am I on the right path? Some tip or documentation? Oh, I almost forgot: using dovecot 1.0.13 (from Debian Etch backports). Thank you in advance! -- Imobach Gonz?lez Sosa Banot.net http://www.banot.net/
Imobach Gonz?lez Sosa wrote:> Hi all, > > I wanna to set up shared folders for a couple of users and I'd like that > everyone could keep the \Seen flag as private. So if user #1 reads some > messages and user #2 not, those messages appear as "unseen" to #2 and "seen" > to #1. > > I've implemented shared folders using namespaces with every user having their > own "control" and "private" directories. But all the flags (\Seen included) > are "shared". > > Am I on the right path? Some tip or documentation? > > Oh, I almost forgot: using dovecot 1.0.13 (from Debian Etch backports). > > Thank you in advance! > >From Timo, I wanted the same thing so I patch the source each time: src/lib-storage/index/maildir/maildir-storage.c near line 428, change: mbox->ibox.box.private_flags_mask = MAIL_SEEN; to: mbox->ibox.box.private_flags_mask = 0;
On Fri, 2008-06-27 at 15:09 +0100, Imobach Gonz?lez Sosa wrote:> Hi all, > > I wanna to set up shared folders for a couple of users and I'd like that > everyone could keep the \Seen flag as private. So if user #1 reads some > messages and user #2 not, those messages appear as "unseen" to #2 and "seen" > to #1. > > I've implemented shared folders using namespaces with every user having their > own "control" and "private" directories. But all the flags (\Seen included) > are "shared". > > Am I on the right path? Some tip or documentation?I updated? http://wiki.dovecot.org/SharedMailboxes now to mention flag sharing. -------------- 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/20080628/ec112d64/attachment-0002.bin>
El Saturday 28 June 2008 07:25:31 Timo Sirainen escribi?:> On Fri, 2008-06-27 at 15:09 +0100, Imobach Gonz?lez Sosa wrote: > > Hi all, > > > > I wanna to set up shared folders for a couple of users and I'd like that > > everyone could keep the \Seen flag as private. So if user #1 reads some > > messages and user #2 not, those messages appear as "unseen" to #2 and > > "seen" to #1. > > > > I've implemented shared folders using namespaces with every user having > > their own "control" and "private" directories. But all the flags (\Seen > > included) are "shared". > > > > Am I on the right path? Some tip or documentation? > > I updated? http://wiki.dovecot.org/SharedMailboxes now to mention flag > sharing.Ah, great! Thank you very much, Timo! -- Imobach Gonz?lez Sosa Banot.net http://www.banot.net/