On Thu, 9 Jan 2020 17:39:27 +0000 Greg Arnold <g...@arnoldassociates.com> wrote: > I have a host that is consistently failing the imaps test - with debug > on, I get "tcp_got_expected: No data in banner"
The root cause is xymonnet ignoring requests by the OpenSSL library to retry reading. I submitted a merge request today: https://salsa.debian.org/debian/xymon/-/merge_requests/1 Previously, xymonnet would only have continued reading from the socket only if `http && (not_eof_or_error || ssl_retry) && not_done`. My patch changes the logic to `((http && not_eof_or_error) || ssl_retry) && not_done`, in order to fix retries for protocols other than HTTPS.