search for: status_uidvalidity

Displaying 7 results from an estimated 7 matches for "status_uidvalidity".

2008 Aug 24
1
Multiple similar crashes (1.1.2: imap crash with SIGSEGV)
...mail-index.c:290 #6 0x080ad21f in mail_index_open (index=0x8a07ec0, flags=49, lock_method=FILE_LOCK_METHOD_FCNTL) at mail-index.c:354 #7 0x080a11f2 in index_storage_mailbox_open (ibox=0x8a078e0) at index-storage.c:383 #8 0x080a0d18 in index_storage_get_status (box=0x8a078e0, items=STATUS_UIDVALIDITY, status_r=0xbfb40fe0) at index-status.c:14 #9 0xb7e99a37 in fts_backend_squat_init (box=0x8a078e0) at fts-backend-squat.c:67 #10 0xb7eaa28c in fts_backend_init (backend_name=0x89e1108 "squat", box=0x8a078e0) at fts-api.c:63 #11 0xb7eab03e in fts_transaction_begin (box=0x8a078e0,...
2020 Feb 07
0
doveadm backup -R -m -s not picking up a new message
...> ]]] > > So, my question is: Why doesn't ?doveadm backup? sync the new message? > (Message number 24118, UID 24289, ESMTP ID 48CjYx6xvmzWp) I've grepped around and found two potentially relevant bits of code: 1. dsync_mailbox_tree_get_selectable() calls mailbox_get_status(?, STATUS_UIDVALIDITY | STATUS_UIDNEXT, ?) without STATUS_HIGHESTMODSEQ. 2. imapc_mailbox_get_selected_status() silently ignores the STATUS_HIGHESTMODSEQ flag. Could either of these be related? (I haven't had time to do a debug build to investigate further myself.) Cheers, Daniel
2003 Jun 03
1
error
hi, I've got the following alert window in mozilla (with dovecot): --------------------------------------- The current command did not succeed. The mail server responded: Error in IMAP command: Too long argument.. --------------------------------------- although there is not any messages in my imap.log file. -- Levente "Si vis pacem para bellum!"
2020 Feb 06
2
doveadm backup -R -m -s not picking up a new message
Good morning, I use ?doveadm backup -R -m foo -s $state? to create a local mirror of an imapc remote folder. When I run that command, wait for it to finish, deliver a new message to the remote folder, and run that command again, the new message does not get downloaded from the remote. I'll attach the rawlog, doveconf, etc at the end. Allow me first to summarize what I've already
2008 Dec 02
2
my_vsnprintf crash on HP-UX
..._init (box=0x4005ca28, flags=MAILBOX_SYNC_FLAG_FIX_INCONSISTENT|MAILBOX_SYNC_FLAG_FULL_READ) at mail-storage.c:516 #17 0x41de4a0:0 in mailbox_sync (box=0x4005ca28, flags=MAILBOX_SYNC_FLAG_FIX_INCONSISTENT|MAILBOX_SYNC_FLAG_FULL_READ, status_items=STATUS_KEYWORDS|STATUS_FIRST_UNSEEN_SEQ|STATUS_UIDVALIDITY|STATUS_UIDNEXT|STATUS_RECENT|STATUS_MESSAGES, status_r=0x7ffff5c0) at mail-storage.c:545 #18 0x40bc200:0 in cmd_select_full (cmd=0x40054298, readonly=false) at cmd-select.c:39 #19 0x40bc640:0 in cmd_select (cmd=0x40054298) at cmd-select.c:88 #20 0x40c9c00:0 in client_command_input (cmd=0x40...
2008 Nov 06
2
Compilation of 1.1.6 fails on HP-UX 11.31
Hi, $ uname -srv HP-UX B.11.31 U $ cc --version cc: HP C/aC++ B3910B A.06.20 [May 13 2008] Compilation fails, output of configure and make are given below. The cause of this is almost certainly that this version of HP-UX does define the QCMD macro in sys/quota.h (checked in the ifdef line 26 dovecot-1.1.6/src/plugins/quota/quota-fs.h) as well as the dqblk struct, but the latter with different
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...MAILBOX_OPEN_READONLY | MAILBOX_OPEN_KEEP_RECENT); + if (cfctx.box == NULL) + return catenate_fetch_cleanup(&cfctx, FALSE, + "can't open mailbox"); + + /* verify uidvalidity */ + if (mailbox_sync(cfctx.box, + MAILBOX_SYNC_FLAG_FULL_READ | MAILBOX_SYNC_FLAG_FAST, + STATUS_UIDVALIDITY, &status) < 0 || + (dec_parts.uidvalidity != NULL && + strtoul(dec_parts.uidvalidity, NULL, 10) != status.uidvalidity)) + return catenate_fetch_cleanup(&cfctx, FALSE, + "uidvalidity mismatch"); + + /* fetch the data as in + UID FETCH dec_parts.uid B...