| Summary: | [PATCH] Rebuilding index files breaks "subject threading" for existing messages | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | A. Pfaller <apfaller> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Fix for subject threading problem | ||
|
Description
A. Pfaller
2006-04-19 23:21:28 UTC
Created attachment 15697 [details]
Fix for subject threading problem
Still not fixed in kmail 1.9.3 / KDE 3.5.3. Is there something wrong with my patch? >Still not fixed in kmail 1.9.3 / KDE 3.5.3. Is there something wrong with my patch?
Probably nobody has seen it yet. Write a mail to the kde-pim mailinglist or contact someone at the #kontact IRC channel to get your patch reviewed and committed.
SVN commit 672014 by winterz:
Fix bug "Rebuilding index files breaks "subject threading" for existing messages"
Patch from A. Pfaller. thanks!
BUGS: 125920
M +3 -2 kmkernel.cpp
--- branches/KDE/3.5/kdepim/kmail/kmkernel.cpp #672013:672014
@@ -1464,6 +1464,9 @@
kdDebug(5006) << k_funcinfo << "foldersPath (after transferMail): '" << foldersPath << "'" << endl;
}
+ // moved up here because KMMessage::stripOffPrefixes is used below
+ KMMessage::readConfig();
+
the_undoStack = new UndoStack(20);
the_folderMgr = new KMFolderMgr(foldersPath);
the_imapFolderMgr = new KMFolderMgr( KMFolderImap::cacheLocation(), KMImapDir);
@@ -1479,8 +1482,6 @@
the_popFilterMgr = new KMFilterMgr(true);
the_filterActionDict = new KMFilterActionDict;
- // moved up here because KMMessage::stripOffPrefixes is used below -ta
- KMMessage::readConfig();
initFolders(cfg);
the_acctMgr->readConfig();
the_filterMgr->readConfig();
|