search for: recv_state

Displaying 6 results from an estimated 6 matches for "recv_state".

Did you mean: dev_state
2013 Nov 05
1
Problem migration from cyrus with imapc
...ain M: out state=sync_mails changed=1 dsync(m1234567890): Debug: brain S: in state=recv_mailbox_tree_deletes dsync(m1234567890): Debug: brain S: out state=slave_recv_mailbox changed=1 dsync(m1234567890): Debug: brain M: in state=sync_mails dsync(m1234567890): Debug: brain M: in box 'INBOX' recv_state=mailbox send_state=mailbox dsync(m1234567890): Debug: brain M: out box 'INBOX' recv_state=mailbox send_state=mailbox changed=0 dsync(m1234567890): Debug: brain M: out state=sync_mails changed=0 dsync(m1234567890): Debug: brain S: in state=slave_recv_mailbox dsync(m1234567890): Debug: dove...
2014 Jan 31
1
dsync Error: Mailbox INBOX: Save commit failed: Mailbox was deleted under us
...dovecot 1:2.2.9-1ubuntu1 and am getting this weird issue with dsync if I try to do a "full" sync. Debug output below: dsync(user at example.com): Error: Mailbox INBOX: Save commit failed: Mailbox was deleted under us dsync(user at example.com): Debug: brain M: out box 'INBOX' recv_state=recv_last_common send_state=done changed=1 dsync(user at example.com): Debug: brain M: out state=sync_mails changed=1 dsync(user at example.com): Debug: brain S: in state=sync_mails dsync(user at example.com): Debug: brain S: in box 'INBOX' recv_state=recv_last_common send_state=done dsync...
2020 Feb 06
0
[PATCH] Add support for zstd compression
...ize = ZSTD_DStreamOutSize() * 2; + cbuf = new_array(char, MAX_DATA_COUNT); + dbuf = new_array(char, out_buffer_size); + if (!cbuf || !dbuf) + out_of_memory("recv_zstd_token"); + + zstd_in_buff.src = cbuf; + zstd_out_buff.dst = dbuf; + + decomp_init_done = 1; + } + + do { + switch (recv_state) { + case r_init: + recv_state = r_idle; + rx_token = 0; + break; + + case r_idle: + flag = read_byte(f); + if ((flag & 0xC0) == DEFLATED_DATA) { + n = ((flag & 0x3f) << 8) + read_byte(f); + read_buf(f, cbuf, n); + + zstd_in_buff.size = n; + zstd_in_buff.pos = 0; + + re...
2013 Feb 26
2
(no subject)
...(cyrtest1 at iai.uni-bonn.de): Debug: brain S: in state=master_send_mailbox dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain S: out state=sync_mails changed=1 dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain M: in state=done dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain M: in box 'INBOX' recv_state=mailbox send_state=mailbox dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain M: out box 'INBOX' recv_state=mailbox send_state=mailbox changed=0 dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain M: out state=done changed=0 dsync(cyrtest1 at iai.uni-bonn.de): Debug: brain S: in state=sync_mails...
2014 Mar 28
1
Panic: file ostream-lzma.c: line 147: unreached. Dovecot 2.2.12 with zlib/XZ compression
...15 out of 800) mail accounts: (same error happens wiht or without -f flag) dsync -D -v -o mail_fsync=never mirror -f -R -u user at domain imapc: <snip> dsync(user at domain.com): Debug: brain M: in state=sync_mails dsync(user at domain.com): Debug: brain M: in box 'Privat/Jerry' recv_state=mails send_state=done dsync(user at domain.com): Debug: brain M: import mail uid 55 guid dsync(user at domain.com): Debug: brain M: Import Privat/Jerry: Import mail body for GUID= UID=55 dsync(user at domain.com): Panic: file ostream-lzma.c: line 147: unreached dsync(user at domain.com): Error: Ra...
2015 Apr 14
2
[Bug 11215] New: compression/zlib errors discard the zlib error message
...Z_OK) { > rprintf(FERROR, "inflate returned %d (%d bytes)\n", r, n); > exit_cleanup(RERR_STREAMIO); > } > if (rx_strm.avail_in == 0) > recv_state = r_inflated; > if (n != 0) { > *data = dbuf; > return n; > } > break; The problem is that -3 refers to Z_DATA_ERROR. This error is returned whenever th...