Displaying 4 results from an estimated 4 matches for "fetch_uid".
2016 Nov 27
2
Rebuild UIDs for mdbox
...ct completed (0.000 + 0.000 secs).
imap-thread.c:1344:imap select run - end 0
imap-thread.c:388:generic_cb
imap-thread.c:372:found imap 0x22c8f60
imap-thread.c:1431:imap select - end
imap.c:3961:select: exists 399 recent 0 expunge 0 uid_validity
1163720154 can_create_flags 1
imap-thread.c:2018:imap fetch_uid - begin
imap-thread.c:372:found imap 0x22c8f60
imap-thread.c:372:found imap 0x22c8f60
[20:23:04] IMAP- [fetching UIDs...]
[20:23:04] IMAP> 87 UID FETCH 1:* (UID)
[20:23:04] IMAP< [FETCH data - 1024 bytes]
[20:23:04] IMAP< [FETCH data - 1024 bytes]
[20:23:04] IMAP<
[20:23:04] IMAP< [F...
2003 Apr 16
1
pop3 coredump
...lags = 0x8053d58 <index_storage_update_flags>,
copy = 0x804c3e4 <maildir_storage_copy>,
fetch_init = 0x804fb00 <index_storage_fetch_init>,
fetch_deinit = 0x804fbe8 <index_storage_fetch_deinit>,
fetch_next = 0x804fc70 <index_storage_fetch_next>,
fetch_uid = 0x804fd5c <index_storage_fetch_uid>,
fetch_seq = 0x804fdc0 <index_storage_fetch_seq>,
search_get_sorting = 0x8052af4 <index_storage_search_get_sorting>,
search_init = 0x8052b08 <index_storage_search_init>,
search_deinit = 0x8052be0 <index_storage_sea...
2012 Jun 15
3
doveadm backup panic
using latest auto build didn't help.
this happens only with a specific account.
# doveadm -o imapc_user=----- at domain.com -o imapc_password=---- backup
-u =----- at domain.com -R imapc:
dsync(---- at domain.com): Panic: pool_data_stack_realloc(): stack frame
changed
dsync(---- at domain.com): Error: Raw backtrace:
/usr/lib/dovecot/libdovecot.so.0(+0x4209a) [0xb762b09a] ->
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...ctx->line_finished = TRUE;
ctx->line_partial = FALSE;
+
+ /* APPLE - urlauth */
+ if (!ctx->urlfetch) /* reduce code deltas */
if (o_stream_send(client->output, ")\r\n", 3) < 0)
return -1;
client->last_output = ioloop_time;
@@ -761,6 +768,8 @@
static int fetch_uid(struct imap_fetch_context *ctx, struct mail *mail,
void *context ATTR_UNUSED)
{
+ /* APPLE - urlauth */
+ if (!ctx->urlfetch) /* reduce code deltas */
str_printfa(ctx->cur_str, "UID %u ", mail->uid);
return 1;
}
diff -Nur dovecot-1.2.11/src/imap/imap-fetch.h dovecot...