[Akonadi] [Bug 226320] Distribution lists not converted

2016-12-14 Thread Axel Braun
https://bugs.kde.org/show_bug.cgi?id=226320

Axel Braun  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|CONFIRMED   |RESOLVED

--- Comment #8 from Axel Braun  ---
Status corrected

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Akonadi] [Bug 226320] Distribution lists not converted

2016-12-13 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=226320

--- Comment #7 from Christoph Feck  ---
Axel, we use CONFIRMED for bugs that are open. If this is indeed working,
please set the status to RESOLVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Akonadi] [Bug 226320] Distribution lists not converted

2016-12-12 Thread Axel Braun
https://bugs.kde.org/show_bug.cgi?id=226320

Axel Braun  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
 Status|NEEDSINFO   |CONFIRMED

--- Comment #6 from Axel Braun  ---
Migration from KMail 4.14.10 to 5.3.2 worked

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Akonadi] [Bug 226320] Distribution lists not converted

2016-09-24 Thread Denis Kurz via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=226320

Denis Kurz  changed:

   What|Removed |Added

 Status|CONFIRMED   |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #5 from Denis Kurz  ---
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.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[Bug 226320] Distribution lists not converted

2011-03-13 Thread Kevin Frost
https://bugs.kde.org/show_bug.cgi?id=226320


Kevin Frost  changed:

   What|Removed |Added

 CC|ke...@g1bwt.me.uk   |




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2011-03-13 Thread Kevin Frost
https://bugs.kde.org/show_bug.cgi?id=226320


Kevin Frost  changed:

   What|Removed |Added

 CC||ke...@g1bwt.me.uk




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-08-06 Thread tony
https://bugs.kde.org/show_bug.cgi?id=226320


t...@beermad.org.uk changed:

   What|Removed |Added

 CC||t...@beermad.org.uk




--- Comment #4 from2010-08-06 17:55:02 ---
(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.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-05-15 Thread Mark van Rossum
https://bugs.kde.org/show_bug.cgi?id=226320





--- Comment #3 from Mark van Rossum   2010-05-15 
20:21:14 ---
And even if this bug is solved, lists won't work in kde4.4

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-05-15 Thread Toby Dickenson
https://bugs.kde.org/show_bug.cgi?id=226320


Toby Dickenson  changed:

   What|Removed |Added

 CC||t...@tarind.com




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-02-27 Thread Mark van ROssum
https://bugs.kde.org/show_bug.cgi?id=226320





--- Comment #2 from Mark van ROssum   2010-02-28 
00:38:41 ---
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]  
}
'

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-02-12 Thread Tobias Koenig
https://bugs.kde.org/show_bug.cgi?id=226320


Tobias Koenig  changed:

   What|Removed |Added

 CC||mvanr...@inf.ed.ac.uk




--- Comment #1 from Tobias Koenig   2010-02-13 08:09:44 ---
*** Bug 226619 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 226320] Distribution lists not converted

2010-02-12 Thread Thomas McGuire
https://bugs.kde.org/show_bug.cgi?id=226320


Thomas McGuire  changed:

   What|Removed |Added

Summary|kaddressbook: Mailing lists |Distribution lists not
   |not converted   |converted




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs