https://bugs.kde.org/show_bug.cgi?id=401054
David Faure <fa...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fa...@kde.org --- Comment #3 from David Faure <fa...@kde.org> --- 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 watching all bug changes.