Summary: | IMAP Message view shows empty list when selected email is deleted or moved outside of KMail | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Arne Schmitz <arne.schmitz> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.9.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Arne Schmitz
2006-06-12 10:43:11 UTC
SVN commit 552126 by burghard: There was an open missing which lead to the famous chain of horror: the parent folder was not open so the job opened it, the messagelist was regenerated, the message became invalid, yada yada. BUGS: 129028 M +1 -0 kmfolderimap.cpp --- branches/KDE/3.5/kdepim/kmail/kmfolderimap.cpp #552125:552126 @@ -1450,6 +1450,7 @@ if ( ok && exists < count() ) { kdDebug(5006) << "KMFolderImap::slotGetMessagesData - server has less messages (" << exists << ") then folder (" << count() << "), so reload" << endl; + open(); reallyGetFolder( QString::null ); (*it).cdata.remove(0, pos); return; Could this "chain of horror" also be the cause of BUG: 126715 ? I ask because I didn't get any crashes since updating after you fixed this bug. |