Package: readpst
Version: 0.6.74-1

Hoi.

The Vcard files readpst creates include a line:

        VERSION: 3.0

The whitespace after the colon is invalid for Vcards. Thunderbird
can not import it. Correct is:

        VERSION:3.0

The attached patch should fix this.


Thanks goes to debianoli at debianforum.de for discovering this bug
and finding the solution to the problem. I only created the patch
and report it.


meillo
diff -r c6b10ac09bb6 src/readpst.c
--- a/src/readpst.c	Sun Jan 12 15:31:30 2020 -0800
+++ b/src/readpst.c	Mon Feb 10 11:56:52 2020 +0100
@@ -2015,7 +2015,7 @@
 
     write_extra_categories(f_output, item);
 
-    fprintf(f_output, "VERSION: 3.0\n");
+    fprintf(f_output, "VERSION:3.0\n");
     fprintf(f_output, "END:VCARD\n\n");
     if (result) free(result);
     DEBUG_RET();

Reply via email to