<html>
<head>
<style type="text/css">
body,p,td,div,span{
        font-size:14px;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
};
body p{
        margin:0px;
}
</style>
</head>
<body>Sorry to bump up an old thread.<div><br></div><div>2.3.11.3 already contains this patch and the error still gets generated. </div><div><br></div><div>Anything else we could try ?<br><br>Scott<br><br>On Wednesday, 19/08/2020 at 11:37 Josef 'Jeff' Sipek wrote:<br><blockquote style="border:0;border-left: 2px solid #22437f; padding:0px; margin:0px; padding-left:5px; margin-left: 5px; ">On Wed, Aug 19, 2020 at 17:03:57 +0200, Alessio Cecchi wrote:<br>
> Hi,<br>
> <br>
> after the upgrade to Dovecot 2.3.11.3, from 2.3.10.1, I see frequently <br>
> these errors from different users:<br>
<br>
It looks like this has been around for a while and you just got unlucky and<br>
started seeing this now.  Here's a quick & dirty patch that should fix this.<br>
If you can try it, let us know how it went.<br>
<br>
Jeff.<br>
<br>
<br>
diff --git a/src/plugins/fts-solr/solr-connection.c b/src/plugins/fts-solr/solr-connection.c<br>
index ae720b5e2870a852c1b6c440939e3c7c0fa72b5c..9d364f93e2cd1b716b9ab61bd39656a6c5b1ea04 100644<br>
--- a/src/plugins/fts-solr/solr-connection.c<br>
+++ b/src/plugins/fts-solr/solr-connection.c<br>
@@ -103,7 +103,7 @@ int solr_connection_init(const struct fts_solr_settings *solr_set,<br>
                http_set.ssl = ssl_client_set;<br>
                http_set.debug = solr_set->debug;<br>
                http_set.rawlog_dir = solr_set->rawlog_dir;<br>
-               solr_http_client = http_client_init(&http_set);<br>
+               solr_http_client = http_client_init_private(&http_set);<br>
        }<br>
<br>
        *conn_r = conn;<br>
diff --git a/src/plugins/fts/fts-parser-tika.c b/src/plugins/fts/fts-parser-tika.c<br>
index a4b8b5c3034f57e22e77caa759c090da6b62f8ba..b8b57a350b9a710d101ac7ccbcc14560d415d905 100644<br>
--- a/src/plugins/fts/fts-parser-tika.c<br>
+++ b/src/plugins/fts/fts-parser-tika.c<br>
@@ -77,7 +77,7 @@ tika_get_http_client_url(struct mail_user *user, struct http_url **http_url_r)<br>
                http_set.request_timeout_msecs = 60*1000;<br>
                http_set.ssl = &ssl_set;<br>
                http_set.debug = user->mail_debug;<br>
-               tika_http_client = http_client_init(&http_set);<br>
+               tika_http_client = http_client_init_private(&http_set);<br>
        }<br>
        *http_url_r = tuser->http_url;<br>
        return 0;</blockquote></div></body></html>