Summary: | Kmail 1.8 does not import mails on local folders from previous versions of Kmail | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Amund Sjaavaag <sjaavaag> |
Component: | kmailcvt | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | alexa, kdebugs, me |
Priority: | NOR | ||
Version: | 1.8 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Amund Sjaavaag
2005-03-16 15:28:47 UTC
~/.Mail was never a KMail path. But KMail does use ~/Mail on existing configurations. What you did should have worked, for all I know. I also think that it would be a good option. For instance, if one wants to go to a different account, or a different computer, and wants to import the e-mails from the previous account/computer. I work on this for kmailcvt, but first kmail must be able to import mails to specific folder and subfolder. CVS commit by dkukawka: - added new feature to dcopAddMessage*(), now we can import messages to existing subfolders or the requested folder is created FEATURE: CCBUGS:101622 M +106 -20 kmkernel.cpp 1.331 M +2 -2 kmkernel.h 1.133 CVS commit by dkukawka: - updated Evolution and Thunderbird filter with new feature. Now we can recreate the existing folder structure. The imported (sub)folders are stored in a folder named e.g. 'Evolution-Import' CCBUGS:101622 FEATURE: M +10 -8 filter_evolution.cxx 1.15 M +5 -6 filter_evolution_v2.cxx 1.13 M +5 -6 filter_thunderbird.cxx 1.14 CVS commit by dkukawka: - added new import filter for import from kmail maildir to local folder Should work with 1.7.x and 1.8.x CCBUGS:101622 FEATURE: A filter_kmail_maildir.cxx 1.1 [GPL (v2+)] A filter_kmail_maildir.hxx 1.1 [GPL (v2+)] M +2 -1 Makefile.am 1.30 M +2 -0 kselfilterpage.cpp 1.14 --- kdepim/kmailcvt/Makefile.am #1.29:1.30 @@ -5,5 +5,6 @@ main.cpp filter_pmail.cxx filter_plain.cxx filter_outlook.cxx \ filter_mbox.cxx filter_evolution.cxx filter_mailapp.cxx \ - filter_evolution_v2.cxx filter_opera.cxx filter_thunderbird.cxx + filter_evolution_v2.cxx filter_opera.cxx filter_thunderbird.cxx \ + filter_kmail_maildir.cxx kmailcvt_LDADD = $(LIB_KFILE) --- kdepim/kmailcvt/kselfilterpage.cpp #1.13:1.14 @@ -32,4 +32,5 @@ #include "filter_opera.hxx" #include "filter_thunderbird.hxx" +#include "filter_kmail_maildir.hxx" #include "kselfilterpage.h" @@ -46,4 +47,5 @@ KSelFilterPage::KSelFilterPage(QWidget * // Patches appreciated. (danimo) + addFilter(new FilterKMail_maildir); addFilter(new FilterEvolution); addFilter(new FilterEvolution_v2); I implemented a importfilter for KMail maildirs. Now you can import local maildir folder and also dimap folder. Please test this from CVS. *** Bug has been marked as fixed ***. *** Bug 103950 has been marked as a duplicate of this bug. *** I got my mails imported via auto-mbox and KMailCVT. In the german newsgroup I got the hint to allow writing to my mailfiles. Maybe this is interesting for you to know (i copied my mails to DVD an back on harddisk as normal files and therefore the rights were setted unusual for the maildir-files!). Thanks for kmail! This is normal if you copy a file to DVD or CD the file is not writeable. And if you copy the file back to your harddisk you need to set them back e.g. with 'chmod 644 * -R' *** Bug 104450 has been marked as a duplicate of this bug. *** *** Bug 104692 has been marked as a duplicate of this bug. *** |