Displaying 2 results from an estimated 2 matches for "cur_str".
2008 Oct 15
1
Bug: MODSEQ FETCH return (?)
.../imap/imap-fetch.c Tue Oct 14 14:52:44 2008 +0300
+++ b/src/imap/imap-fetch.c Tue Oct 14 21:20:30 2008 -0600
@@ -749,7 +749,7 @@
modseq = mail_get_modseq(mail);
if (ctx->client->highest_fetch_modseq < modseq)
ctx->client->highest_fetch_modseq = modseq;
- str_printfa(ctx->cur_str, "MODSEQ %llu ",
+ str_printfa(ctx->cur_str, "MODSEQ (%llu) ",
(unsigned long long)modseq);
return 1;
}
Hope this helps/is correct.
michael
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...+++ dovecot-1.2.11+lemonade/src/imap/imap-fetch.c 2010-04-08 09:59:12.000000000 -0500
@@ -449,6 +449,10 @@
break;
ctx->cur_mail = ctx->mail;
+ /* APPLE - urlauth */
+ if (ctx->urlfetch)
+ ctx->urlfetched = TRUE;
+ else /* reduce code deltas */
str_printfa(ctx->cur_str, "* %u FETCH (",
ctx->cur_mail->seq);
ctx->first = TRUE;
@@ -504,6 +508,9 @@
ctx->line_finished = TRUE;
ctx->line_partial = FALSE;
+
+ /* APPLE - urlauth */
+ if (!ctx->urlfetch) /* reduce code deltas */
if (o_stream_send(client->output, &quo...