https://bugs.kde.org/show_bug.cgi?id=401054
David Faure <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from David Faure <[email protected]> --- This error (which comes from the function below in kimap) means that no data came onto the IMAP socket for 30 seconds. I guess this could happen with very slow networks? bool ImapStreamParser::waitForMoreData(bool wait) { if (wait) { if (m_socket->bytesAvailable() > 0 || m_socket->waitForReadyRead(30000)) { m_data.append(m_socket->readAll()); } else { return false; } } return true; } -- You are receiving this mail because: You are the assignee for the bug.
