Displaying 6 results from an estimated 6 matches for "last_output".
2006 May 02
0
beta7 imap core, no assert
...63746564,
input = 0x3a202573, output = 0x0, namespaces = 0x0, mailbox = 0x2a204259,
keywords = {pool = 0x45200000, keywords = {buffer = 0x42414420,
element_size = 1165128303}}, select_counter = 1914726766,
messages_count = 541674817, recent_count = 1344304225,
last_input = 1731862528, last_output = 1111573536, bad_counter = 1165128303,
parser = 0x7220696e, cmd = {client = 0x20494d41, pool = 0x5020636f,
tag = 0x6d6d616e <Address 0x6d6d616e out of bounds>,
name = 0x643a2000 <Address 0x643a2000 out of bounds>, func = 0,
context = 0x42414420, uid = 0, param_error = 1},...
2006 May 19
4
beta8: core, signal 11
...63746564,
input = 0x3a202573, output = 0x0, namespaces = 0x0, mailbox = 0x2a204259,
keywords = {pool = 0x45200000, keywords = {buffer = 0x42414420,
element_size = 1165128303}}, select_counter = 1914726766,
messages_count = 541674817, recent_count = 1344304225,
last_input = 1731862528, last_output = 1111573536, bad_counter = 1165128303,
parser = 0x7220696e, cmd = {client = 0x20494d41, pool = 0x5020636f,
tag = 0x6d6d616e <Address 0x6d6d616e out of bounds>,
name = 0x643a2000 <Address 0x643a2000 out of bounds>, func = 0,
context = 0x42414420, uid = 0, param_error = 1},...
2005 Aug 24
0
verbose imap logging
...longer than max. input buffer size.
@@ -392,7 +407,7 @@
client->input_pending = TRUE;
if (client->output->closed)
- client_destroy(client);
+ client_destroy(client, "Disconnected (output closed)");
}
int _client_output(void *context)
@@ -404,7 +419,7 @@
client->last_output = ioloop_time;
if ((ret = o_stream_flush(client->output)) < 0) {
- client_destroy(client);
+ client_destroy(client, "Disconnect (output)");
return 1;
}
@@ -449,14 +464,14 @@
o_stream_get_buffer_used_size(my_client->output) > 0 &&
idle_time >...
2007 Jun 18
2
?? Error: child 1064 (imap) killed with signal 4
After noticing a commit to the HG repository,
http://hg.dovecot.org/dovecot-1.0/rev/f88b1e225be5
about,
" We didn't update last_output timestamp with long fetches,
causing Dovecot to idle-disconnect the client."
I chekced out the latest from the DOVECOT-1.0 repo, and built again.
Unfortunately, this problem still exists. Login simply disconnects.
Any help, anyone?
-- Ben
2016 Jul 11
4
2.3.0~alpha0-1~auto+197: Crash when openening a message via IMAP
>From the log:
Jul 11 13:12:42 mproxy dovecot: imap-login: Login: user=<hildeb>, method=PLAIN, rip=141.42.206.36, lip=141.42.206.11, mpid=27254, TLS, session=<TGwoO1o3id+NKs4k>
Jul 11 13:12:44 mproxy dovecot: imap(hildeb)<TGwoO1o3id+NKs4k>: Panic: file imap-client.c: line 854 (client_check_command_hangs): assertion failed: ((io_loop_find_fd_conditions(current_ioloop,
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...gt;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, ")\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;...