Damir Jelić
Damir Jelić
There is no specific reason, I agree that WAL mode should be turned on. Though that database code lives in [matrix-nio](https://github.com/poljar/matrix-nio/blob/master/nio/store/database.py#L89) nowadays.
The standard [Weechat color codes](https://weechat.org/files/doc/devel/weechat_user.en.html#command_line_colors) work, besides that `*foo*` works for emphasis and backticks for inline code.
You'll have to either connect to a proxy and check the HTTP responses or enable debug logs and provide more info. This could be due to the server not responding...
We have the `debug_buffer`, `debug_category`, and `debug_level` settings under the `matrix.network` config section.
Well the user id might be sensitive if you don't want people to know about it. If an access token exists in the logs, that is sensitive. The keys are...
Yeah, that's correct. We need a better input parser that supports multiple lines. At this point it's unlikely that it'll get added to the Python script but a Rust rewrite...
That's the long poll timeout for a sync request, how long the server can wait before giving you a response if there's no activity. The lag reconnect timeout can be...
Keep-alives no, but a sync request will be always waiting around. Does that happen for the initial login request or a sync or when?
If it actually connects but periodically disconnects it's hitting the max requests setting http://nginx.org/en/docs/http/ngx_http_v2_module.html#http2_max_requests.
In this case nio isn't opening the connection at all, it's the long standing issue of using a single socket for all requests and using keep-alive. Weechat is opening the...