I suspect what you're looking for is in the patch attached to this message. You forgot (entirely) to put modseq code in the append_copy path. Since modseq appears to be a property of the target folder rather than the message itself, I'm using the same code as the 2.3.4->2.3.5 diff put into the other two append pathways. I've rolled this out on to the server we're testing on and I've found that copy/move works. Now to go reconstruct all the folders on that machine! Bron. On Thu, 25 May 2006 16:50:05 +1000, "Robert Mueller" <robm@xxxxxxxxxxx> said: > Hi Ken > > There's still a serious bug in 2.3.5 that causes copied messages to be > pseudo invisible in the moved to folder. I can reproduce it as follows: > > . select inbox.Archive > * FLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt selected > medeleted hasatt) > * OK [PERMANENTFLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt > selected medeleted hasatt \*)] > * 1 EXISTS > * 0 RECENT > * OK [UIDVALIDITY 1148525506] > * OK [UIDNEXT 185] > * OK [NOMODSEQ] Sorry, modsequences have not been enabled on this mailbox > . OK [READ-WRITE] Completed > > . uid search 1:* > * SEARCH 84 > . OK Completed (1 msgs in 0.000 secs) > > So Archive folder has 1 message. > > . select inbox > * FLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt selected > hasatt > NonJunk Junk medeleted) > * OK [PERMANENTFLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt > selected hasatt NonJunk Junk medeleted \*)] > * 13 EXISTS > * 0 RECENT > * OK [UNSEEN 12] > * OK [UIDVALIDITY 1148525506] > * OK [UIDNEXT 246932] > * OK [NOMODSEQ] Sorry, modsequences have not been enabled on this mailbox > . OK [READ-WRITE] Completed > > . uid search 1:* > * SEARCH 180517 219479 227085 227785 228034 233668 238794 245170 245693 > 246382 246402 246930 246931 > . OK Completed (13 msgs in 0.000 secs) > > . uid copy 180517 inbox.Archive > . OK [COPYUID 1148525506 180517 185] Completed > > So copy 1 message from inbox to Archive folder: > > . select inbox.Archive > * FLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt selected > medeleted hasatt) > * OK [PERMANENTFLAGS (\Answered \Flagged \Draft \Deleted \Seen hasnoatt > selected medeleted hasatt \*)] > * 2 EXISTS > * 1 RECENT > * OK [UIDVALIDITY 1148525506] > * OK [UIDNEXT 186] > * OK [NOMODSEQ] Sorry, modsequences have not been enabled on this mailbox > . OK [READ-WRITE] Completed > > . uid search 1:* > * SEARCH 84 185 > . OK Completed (2 msgs in 0.000 secs) > > Message appears in search index. > > . uid fetch 185 rfc822 > . OK Completed (0.000 sec) > > Any attempt to retrieve message body data returns nothing :( > > Rob > -- Bron Gondwana brong@xxxxxxxxxxx
diff -ur cyrus-imapd-2.3.5/imap/append.c cyrus-imapd-2.3.5-modseq/imap/append.c --- cyrus-imapd-2.3.5/imap/append.c 2006-05-24 14:37:42.000000000 -0400 +++ cyrus-imapd-2.3.5-modseq/imap/append.c 2006-05-25 03:00:36.000000000 -0400 @@ -857,6 +857,11 @@ for (msg = 0; msg < nummsg; msg++) { zero_index(message_index[msg]); message_index[msg].uid = append_mailbox->last_uid + 1 + as->nummsg; + if (append_mailbox->options & OPT_IMAP_CONDSTORE) { + message_index[msg].modseq = append_mailbox->highestmodseq + 1; + } else { + message_index[msg].modseq = 1; + } message_index[msg].last_updated = time(0); message_index[msg].internaldate = copymsg[msg].internaldate; as->nummsg++;
---- Cyrus Home Page: http://asg.web.cmu.edu/cyrus Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html