Summary: | Distribution lists not converted | ||
---|---|---|---|
Product: | [Frameworks and Libraries] Akonadi | Reporter: | Axel Braun <axel.braun> |
Component: | Migration | Assignee: | Volker Krause <vkrause> |
Status: | RESOLVED WORKSFORME | ||
Severity: | normal | CC: | kdepim-bugs, mark.vanrossum, toby, tokoe, tony |
Priority: | NOR | Keywords: | akonadi-ports-regression |
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Axel Braun
2010-02-11 14:56:27 UTC
*** Bug 226619 has been marked as a duplicate of this bug. *** I wrote this awk script to extract the list that links id-numbers with email addresses. (First export the old addressbook as addressbook.vcf and run 'dos2unix addressbook.vcf' on it) It should be relatively simple to use this as a substitution table in the distribution list entries. awk ' # Records are separated by blank lines. # Each line is one field. # first run dos2unix on addressbook.vcf BEGIN { RS = "" ; FS="\n" } /EMAIL.*UID/ { n=split($0,x,"\n"); # array x[i] for (i = 1; i<= NF ; i++){ if (x[i] ~ /EMAIL/) e=x[i] if (x[i] ~ /UID/) u=x[i] } n=split(e,ee,":"); n=split(u,uu,":"); print ee[2]," ", uu[2] } ' And even if this bug is solved, lists won't work in kde4.4.... (In reply to comment #3) > And even if this bug is solved, lists won't work in kde4.4.... ...which is exactly the case, as I've found out to my cost since Mandriva 2010.1 "upgraded" KDE to 4.4.3. In fact it took a lot of digging around to even find out how to get even my contacts list into kaddressbook (import the ~/.kde4/share/apps/kabc/std.vcf into it), which was totally empty and virtually non-functional. Is kaddressbook being replaced with something that actually WORKS, or are the developers trying to encourage us to use Gnome instead? I really can't understand why a perfectly functional program has been replaced by one that doesn't work. This bug has only been reported for versions older than KDEPIM 4.14 (at most akonadi-1.3). Can anyone tell if this bug still present? If noone confirms this bug for a recent version of akonadi (part of KDE Applications 15.08 or later), it gets closed in about three months. Migration from KMail 4.14.10 to 5.3.2 worked Axel, we use CONFIRMED for bugs that are open. If this is indeed working, please set the status to RESOLVED. Status corrected |