![]() |
2010-01-02
, 15:40
|
Posts: 94 |
Thanked: 28 times |
Joined on Oct 2009
|
#92
|
![]() |
2010-01-06
, 15:47
|
Posts: 6 |
Thanked: 2 times |
Joined on Dec 2009
|
#93
|
![]() |
2010-01-06
, 15:51
|
Posts: 94 |
Thanked: 28 times |
Joined on Oct 2009
|
#94
|
![]() |
2010-01-08
, 23:09
|
|
Posts: 1,648 |
Thanked: 2,122 times |
Joined on Mar 2007
@ UNKLE's Never Never Land
|
#95
|
![]() |
2010-01-08
, 23:15
|
|
Posts: 1,648 |
Thanked: 2,122 times |
Joined on Mar 2007
@ UNKLE's Never Never Land
|
#96
|
![]() |
2010-01-09
, 00:18
|
|
Posts: 1,648 |
Thanked: 2,122 times |
Joined on Mar 2007
@ UNKLE's Never Never Land
|
#97
|
cat inbox.csv > allSMS.csv cat sent.csv >> allSMS.csv
![]() |
2010-01-11
, 06:32
|
Posts: 22 |
Thanked: 6 times |
Joined on Dec 2009
|
#98
|
Can any one tell me the format of the cvs file. I am switching from a Sony Ericsson P1i to the n900. I have an app to export the messages. But I do not know if the cvs file is in the right format.
The Following User Says Thank You to eezo For This Useful Post: | ||
![]() |
2010-01-12
, 19:44
|
Posts: 24 |
Thanked: 11 times |
Joined on Jan 2010
|
#99
|
--- smsimporter.c.orig 2009-12-18 13:41:10.000000000 +0000
+++ smsimporter.c 2010-01-12 16:42:18.000000000 +0000
@@ -113,10 +113,11 @@
}
while (fgets(buf, 512, fd)) {
- char *tmp, *delimiter, *event_type_id, *local_name, *remote_uid, *group_uid, *free_text;
+ char *tmp, *event_type_id, *local_name, *remote_uid, *group_uid, *free_text;
+ char delimiter[2];
const char *remote_name, *remote_ebook_uid;
int year = 0, month = 0, day = 0, hour = 0, min = 0, date_items = 0;
- char text[161];
+ char text[1561]; // up to 10 linked messages
struct tm date;
unsigned int i = 0, skip = 0;
MessageStruct *message;
@@ -237,7 +238,8 @@
if (!number)
continue;
- if (!strcmp (number, remote_uid)) {
+ //if (!strcmp (number, remote_uid)) {
+ if (g_str_has_suffix (number, group_uid)) {
remote_ebook_uid = e_contact_get_const (E_CONTACT (c->data), E_CONTACT_UID);
if (remote_ebook_uid) {
remote_name = e_contact_get_const (E_CONTACT (c->data), E_CONTACT_FULL_NAME);
![]() |
2010-01-12
, 20:16
|
Posts: 186 |
Thanked: 16 times |
Joined on Nov 2009
@ Austin TX
|
#100
|
Thanks