author | alwin <alwin> | 2003-12-08 21:36:26 (UTC) |
---|---|---|
committer | alwin <alwin> | 2003-12-08 21:36:26 (UTC) |
commit | 6ecac17fdf96f2244af762f303639d8e79b453ff (patch) (unidiff) | |
tree | 630709a9847d9c7a9b8fd4fc8af220a566f47bc6 | |
parent | 3597fac5a4f0fb0b5cc5f2606c88177bb608ae63 (diff) | |
download | opie-6ecac17fdf96f2244af762f303639d8e79b453ff.zip opie-6ecac17fdf96f2244af762f303639d8e79b453ff.tar.gz opie-6ecac17fdf96f2244af762f303639d8e79b453ff.tar.bz2 |
synced to last state of sources
-rw-r--r-- | noncore/net/mail/imapwrapper.cpp | 11 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.cpp | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/noncore/net/mail/imapwrapper.cpp b/noncore/net/mail/imapwrapper.cpp index 16f4565..fc12947 100644 --- a/noncore/net/mail/imapwrapper.cpp +++ b/noncore/net/mail/imapwrapper.cpp | |||
@@ -8,33 +8,33 @@ IMAPwrapper::IMAPwrapper( IMAPaccount *a ) | |||
8 | { | 8 | { |
9 | account = a; | 9 | account = a; |
10 | } | 10 | } |
11 | 11 | ||
12 | void imap_progress( size_t current, size_t maximum ) | 12 | void imap_progress( size_t current, size_t maximum ) |
13 | { | 13 | { |
14 | qDebug( "IMAP: %i of %i", current, maximum ); | 14 | qDebug( "IMAP: %i of %i", current, maximum ); |
15 | } | 15 | } |
16 | 16 | ||
17 | void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) | 17 | void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) |
18 | { | 18 | { |
19 | const char *server, *user, *pass, *mb; | 19 | const char *server, *user, *pass, *mb; |
20 | uint16_t port; | 20 | uint16_t port; |
21 | int err = MAILIMAP_NO_ERROR; | 21 | int err = MAILIMAP_NO_ERROR; |
22 | clist *result; | 22 | clist *result; |
23 | clistcell *current; | 23 | clistcell *current; |
24 | mailimap_fetch_att *fetchAtt,*fetchAttFlags; | 24 | mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate; |
25 | mailimap_fetch_type *fetchType; | 25 | mailimap_fetch_type *fetchType; |
26 | mailimap_set *set; | 26 | mailimap_set *set; |
27 | 27 | ||
28 | mb = mailbox.latin1(); | 28 | mb = mailbox.latin1(); |
29 | server = account->getServer().latin1(); | 29 | server = account->getServer().latin1(); |
30 | port = account->getPort().toUInt(); | 30 | port = account->getPort().toUInt(); |
31 | user = account->getUser().latin1(); | 31 | user = account->getUser().latin1(); |
32 | pass = account->getPassword().latin1(); | 32 | pass = account->getPassword().latin1(); |
33 | 33 | ||
34 | mailimap *imap = mailimap_new( 20, &imap_progress ); | 34 | mailimap *imap = mailimap_new( 20, &imap_progress ); |
35 | if ( imap == NULL ) { | 35 | if ( imap == NULL ) { |
36 | qDebug("IMAP Memory error"); | 36 | qDebug("IMAP Memory error"); |
37 | return; | 37 | return; |
38 | } | 38 | } |
39 | 39 | ||
40 | /* connect */ | 40 | /* connect */ |
@@ -68,40 +68,43 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) | |||
68 | 68 | ||
69 | int last = imap->selection_info->exists; | 69 | int last = imap->selection_info->exists; |
70 | if (last == 0) { | 70 | if (last == 0) { |
71 | qDebug("mailbox has no mails"); | 71 | qDebug("mailbox has no mails"); |
72 | err = mailimap_logout( imap ); | 72 | err = mailimap_logout( imap ); |
73 | err = mailimap_close( imap ); | 73 | err = mailimap_close( imap ); |
74 | mailimap_free( imap ); | 74 | mailimap_free( imap ); |
75 | return; | 75 | return; |
76 | } | 76 | } |
77 | 77 | ||
78 | 78 | ||
79 | result = clist_new(); | 79 | result = clist_new(); |
80 | /* the range has to start at 1!!! not with 0!!!! */ | 80 | /* the range has to start at 1!!! not with 0!!!! */ |
81 | set = mailimap_set_new_interval( 1, last ); | 81 | set = mailimap_set_new_interval( 1, last ); |
82 | fetchAtt = mailimap_fetch_att_new_envelope(); | 82 | fetchAtt = mailimap_fetch_att_new_envelope(); |
83 | fetchAttFlags = mailimap_fetch_att_new_flags(); | 83 | fetchAttFlags = mailimap_fetch_att_new_flags(); |
84 | fetchAttDate = mailimap_fetch_att_new_internaldate(); | ||
84 | 85 | ||
85 | //fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); | 86 | //fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); |
86 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); | 87 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); |
87 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAtt); | 88 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAtt); |
88 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); | 89 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); |
90 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttDate); | ||
89 | 91 | ||
90 | err = mailimap_fetch( imap, set, fetchType, &result ); | 92 | err = mailimap_fetch( imap, set, fetchType, &result ); |
91 | mailimap_set_free( set ); | 93 | mailimap_set_free( set ); |
94 | /* cleans up the fetch_att's too! */ | ||
92 | mailimap_fetch_type_free( fetchType ); | 95 | mailimap_fetch_type_free( fetchType ); |
93 | 96 | ||
94 | QString date,subject,from; | 97 | QString date,subject,from; |
95 | 98 | ||
96 | if ( err == MAILIMAP_NO_ERROR ) { | 99 | if ( err == MAILIMAP_NO_ERROR ) { |
97 | current = clist_begin(result); | 100 | current = clist_begin(result); |
98 | mailimap_msg_att * msg_att; | 101 | mailimap_msg_att * msg_att; |
99 | int i = 0; | 102 | int i = 0; |
100 | while ( current != 0 ) { | 103 | while ( current != 0 ) { |
101 | ++i; | 104 | ++i; |
102 | msg_att = (mailimap_msg_att*)current->data; | 105 | msg_att = (mailimap_msg_att*)current->data; |
103 | RecMail*m = parse_list_result(msg_att); | 106 | RecMail*m = parse_list_result(msg_att); |
104 | if (m) { | 107 | if (m) { |
105 | m->setNumber(i); | 108 | m->setNumber(i); |
106 | target.append(m); | 109 | target.append(m); |
107 | } | 110 | } |
@@ -301,32 +304,37 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att) | |||
301 | from+="@"; | 304 | from+="@"; |
302 | } | 305 | } |
303 | if (current_address->host_name) { | 306 | if (current_address->host_name) { |
304 | from+=QString(current_address->host_name); | 307 | from+=QString(current_address->host_name); |
305 | } | 308 | } |
306 | if (named_from && (current_address->mailbox_name || current_address->host_name)) { | 309 | if (named_from && (current_address->mailbox_name || current_address->host_name)) { |
307 | from+=">"; | 310 | from+=">"; |
308 | } | 311 | } |
309 | } | 312 | } |
310 | qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s", | 313 | qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s", |
311 | from.latin1(), | 314 | from.latin1(), |
312 | subject.latin1(),date.latin1()); | 315 | subject.latin1(),date.latin1()); |
313 | m = new RecMail(); | 316 | m = new RecMail(); |
314 | m->setSubject(subject); | 317 | m->setSubject(subject); |
315 | m->setFrom(from); | 318 | m->setFrom(from); |
316 | m->setDate(date); | 319 | m->setDate(date); |
320 | } else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) { | ||
321 | mailimap_date_time*d = item->msg_att_static->internal_date; | ||
322 | QDateTime da(QDate(d->year,d->month,d->day),QTime(d->hour,d->min,d->sec)); | ||
323 | qDebug("%i %i %i - %i %i %i",d->year,d->month,d->day,d->hour,d->min,d->sec); | ||
324 | qDebug(da.toString()); | ||
317 | } else { | 325 | } else { |
318 | qDebug("Another type"); | 326 | qDebug("Another type"); |
319 | } | 327 | } |
320 | } | 328 | } |
321 | /* msg is already deleted */ | 329 | /* msg is already deleted */ |
322 | if (mFlags.testBit(FLAG_DELETED) && m) { | 330 | if (mFlags.testBit(FLAG_DELETED) && m) { |
323 | delete m; | 331 | delete m; |
324 | m = 0; | 332 | m = 0; |
325 | } | 333 | } |
326 | if (m) { | 334 | if (m) { |
327 | m->setFlags(mFlags); | 335 | m->setFlags(mFlags); |
328 | } | 336 | } |
329 | return m; | 337 | return m; |
330 | } | 338 | } |
331 | 339 | ||
332 | QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) | 340 | QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) |
@@ -396,16 +404,17 @@ QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) | |||
396 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->list->first->data; | 404 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->list->first->data; |
397 | 405 | ||
398 | if (item->msg_att_static && item->msg_att_static->rfc822_text) { | 406 | if (item->msg_att_static && item->msg_att_static->rfc822_text) { |
399 | body = item->msg_att_static->rfc822_text; | 407 | body = item->msg_att_static->rfc822_text; |
400 | } | 408 | } |
401 | } else { | 409 | } else { |
402 | qDebug("error fetching text: %s",imap->response); | 410 | qDebug("error fetching text: %s",imap->response); |
403 | } | 411 | } |
404 | 412 | ||
405 | err = mailimap_logout( imap ); | 413 | err = mailimap_logout( imap ); |
406 | err = mailimap_close( imap ); | 414 | err = mailimap_close( imap ); |
407 | mailimap_free( imap ); | 415 | mailimap_free( imap ); |
408 | clist_free(result); | 416 | clist_free(result); |
409 | 417 | ||
410 | return body; | 418 | return body; |
411 | } | 419 | } |
420 | |||
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp index 16f4565..fc12947 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp | |||
@@ -8,33 +8,33 @@ IMAPwrapper::IMAPwrapper( IMAPaccount *a ) | |||
8 | { | 8 | { |
9 | account = a; | 9 | account = a; |
10 | } | 10 | } |
11 | 11 | ||
12 | void imap_progress( size_t current, size_t maximum ) | 12 | void imap_progress( size_t current, size_t maximum ) |
13 | { | 13 | { |
14 | qDebug( "IMAP: %i of %i", current, maximum ); | 14 | qDebug( "IMAP: %i of %i", current, maximum ); |
15 | } | 15 | } |
16 | 16 | ||
17 | void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) | 17 | void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) |
18 | { | 18 | { |
19 | const char *server, *user, *pass, *mb; | 19 | const char *server, *user, *pass, *mb; |
20 | uint16_t port; | 20 | uint16_t port; |
21 | int err = MAILIMAP_NO_ERROR; | 21 | int err = MAILIMAP_NO_ERROR; |
22 | clist *result; | 22 | clist *result; |
23 | clistcell *current; | 23 | clistcell *current; |
24 | mailimap_fetch_att *fetchAtt,*fetchAttFlags; | 24 | mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate; |
25 | mailimap_fetch_type *fetchType; | 25 | mailimap_fetch_type *fetchType; |
26 | mailimap_set *set; | 26 | mailimap_set *set; |
27 | 27 | ||
28 | mb = mailbox.latin1(); | 28 | mb = mailbox.latin1(); |
29 | server = account->getServer().latin1(); | 29 | server = account->getServer().latin1(); |
30 | port = account->getPort().toUInt(); | 30 | port = account->getPort().toUInt(); |
31 | user = account->getUser().latin1(); | 31 | user = account->getUser().latin1(); |
32 | pass = account->getPassword().latin1(); | 32 | pass = account->getPassword().latin1(); |
33 | 33 | ||
34 | mailimap *imap = mailimap_new( 20, &imap_progress ); | 34 | mailimap *imap = mailimap_new( 20, &imap_progress ); |
35 | if ( imap == NULL ) { | 35 | if ( imap == NULL ) { |
36 | qDebug("IMAP Memory error"); | 36 | qDebug("IMAP Memory error"); |
37 | return; | 37 | return; |
38 | } | 38 | } |
39 | 39 | ||
40 | /* connect */ | 40 | /* connect */ |
@@ -68,40 +68,43 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target ) | |||
68 | 68 | ||
69 | int last = imap->selection_info->exists; | 69 | int last = imap->selection_info->exists; |
70 | if (last == 0) { | 70 | if (last == 0) { |
71 | qDebug("mailbox has no mails"); | 71 | qDebug("mailbox has no mails"); |
72 | err = mailimap_logout( imap ); | 72 | err = mailimap_logout( imap ); |
73 | err = mailimap_close( imap ); | 73 | err = mailimap_close( imap ); |
74 | mailimap_free( imap ); | 74 | mailimap_free( imap ); |
75 | return; | 75 | return; |
76 | } | 76 | } |
77 | 77 | ||
78 | 78 | ||
79 | result = clist_new(); | 79 | result = clist_new(); |
80 | /* the range has to start at 1!!! not with 0!!!! */ | 80 | /* the range has to start at 1!!! not with 0!!!! */ |
81 | set = mailimap_set_new_interval( 1, last ); | 81 | set = mailimap_set_new_interval( 1, last ); |
82 | fetchAtt = mailimap_fetch_att_new_envelope(); | 82 | fetchAtt = mailimap_fetch_att_new_envelope(); |
83 | fetchAttFlags = mailimap_fetch_att_new_flags(); | 83 | fetchAttFlags = mailimap_fetch_att_new_flags(); |
84 | fetchAttDate = mailimap_fetch_att_new_internaldate(); | ||
84 | 85 | ||
85 | //fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); | 86 | //fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); |
86 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); | 87 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); |
87 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAtt); | 88 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAtt); |
88 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); | 89 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); |
90 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttDate); | ||
89 | 91 | ||
90 | err = mailimap_fetch( imap, set, fetchType, &result ); | 92 | err = mailimap_fetch( imap, set, fetchType, &result ); |
91 | mailimap_set_free( set ); | 93 | mailimap_set_free( set ); |
94 | /* cleans up the fetch_att's too! */ | ||
92 | mailimap_fetch_type_free( fetchType ); | 95 | mailimap_fetch_type_free( fetchType ); |
93 | 96 | ||
94 | QString date,subject,from; | 97 | QString date,subject,from; |
95 | 98 | ||
96 | if ( err == MAILIMAP_NO_ERROR ) { | 99 | if ( err == MAILIMAP_NO_ERROR ) { |
97 | current = clist_begin(result); | 100 | current = clist_begin(result); |
98 | mailimap_msg_att * msg_att; | 101 | mailimap_msg_att * msg_att; |
99 | int i = 0; | 102 | int i = 0; |
100 | while ( current != 0 ) { | 103 | while ( current != 0 ) { |
101 | ++i; | 104 | ++i; |
102 | msg_att = (mailimap_msg_att*)current->data; | 105 | msg_att = (mailimap_msg_att*)current->data; |
103 | RecMail*m = parse_list_result(msg_att); | 106 | RecMail*m = parse_list_result(msg_att); |
104 | if (m) { | 107 | if (m) { |
105 | m->setNumber(i); | 108 | m->setNumber(i); |
106 | target.append(m); | 109 | target.append(m); |
107 | } | 110 | } |
@@ -301,32 +304,37 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att) | |||
301 | from+="@"; | 304 | from+="@"; |
302 | } | 305 | } |
303 | if (current_address->host_name) { | 306 | if (current_address->host_name) { |
304 | from+=QString(current_address->host_name); | 307 | from+=QString(current_address->host_name); |
305 | } | 308 | } |
306 | if (named_from && (current_address->mailbox_name || current_address->host_name)) { | 309 | if (named_from && (current_address->mailbox_name || current_address->host_name)) { |
307 | from+=">"; | 310 | from+=">"; |
308 | } | 311 | } |
309 | } | 312 | } |
310 | qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s", | 313 | qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s", |
311 | from.latin1(), | 314 | from.latin1(), |
312 | subject.latin1(),date.latin1()); | 315 | subject.latin1(),date.latin1()); |
313 | m = new RecMail(); | 316 | m = new RecMail(); |
314 | m->setSubject(subject); | 317 | m->setSubject(subject); |
315 | m->setFrom(from); | 318 | m->setFrom(from); |
316 | m->setDate(date); | 319 | m->setDate(date); |
320 | } else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) { | ||
321 | mailimap_date_time*d = item->msg_att_static->internal_date; | ||
322 | QDateTime da(QDate(d->year,d->month,d->day),QTime(d->hour,d->min,d->sec)); | ||
323 | qDebug("%i %i %i - %i %i %i",d->year,d->month,d->day,d->hour,d->min,d->sec); | ||
324 | qDebug(da.toString()); | ||
317 | } else { | 325 | } else { |
318 | qDebug("Another type"); | 326 | qDebug("Another type"); |
319 | } | 327 | } |
320 | } | 328 | } |
321 | /* msg is already deleted */ | 329 | /* msg is already deleted */ |
322 | if (mFlags.testBit(FLAG_DELETED) && m) { | 330 | if (mFlags.testBit(FLAG_DELETED) && m) { |
323 | delete m; | 331 | delete m; |
324 | m = 0; | 332 | m = 0; |
325 | } | 333 | } |
326 | if (m) { | 334 | if (m) { |
327 | m->setFlags(mFlags); | 335 | m->setFlags(mFlags); |
328 | } | 336 | } |
329 | return m; | 337 | return m; |
330 | } | 338 | } |
331 | 339 | ||
332 | QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) | 340 | QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) |
@@ -396,16 +404,17 @@ QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail) | |||
396 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->list->first->data; | 404 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->list->first->data; |
397 | 405 | ||
398 | if (item->msg_att_static && item->msg_att_static->rfc822_text) { | 406 | if (item->msg_att_static && item->msg_att_static->rfc822_text) { |
399 | body = item->msg_att_static->rfc822_text; | 407 | body = item->msg_att_static->rfc822_text; |
400 | } | 408 | } |
401 | } else { | 409 | } else { |
402 | qDebug("error fetching text: %s",imap->response); | 410 | qDebug("error fetching text: %s",imap->response); |
403 | } | 411 | } |
404 | 412 | ||
405 | err = mailimap_logout( imap ); | 413 | err = mailimap_logout( imap ); |
406 | err = mailimap_close( imap ); | 414 | err = mailimap_close( imap ); |
407 | mailimap_free( imap ); | 415 | mailimap_free( imap ); |
408 | clist_free(result); | 416 | clist_free(result); |
409 | 417 | ||
410 | return body; | 418 | return body; |
411 | } | 419 | } |
420 | |||