Displaying 7 results from an estimated 7 matches for "o_stream_uncork".
Did you mean:
o_stream_cork
2018 Dec 06
0
Dovecot 2.3.4 crashing on Solaris 10 - "Panic: output stream is missing error handling"
...n provide the full output if requested)
truss -u "libdovecot" /export/dovecot/bin/doveconf -n
service pop3-login {
inet_listener pop3 {
port = 1110
}
}
submission_max_mail_size = 0
/1: write(1, " s e r v i c e p o p 3".., 95) = 95
/1 at 1: <- libdovecot:o_stream_uncork() = 0xa1918
/1 at 1: -> libdovecot:buffer_free(0xa1a10, 0x0, 0x0, 0x0)
/1 at 1: -> libdovecot:pool_system_free(0xff0fb050, 0x4af10,
0xff0fb030, 0xff059470)
/1 at 1: <- libdovecot:buffer_free() = 0
/1 at 1: -> libdovecot:buffer_free(0xa1a18, 0x1c00, 0xfec47940, 0x0)
/1 at 1: -&...
2007 Feb 21
1
segv when Mailbox is in inconsistent state, please relogin.
...imap/lib10_quota_plugin.so
Reading symbols from
/usr/local/lib/dovecot/imap/lib11_imap_quota_plugin.so...done.
Loaded symbols for /usr/local/lib/dovecot/imap/lib11_imap_quota_plugin.so
Core was generated by `imap [dvtest 10.20.10.63]'.
Program terminated with signal 11, Segmentation fault.
#0 o_stream_uncork (stream=0x0) at ostream.c:60
60 if (stream->closed)
(gdb) bt full
#0 o_stream_uncork (stream=0x0) at ostream.c:60
_stream = <value optimized out>
#1 0x0805ba08 in _client_input (context=0x80df0f0) at client.c:431
client = (struct client *) 0x80df0f0...
2014 Jul 23
1
Maybe error in login-common/login-proxy.c/proxy_client_input
Hi!
It seems that o_stream_cork should be done on proxy->server_output but not on proxy->client_output.
o_stream_cork(proxy->client_output);
ret2 = o_stream_send(proxy->server_output, buf, ret);
o_stream_uncork(proxy->server_output);
2014 Mar 25
0
Disconnected (auth failed, 1 attempts)
...imeout_remove(&client->to_auth_waiting);
client->input_blocked = TRUE;
break;
} else {
if (!client_handle_input(imap_client))
break;
}
}
o_stream_uncork(imap_client->common.output);
client_unref(&client);
}
>>>>>>>>>>>>>>other-dovecot.conf>>>>>>>>>>>>>>>>>>>>>>>>>>>>
..........
protocols = pop3 ima...
2007 Nov 15
1
imap process consuming 100% CPU (Dovecot 1.0.3)
...ient_input(context = 0x2001e318), line 441 in "client.c"
> > (dbx) list
> > 441 ret = client_handle_input(cmd);
> > 442 t_pop();
> > 443 } while (ret && !client->disconnected);
> > 444 o_stream_uncork(client->output);
> > 445 client->handling_input = FALSE;
> > 446
> > 447 if (client->command_pending)
> > 448 client->input_pending = TRUE;
> > 449
> > 450 if (client->output->clo...
2018 Mar 04
1
2.2.34 fails to build on OpenBSD
...s/libssl_iostream_openssl.so: undefined reference to `o_stream_flush'
.libs/libssl_iostream_openssl.so: undefined reference to `buffer_delete'
.libs/libssl_iostream_openssl.so: undefined reference to
`o_stream_set_flush_pending'
.libs/libssl_iostream_openssl.so: undefined reference to `o_stream_uncork'
.libs/libssl_iostream_openssl.so: undefined reference to `i_stream_get_data'
.libs/libssl_iostream_openssl.so: undefined reference to
`o_stream_switch_ioloop'
.libs/libssl_iostream_openssl.so: undefined reference to
`o_stream_get_error'
.libs/libssl_iostream_openssl.so: undefined...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...r, "CATENATE") == 0)
+ return TRUE;
+ args++;
+ }
+ return FALSE;
+}
+
+static void catenate_solicit(struct cmd_append_context *ctx, bool nonsync)
+{
+ if (!nonsync) {
+ o_stream_send(ctx->client->output, "+ OK\r\n", 6);
+ o_stream_flush(ctx->client->output);
+ o_stream_uncork(ctx->client->output);
+ o_stream_cork(ctx->client->output);
+ }
+}
+
+static bool catenate_url_validate(const struct imap_url_parts *parts,
+ const char **error)
+{
+ // user: absent; RFC 3501 "userid"
+ if (parts->user != NULL) {
+ *error = "user ID present; ne...