Merged revisions 882933 via svnmerge from

https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise4/kdepim

........
  r882933 | tilladam | 2008-11-11 18:46:12 +0100 (Tue, 11 Nov 2008) | 1 line
  
  Make sure to reload the UID map, otherwise it's stale on the next sync and might have offsets in it that will lead to mail loss, on the next mail sync. Kolab/issue3196.
........

svn path=/trunk/KDE/kdepim/; revision=882949
wilder-work
Volker Krause 18 years ago
parent ddf676d972
commit 283d905bd6
  1. 4
      kmfoldercachedimap.h

@ -267,7 +267,9 @@ class KMFolderCachedImap : public KMFolderMaildir
bool silentUpload() { return mSilentUpload; }
virtual int createIndexFromContents() {
return KMFolderMaildir::createIndexFromContents();
const int result = KMFolderMaildir::createIndexFromContents();
reloadUidMap();
return result;
}
int createIndexFromContentsRecursive();

Loading…
Cancel
Save