-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.cpp | 63 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.h | 4 |
2 files changed, 38 insertions, 29 deletions
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp index 23c678b..98634a3 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp | |||
@@ -1,44 +1,62 @@ | |||
1 | #include <stdlib.h> | 1 | #include <stdlib.h> |
2 | #include <libetpan/libetpan.h> | 2 | #include <libetpan/libetpan.h> |
3 | #include <qpe/global.h> | 3 | #include <qpe/global.h> |
4 | 4 | ||
5 | #include "imapwrapper.h" | 5 | #include "imapwrapper.h" |
6 | #include "mailtypes.h" | 6 | #include "mailtypes.h" |
7 | #include "logindialog.h" | 7 | #include "logindialog.h" |
8 | 8 | ||
9 | IMAPwrapper::IMAPwrapper( IMAPaccount *a ) | 9 | IMAPwrapper::IMAPwrapper( IMAPaccount *a ) |
10 | : AbstractMail() | 10 | : AbstractMail() |
11 | { | 11 | { |
12 | account = a; | 12 | account = a; |
13 | m_imap = 0; | 13 | m_imap = 0; |
14 | m_Lastmbox = ""; | ||
14 | } | 15 | } |
15 | 16 | ||
16 | IMAPwrapper::~IMAPwrapper() | 17 | IMAPwrapper::~IMAPwrapper() |
17 | { | 18 | { |
18 | logout(); | 19 | logout(); |
19 | } | 20 | } |
20 | 21 | ||
22 | /* to avoid to often select statements in loops etc. | ||
23 | we trust that we are logged in and connection is established!*/ | ||
24 | int IMAPwrapper::selectMbox(const QString&mbox) | ||
25 | { | ||
26 | if (mbox == m_Lastmbox) { | ||
27 | return MAILIMAP_NO_ERROR; | ||
28 | } | ||
29 | int err = mailimap_select( m_imap, (char*)mbox.latin1()); | ||
30 | if ( err != MAILIMAP_NO_ERROR ) { | ||
31 | qDebug("error selecting mailbox: %s",m_imap->imap_response); | ||
32 | m_Lastmbox = ""; | ||
33 | return err; | ||
34 | } | ||
35 | m_Lastmbox = mbox; | ||
36 | return err; | ||
37 | } | ||
38 | |||
21 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) | 39 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) |
22 | { | 40 | { |
23 | qDebug( "IMAP: %i of %i", current, maximum ); | 41 | qDebug( "IMAP: %i of %i", current, maximum ); |
24 | } | 42 | } |
25 | 43 | ||
26 | void IMAPwrapper::login() | 44 | void IMAPwrapper::login() |
27 | { | 45 | { |
28 | const char *server, *user, *pass; | 46 | const char *server, *user, *pass; |
29 | uint16_t port; | 47 | uint16_t port; |
30 | int err = MAILIMAP_NO_ERROR; | 48 | int err = MAILIMAP_NO_ERROR; |
31 | 49 | ||
32 | if (account->getOffline()) return; | 50 | if (account->getOffline()) return; |
33 | /* we are connected this moment */ | 51 | /* we are connected this moment */ |
34 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ | 52 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ |
35 | if (m_imap) { | 53 | if (m_imap) { |
36 | err = mailimap_noop(m_imap); | 54 | err = mailimap_noop(m_imap); |
37 | if (err!=MAILIMAP_NO_ERROR) { | 55 | if (err!=MAILIMAP_NO_ERROR) { |
38 | logout(); | 56 | logout(); |
39 | } else { | 57 | } else { |
40 | mailstream_flush(m_imap->imap_stream); | 58 | mailstream_flush(m_imap->imap_stream); |
41 | return; | 59 | return; |
42 | } | 60 | } |
43 | } | 61 | } |
44 | server = account->getServer().latin1(); | 62 | server = account->getServer().latin1(); |
@@ -81,69 +99,66 @@ void IMAPwrapper::login() | |||
81 | Global::statusMessage(tr("error connecting imap server: %1").arg(failure)); | 99 | Global::statusMessage(tr("error connecting imap server: %1").arg(failure)); |
82 | mailimap_free( m_imap ); | 100 | mailimap_free( m_imap ); |
83 | m_imap = 0; | 101 | m_imap = 0; |
84 | return; | 102 | return; |
85 | } | 103 | } |
86 | 104 | ||
87 | /* login */ | 105 | /* login */ |
88 | err = mailimap_login_simple( m_imap, (char*)user, (char*)pass ); | 106 | err = mailimap_login_simple( m_imap, (char*)user, (char*)pass ); |
89 | if ( err != MAILIMAP_NO_ERROR ) { | 107 | if ( err != MAILIMAP_NO_ERROR ) { |
90 | Global::statusMessage(tr("error logging in imap server: %1").arg(m_imap->imap_response)); | 108 | Global::statusMessage(tr("error logging in imap server: %1").arg(m_imap->imap_response)); |
91 | err = mailimap_close( m_imap ); | 109 | err = mailimap_close( m_imap ); |
92 | mailimap_free( m_imap ); | 110 | mailimap_free( m_imap ); |
93 | m_imap = 0; | 111 | m_imap = 0; |
94 | } | 112 | } |
95 | } | 113 | } |
96 | 114 | ||
97 | void IMAPwrapper::logout() | 115 | void IMAPwrapper::logout() |
98 | { | 116 | { |
99 | int err = MAILIMAP_NO_ERROR; | 117 | int err = MAILIMAP_NO_ERROR; |
100 | if (!m_imap) return; | 118 | if (!m_imap) return; |
101 | err = mailimap_logout( m_imap ); | 119 | err = mailimap_logout( m_imap ); |
102 | err = mailimap_close( m_imap ); | 120 | err = mailimap_close( m_imap ); |
103 | mailimap_free( m_imap ); | 121 | mailimap_free( m_imap ); |
104 | m_imap = 0; | 122 | m_imap = 0; |
123 | m_Lastmbox = ""; | ||
105 | } | 124 | } |
106 | 125 | ||
107 | void IMAPwrapper::listMessages(const QString&mailbox,QList<RecMail> &target ) | 126 | void IMAPwrapper::listMessages(const QString&mailbox,QList<RecMail> &target ) |
108 | { | 127 | { |
109 | const char *mb = 0; | ||
110 | int err = MAILIMAP_NO_ERROR; | 128 | int err = MAILIMAP_NO_ERROR; |
111 | clist *result = 0; | 129 | clist *result = 0; |
112 | clistcell *current; | 130 | clistcell *current; |
113 | // mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate,*fetchAttSize; | ||
114 | mailimap_fetch_type *fetchType = 0; | 131 | mailimap_fetch_type *fetchType = 0; |
115 | mailimap_set *set = 0; | 132 | mailimap_set *set = 0; |
116 | 133 | ||
117 | mb = mailbox.latin1(); | ||
118 | login(); | 134 | login(); |
119 | if (!m_imap) { | 135 | if (!m_imap) { |
120 | return; | 136 | return; |
121 | } | 137 | } |
122 | /* select mailbox READONLY for operations */ | 138 | /* select mailbox READONLY for operations */ |
123 | err = mailimap_examine( m_imap, (char*)mb); | 139 | err = selectMbox(mailbox); |
124 | if ( err != MAILIMAP_NO_ERROR ) { | 140 | if ( err != MAILIMAP_NO_ERROR ) { |
125 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); | ||
126 | return; | 141 | return; |
127 | } | 142 | } |
128 | 143 | ||
129 | int last = m_imap->imap_selection_info->sel_exists; | 144 | int last = m_imap->imap_selection_info->sel_exists; |
130 | 145 | ||
131 | if (last == 0) { | 146 | if (last == 0) { |
132 | Global::statusMessage(tr("Mailbox has no mails")); | 147 | Global::statusMessage(tr("Mailbox has no mails")); |
133 | return; | 148 | return; |
134 | } else { | 149 | } else { |
135 | Global::statusMessage(tr("Mailbox has %1 mails").arg(last)); | 150 | Global::statusMessage(tr("Mailbox has %1 mails").arg(last)); |
136 | } | 151 | } |
137 | 152 | ||
138 | /* the range has to start at 1!!! not with 0!!!! */ | 153 | /* the range has to start at 1!!! not with 0!!!! */ |
139 | set = mailimap_set_new_interval( 1, last ); | 154 | set = mailimap_set_new_interval( 1, last ); |
140 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); | 155 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); |
141 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_envelope()); | 156 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_envelope()); |
142 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_flags()); | 157 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_flags()); |
143 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_internaldate()); | 158 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_internaldate()); |
144 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_rfc822_size()); | 159 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_rfc822_size()); |
145 | 160 | ||
146 | err = mailimap_fetch( m_imap, set, fetchType, &result ); | 161 | err = mailimap_fetch( m_imap, set, fetchType, &result ); |
147 | mailimap_set_free( set ); | 162 | mailimap_set_free( set ); |
148 | mailimap_fetch_type_free( fetchType ); | 163 | mailimap_fetch_type_free( fetchType ); |
149 | 164 | ||
@@ -368,52 +383,50 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att) | |||
368 | m->setFlags(mFlags); | 383 | m->setFlags(mFlags); |
369 | m->setMsgsize(size); | 384 | m->setMsgsize(size); |
370 | } | 385 | } |
371 | return m; | 386 | return m; |
372 | } | 387 | } |
373 | 388 | ||
374 | RecBody IMAPwrapper::fetchBody(const RecMail&mail) | 389 | RecBody IMAPwrapper::fetchBody(const RecMail&mail) |
375 | { | 390 | { |
376 | RecBody body; | 391 | RecBody body; |
377 | const char *mb; | 392 | const char *mb; |
378 | int err = MAILIMAP_NO_ERROR; | 393 | int err = MAILIMAP_NO_ERROR; |
379 | clist *result = 0; | 394 | clist *result = 0; |
380 | clistcell *current; | 395 | clistcell *current; |
381 | mailimap_fetch_att *fetchAtt = 0; | 396 | mailimap_fetch_att *fetchAtt = 0; |
382 | mailimap_fetch_type *fetchType = 0; | 397 | mailimap_fetch_type *fetchType = 0; |
383 | mailimap_set *set = 0; | 398 | mailimap_set *set = 0; |
384 | mailimap_body*body_desc = 0; | 399 | mailimap_body*body_desc = 0; |
385 | 400 | ||
386 | mb = mail.getMbox().latin1(); | 401 | mb = mail.getMbox().latin1(); |
387 | 402 | ||
388 | login(); | 403 | login(); |
389 | if (!m_imap) { | 404 | if (!m_imap) { |
390 | return body; | 405 | return body; |
391 | } | 406 | } |
392 | 407 | err = selectMbox(mail.getMbox()); | |
393 | err = mailimap_select( m_imap, (char*)mb); | ||
394 | if ( err != MAILIMAP_NO_ERROR ) { | 408 | if ( err != MAILIMAP_NO_ERROR ) { |
395 | qDebug("error selecting mailbox: %s",m_imap->imap_response); | ||
396 | return body; | 409 | return body; |
397 | } | 410 | } |
398 | 411 | ||
399 | /* the range has to start at 1!!! not with 0!!!! */ | 412 | /* the range has to start at 1!!! not with 0!!!! */ |
400 | set = mailimap_set_new_interval( mail.getNumber(),mail.getNumber() ); | 413 | set = mailimap_set_new_interval( mail.getNumber(),mail.getNumber() ); |
401 | fetchAtt = mailimap_fetch_att_new_bodystructure(); | 414 | fetchAtt = mailimap_fetch_att_new_bodystructure(); |
402 | fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); | 415 | fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); |
403 | err = mailimap_fetch( m_imap, set, fetchType, &result ); | 416 | err = mailimap_fetch( m_imap, set, fetchType, &result ); |
404 | mailimap_set_free( set ); | 417 | mailimap_set_free( set ); |
405 | mailimap_fetch_type_free( fetchType ); | 418 | mailimap_fetch_type_free( fetchType ); |
406 | 419 | ||
407 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { | 420 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { |
408 | mailimap_msg_att * msg_att; | 421 | mailimap_msg_att * msg_att; |
409 | msg_att = (mailimap_msg_att*)current->data; | 422 | msg_att = (mailimap_msg_att*)current->data; |
410 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->att_list->first->data; | 423 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->att_list->first->data; |
411 | QValueList<int> path; | 424 | QValueList<int> path; |
412 | body_desc = item->att_data.att_static->att_data.att_body; | 425 | body_desc = item->att_data.att_static->att_data.att_body; |
413 | traverseBody(mail,body_desc,body,0,path); | 426 | traverseBody(mail,body_desc,body,0,path); |
414 | } else { | 427 | } else { |
415 | qDebug("error fetching body: %s",m_imap->imap_response); | 428 | qDebug("error fetching body: %s",m_imap->imap_response); |
416 | } | 429 | } |
417 | if (result) mailimap_fetch_list_free(result); | 430 | if (result) mailimap_fetch_list_free(result); |
418 | return body; | 431 | return body; |
419 | } | 432 | } |
@@ -441,67 +454,64 @@ QStringList IMAPwrapper::address_list_to_stringlist(clist*list) | |||
441 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { | 454 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { |
442 | from+="<"; | 455 | from+="<"; |
443 | } | 456 | } |
444 | if (current_address->ad_mailbox_name) { | 457 | if (current_address->ad_mailbox_name) { |
445 | from+=QString(current_address->ad_mailbox_name); | 458 | from+=QString(current_address->ad_mailbox_name); |
446 | from+="@"; | 459 | from+="@"; |
447 | } | 460 | } |
448 | if (current_address->ad_host_name) { | 461 | if (current_address->ad_host_name) { |
449 | from+=QString(current_address->ad_host_name); | 462 | from+=QString(current_address->ad_host_name); |
450 | } | 463 | } |
451 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { | 464 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { |
452 | from+=">"; | 465 | from+=">"; |
453 | } | 466 | } |
454 | l.append(QString(from)); | 467 | l.append(QString(from)); |
455 | if (++count > 99) { | 468 | if (++count > 99) { |
456 | break; | 469 | break; |
457 | } | 470 | } |
458 | } | 471 | } |
459 | return l; | 472 | return l; |
460 | } | 473 | } |
461 | 474 | ||
462 | encodedString*IMAPwrapper::fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call) | 475 | encodedString*IMAPwrapper::fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call) |
463 | { | 476 | { |
464 | encodedString*res=new encodedString; | 477 | encodedString*res=new encodedString; |
465 | const char*mb; | ||
466 | int err; | 478 | int err; |
467 | mailimap_fetch_type *fetchType; | 479 | mailimap_fetch_type *fetchType; |
468 | mailimap_set *set; | 480 | mailimap_set *set; |
469 | clistcell*current,*cur; | 481 | clistcell*current,*cur; |
470 | mailimap_section_part * section_part = 0; | 482 | mailimap_section_part * section_part = 0; |
471 | mailimap_section_spec * section_spec = 0; | 483 | mailimap_section_spec * section_spec = 0; |
472 | mailimap_section * section = 0; | 484 | mailimap_section * section = 0; |
473 | mailimap_fetch_att * fetch_att = 0; | 485 | mailimap_fetch_att * fetch_att = 0; |
474 | 486 | ||
475 | login(); | 487 | login(); |
476 | if (!m_imap) { | 488 | if (!m_imap) { |
477 | return res; | 489 | return res; |
478 | } | 490 | } |
479 | if (!internal_call) { | 491 | if (!internal_call) { |
480 | mb = mail.getMbox().latin1(); | 492 | err = selectMbox(mail.getMbox()); |
481 | err = mailimap_select( m_imap, (char*)mb); | ||
482 | if ( err != MAILIMAP_NO_ERROR ) { | 493 | if ( err != MAILIMAP_NO_ERROR ) { |
483 | qDebug("error selecting mailbox: %s",m_imap->imap_response); | ||
484 | return res; | 494 | return res; |
485 | } | 495 | } |
486 | } | 496 | } |
487 | set = mailimap_set_new_single(mail.getNumber()); | 497 | set = mailimap_set_new_single(mail.getNumber()); |
488 | 498 | ||
489 | clist*id_list = 0; | 499 | clist*id_list = 0; |
490 | 500 | ||
491 | /* if path == empty then its a request for the whole rfc822 mail and generates | 501 | /* if path == empty then its a request for the whole rfc822 mail and generates |
492 | a "fetch <id> (body[])" statement on imap server */ | 502 | a "fetch <id> (body[])" statement on imap server */ |
493 | if (path.count()>0 ) { | 503 | if (path.count()>0 ) { |
494 | id_list = clist_new(); | 504 | id_list = clist_new(); |
495 | for (unsigned j=0; j < path.count();++j) { | 505 | for (unsigned j=0; j < path.count();++j) { |
496 | uint32_t * p_id = (uint32_t *)malloc(sizeof(*p_id)); | 506 | uint32_t * p_id = (uint32_t *)malloc(sizeof(*p_id)); |
497 | *p_id = path[j]; | 507 | *p_id = path[j]; |
498 | clist_append(id_list,p_id); | 508 | clist_append(id_list,p_id); |
499 | } | 509 | } |
500 | section_part = mailimap_section_part_new(id_list); | 510 | section_part = mailimap_section_part_new(id_list); |
501 | section_spec = mailimap_section_spec_new(MAILIMAP_SECTION_SPEC_SECTION_PART, NULL, section_part, NULL); | 511 | section_spec = mailimap_section_spec_new(MAILIMAP_SECTION_SPEC_SECTION_PART, NULL, section_part, NULL); |
502 | } | 512 | } |
503 | 513 | ||
504 | section = mailimap_section_new(section_spec); | 514 | section = mailimap_section_new(section_spec); |
505 | fetch_att = mailimap_fetch_att_new_body_section(section); | 515 | fetch_att = mailimap_fetch_att_new_body_section(section); |
506 | fetchType = mailimap_fetch_type_new_fetch_att(fetch_att); | 516 | fetchType = mailimap_fetch_type_new_fetch_att(fetch_att); |
507 | 517 | ||
@@ -752,89 +762,85 @@ void IMAPwrapper::fillBodyFields(RecPart&target_part,mailimap_body_fields*which) | |||
752 | if (enc->enc_value) { | 762 | if (enc->enc_value) { |
753 | char*t=enc->enc_value; | 763 | char*t=enc->enc_value; |
754 | encoding=QString(enc->enc_value); | 764 | encoding=QString(enc->enc_value); |
755 | enc->enc_value=0L; | 765 | enc->enc_value=0L; |
756 | free(t); | 766 | free(t); |
757 | } | 767 | } |
758 | } | 768 | } |
759 | if (which->bd_description) { | 769 | if (which->bd_description) { |
760 | target_part.setDescription(QString(which->bd_description)); | 770 | target_part.setDescription(QString(which->bd_description)); |
761 | } | 771 | } |
762 | target_part.setEncoding(encoding); | 772 | target_part.setEncoding(encoding); |
763 | target_part.setSize(which->bd_size); | 773 | target_part.setSize(which->bd_size); |
764 | } | 774 | } |
765 | 775 | ||
766 | void IMAPwrapper::deleteMail(const RecMail&mail) | 776 | void IMAPwrapper::deleteMail(const RecMail&mail) |
767 | { | 777 | { |
768 | mailimap_flag_list*flist; | 778 | mailimap_flag_list*flist; |
769 | mailimap_set *set; | 779 | mailimap_set *set; |
770 | mailimap_store_att_flags * store_flags; | 780 | mailimap_store_att_flags * store_flags; |
771 | int err; | 781 | int err; |
772 | login(); | 782 | login(); |
773 | if (!m_imap) { | 783 | if (!m_imap) { |
774 | return; | 784 | return; |
775 | } | 785 | } |
776 | const char *mb = mail.getMbox().latin1(); | 786 | err = selectMbox(mail.getMbox()); |
777 | err = mailimap_select( m_imap, (char*)mb); | ||
778 | if ( err != MAILIMAP_NO_ERROR ) { | 787 | if ( err != MAILIMAP_NO_ERROR ) { |
779 | qDebug("error selecting mailbox for delete: %s",m_imap->imap_response); | ||
780 | return; | 788 | return; |
781 | } | 789 | } |
782 | flist = mailimap_flag_list_new_empty(); | 790 | flist = mailimap_flag_list_new_empty(); |
783 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); | 791 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); |
784 | store_flags = mailimap_store_att_flags_new_set_flags(flist); | 792 | store_flags = mailimap_store_att_flags_new_set_flags(flist); |
785 | set = mailimap_set_new_single(mail.getNumber()); | 793 | set = mailimap_set_new_single(mail.getNumber()); |
786 | err = mailimap_store(m_imap,set,store_flags); | 794 | err = mailimap_store(m_imap,set,store_flags); |
787 | mailimap_set_free( set ); | 795 | mailimap_set_free( set ); |
788 | mailimap_store_att_flags_free(store_flags); | 796 | mailimap_store_att_flags_free(store_flags); |
789 | 797 | ||
790 | if (err != MAILIMAP_NO_ERROR) { | 798 | if (err != MAILIMAP_NO_ERROR) { |
791 | qDebug("error deleting mail: %s",m_imap->imap_response); | 799 | qDebug("error deleting mail: %s",m_imap->imap_response); |
792 | return; | 800 | return; |
793 | } | 801 | } |
794 | qDebug("deleting mail: %s",m_imap->imap_response); | 802 | qDebug("deleting mail: %s",m_imap->imap_response); |
795 | /* should we realy do that at this moment? */ | 803 | /* should we realy do that at this moment? */ |
796 | err = mailimap_expunge(m_imap); | 804 | err = mailimap_expunge(m_imap); |
797 | if (err != MAILIMAP_NO_ERROR) { | 805 | if (err != MAILIMAP_NO_ERROR) { |
798 | qDebug("error deleting mail: %s",m_imap->imap_response); | 806 | qDebug("error deleting mail: %s",m_imap->imap_response); |
799 | } | 807 | } |
800 | qDebug("Delete successfull %s",m_imap->imap_response); | 808 | qDebug("Delete successfull %s",m_imap->imap_response); |
801 | } | 809 | } |
802 | 810 | ||
803 | void IMAPwrapper::answeredMail(const RecMail&mail) | 811 | void IMAPwrapper::answeredMail(const RecMail&mail) |
804 | { | 812 | { |
805 | mailimap_flag_list*flist; | 813 | mailimap_flag_list*flist; |
806 | mailimap_set *set; | 814 | mailimap_set *set; |
807 | mailimap_store_att_flags * store_flags; | 815 | mailimap_store_att_flags * store_flags; |
808 | int err; | 816 | int err; |
809 | login(); | 817 | login(); |
810 | if (!m_imap) { | 818 | if (!m_imap) { |
811 | return; | 819 | return; |
812 | } | 820 | } |
813 | const char *mb = mail.getMbox().latin1(); | 821 | err = selectMbox(mail.getMbox()); |
814 | err = mailimap_select( m_imap, (char*)mb); | ||
815 | if ( err != MAILIMAP_NO_ERROR ) { | 822 | if ( err != MAILIMAP_NO_ERROR ) { |
816 | qDebug("error selecting mailbox for mark: %s",m_imap->imap_response); | ||
817 | return; | 823 | return; |
818 | } | 824 | } |
819 | flist = mailimap_flag_list_new_empty(); | 825 | flist = mailimap_flag_list_new_empty(); |
820 | mailimap_flag_list_add(flist,mailimap_flag_new_answered()); | 826 | mailimap_flag_list_add(flist,mailimap_flag_new_answered()); |
821 | store_flags = mailimap_store_att_flags_new_add_flags(flist); | 827 | store_flags = mailimap_store_att_flags_new_add_flags(flist); |
822 | set = mailimap_set_new_single(mail.getNumber()); | 828 | set = mailimap_set_new_single(mail.getNumber()); |
823 | err = mailimap_store(m_imap,set,store_flags); | 829 | err = mailimap_store(m_imap,set,store_flags); |
824 | mailimap_set_free( set ); | 830 | mailimap_set_free( set ); |
825 | mailimap_store_att_flags_free(store_flags); | 831 | mailimap_store_att_flags_free(store_flags); |
826 | 832 | ||
827 | if (err != MAILIMAP_NO_ERROR) { | 833 | if (err != MAILIMAP_NO_ERROR) { |
828 | qDebug("error marking mail: %s",m_imap->imap_response); | 834 | qDebug("error marking mail: %s",m_imap->imap_response); |
829 | return; | 835 | return; |
830 | } | 836 | } |
831 | } | 837 | } |
832 | 838 | ||
833 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call,const QString&enc) | 839 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call,const QString&enc) |
834 | { | 840 | { |
835 | QString body(""); | 841 | QString body(""); |
836 | encodedString*res = fetchRawPart(mail,path,internal_call); | 842 | encodedString*res = fetchRawPart(mail,path,internal_call); |
837 | encodedString*r = decode_String(res,enc); | 843 | encodedString*r = decode_String(res,enc); |
838 | delete res; | 844 | delete res; |
839 | if (r) { | 845 | if (r) { |
840 | if (r->Length()>0) { | 846 | if (r->Length()>0) { |
@@ -851,53 +857,53 @@ QString IMAPwrapper::fetchTextPart(const RecMail&mail,const RecPart&part) | |||
851 | } | 857 | } |
852 | 858 | ||
853 | encodedString* IMAPwrapper::fetchDecodedPart(const RecMail&mail,const RecPart&part) | 859 | encodedString* IMAPwrapper::fetchDecodedPart(const RecMail&mail,const RecPart&part) |
854 | { | 860 | { |
855 | encodedString*res = fetchRawPart(mail,part.Positionlist(),false); | 861 | encodedString*res = fetchRawPart(mail,part.Positionlist(),false); |
856 | encodedString*r = decode_String(res,part.Encoding()); | 862 | encodedString*r = decode_String(res,part.Encoding()); |
857 | delete res; | 863 | delete res; |
858 | return r; | 864 | return r; |
859 | } | 865 | } |
860 | 866 | ||
861 | encodedString* IMAPwrapper::fetchRawPart(const RecMail&mail,const RecPart&part) | 867 | encodedString* IMAPwrapper::fetchRawPart(const RecMail&mail,const RecPart&part) |
862 | { | 868 | { |
863 | return fetchRawPart(mail,part.Positionlist(),false); | 869 | return fetchRawPart(mail,part.Positionlist(),false); |
864 | } | 870 | } |
865 | 871 | ||
866 | int IMAPwrapper::deleteAllMail(const Folder*folder) | 872 | int IMAPwrapper::deleteAllMail(const Folder*folder) |
867 | { | 873 | { |
868 | login(); | 874 | login(); |
869 | if (!m_imap) { | 875 | if (!m_imap) { |
870 | return 0; | 876 | return 0; |
871 | } | 877 | } |
872 | mailimap_flag_list*flist; | 878 | mailimap_flag_list*flist; |
873 | mailimap_set *set; | 879 | mailimap_set *set; |
874 | mailimap_store_att_flags * store_flags; | 880 | mailimap_store_att_flags * store_flags; |
875 | int err = mailimap_select( m_imap, folder->getName().latin1()); | 881 | int err = selectMbox(folder->getName()); |
876 | if ( err != MAILIMAP_NO_ERROR ) { | 882 | if ( err != MAILIMAP_NO_ERROR ) { |
877 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); | ||
878 | return 0; | 883 | return 0; |
879 | } | 884 | } |
885 | |||
880 | int last = m_imap->imap_selection_info->sel_exists; | 886 | int last = m_imap->imap_selection_info->sel_exists; |
881 | if (last == 0) { | 887 | if (last == 0) { |
882 | Global::statusMessage(tr("Mailbox has no mails!")); | 888 | Global::statusMessage(tr("Mailbox has no mails!")); |
883 | return 0; | 889 | return 0; |
884 | } | 890 | } |
885 | flist = mailimap_flag_list_new_empty(); | 891 | flist = mailimap_flag_list_new_empty(); |
886 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); | 892 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); |
887 | store_flags = mailimap_store_att_flags_new_set_flags(flist); | 893 | store_flags = mailimap_store_att_flags_new_set_flags(flist); |
888 | set = mailimap_set_new_interval( 1, last ); | 894 | set = mailimap_set_new_interval( 1, last ); |
889 | err = mailimap_store(m_imap,set,store_flags); | 895 | err = mailimap_store(m_imap,set,store_flags); |
890 | mailimap_set_free( set ); | 896 | mailimap_set_free( set ); |
891 | mailimap_store_att_flags_free(store_flags); | 897 | mailimap_store_att_flags_free(store_flags); |
892 | if (err != MAILIMAP_NO_ERROR) { | 898 | if (err != MAILIMAP_NO_ERROR) { |
893 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); | 899 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); |
894 | return 0; | 900 | return 0; |
895 | } | 901 | } |
896 | qDebug("deleting mail: %s",m_imap->imap_response); | 902 | qDebug("deleting mail: %s",m_imap->imap_response); |
897 | /* should we realy do that at this moment? */ | 903 | /* should we realy do that at this moment? */ |
898 | err = mailimap_expunge(m_imap); | 904 | err = mailimap_expunge(m_imap); |
899 | if (err != MAILIMAP_NO_ERROR) { | 905 | if (err != MAILIMAP_NO_ERROR) { |
900 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); | 906 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); |
901 | return 0; | 907 | return 0; |
902 | } | 908 | } |
903 | qDebug("Delete successfull %s",m_imap->imap_response); | 909 | qDebug("Delete successfull %s",m_imap->imap_response); |
@@ -1001,51 +1007,52 @@ void IMAPwrapper::storeMessage(const char*msg,size_t length, const QString&folde | |||
1001 | Global::statusMessage("Error storing mail!"); | 1007 | Global::statusMessage("Error storing mail!"); |
1002 | } | 1008 | } |
1003 | } | 1009 | } |
1004 | 1010 | ||
1005 | const QString&IMAPwrapper::getType()const | 1011 | const QString&IMAPwrapper::getType()const |
1006 | { | 1012 | { |
1007 | return account->getType(); | 1013 | return account->getType(); |
1008 | } | 1014 | } |
1009 | 1015 | ||
1010 | const QString&IMAPwrapper::getName()const | 1016 | const QString&IMAPwrapper::getName()const |
1011 | { | 1017 | { |
1012 | qDebug("Get name: %s",account->getAccountName().latin1()); | 1018 | qDebug("Get name: %s",account->getAccountName().latin1()); |
1013 | return account->getAccountName(); | 1019 | return account->getAccountName(); |
1014 | } | 1020 | } |
1015 | 1021 | ||
1016 | encodedString* IMAPwrapper::fetchRawBody(const RecMail&mail) | 1022 | encodedString* IMAPwrapper::fetchRawBody(const RecMail&mail) |
1017 | { | 1023 | { |
1018 | // dummy | 1024 | // dummy |
1019 | QValueList<int> path; | 1025 | QValueList<int> path; |
1020 | return fetchRawPart(mail,path,false); | 1026 | return fetchRawPart(mail,path,false); |
1021 | } | 1027 | } |
1022 | 1028 | ||
1023 | void IMAPwrapper::mvcpAllMails(Folder*fromFolder,const QString&targetFolder,AbstractMail*targetWrapper,bool moveit) | 1029 | void IMAPwrapper::mvcpAllMails(Folder*fromFolder,const QString&targetFolder,AbstractMail*targetWrapper,bool moveit) |
1024 | { | 1030 | { |
1025 | qDebug("mvcp mail imap"); | ||
1026 | if (targetWrapper != this) { | 1031 | if (targetWrapper != this) { |
1027 | AbstractMail::mvcpAllMails(fromFolder,targetFolder,targetWrapper,moveit); | 1032 | AbstractMail::mvcpAllMails(fromFolder,targetFolder,targetWrapper,moveit); |
1028 | qDebug("Using generic"); | 1033 | qDebug("Using generic"); |
1029 | return; | 1034 | return; |
1030 | } | 1035 | } |
1031 | qDebug("Using internal"); | ||
1032 | mailimap_set *set = 0; | 1036 | mailimap_set *set = 0; |
1033 | 1037 | login(); | |
1034 | int err = mailimap_select( m_imap, fromFolder->getName().latin1()); | 1038 | if (!m_imap) { |
1039 | return; | ||
1040 | } | ||
1041 | int err = selectMbox(fromFolder->getName()); | ||
1035 | if ( err != MAILIMAP_NO_ERROR ) { | 1042 | if ( err != MAILIMAP_NO_ERROR ) { |
1036 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); | ||
1037 | return; | 1043 | return; |
1038 | } | 1044 | } |
1039 | |||
1040 | int last = m_imap->imap_selection_info->sel_exists; | 1045 | int last = m_imap->imap_selection_info->sel_exists; |
1041 | set = mailimap_set_new_interval( 1, last ); | 1046 | set = mailimap_set_new_interval( 1, last ); |
1042 | err = mailimap_copy(m_imap,set,targetFolder.latin1()); | 1047 | err = mailimap_copy(m_imap,set,targetFolder.latin1()); |
1048 | mailimap_set_free( set ); | ||
1043 | if ( err != MAILIMAP_NO_ERROR ) { | 1049 | if ( err != MAILIMAP_NO_ERROR ) { |
1044 | Global::statusMessage(tr("error copy mails: %1").arg(m_imap->imap_response)); | 1050 | QString error_msg = tr("error copy mails: %1").arg(m_imap->imap_response); |
1051 | Global::statusMessage(error_msg); | ||
1052 | qDebug(error_msg); | ||
1045 | return; | 1053 | return; |
1046 | } | 1054 | } |
1047 | mailimap_set_free( set ); | ||
1048 | if (moveit) { | 1055 | if (moveit) { |
1049 | deleteAllMail(fromFolder); | 1056 | deleteAllMail(fromFolder); |
1050 | } | 1057 | } |
1051 | } | 1058 | } |
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.h b/noncore/net/mail/libmailwrapper/imapwrapper.h index 07c6210..99986c2 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.h +++ b/noncore/net/mail/libmailwrapper/imapwrapper.h | |||
@@ -33,42 +33,44 @@ public: | |||
33 | virtual void storeMessage(const char*msg,size_t length, const QString&folder); | 33 | virtual void storeMessage(const char*msg,size_t length, const QString&folder); |
34 | virtual void mvcpAllMails(Folder*fromFolder,const QString&targetFolder,AbstractMail*targetWrapper,bool moveit); | 34 | virtual void mvcpAllMails(Folder*fromFolder,const QString&targetFolder,AbstractMail*targetWrapper,bool moveit); |
35 | 35 | ||
36 | virtual RecBody fetchBody(const RecMail&mail); | 36 | virtual RecBody fetchBody(const RecMail&mail); |
37 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); | 37 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); |
38 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); | 38 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); |
39 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); | 39 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); |
40 | virtual encodedString* fetchRawBody(const RecMail&mail); | 40 | virtual encodedString* fetchRawBody(const RecMail&mail); |
41 | 41 | ||
42 | virtual int createMbox(const QString&,const Folder*parentfolder=0,const QString& delemiter="/",bool getsubfolder=false); | 42 | virtual int createMbox(const QString&,const Folder*parentfolder=0,const QString& delemiter="/",bool getsubfolder=false); |
43 | virtual int deleteMbox(const Folder*folder); | 43 | virtual int deleteMbox(const Folder*folder); |
44 | 44 | ||
45 | static void imap_progress( size_t current, size_t maximum ); | 45 | static void imap_progress( size_t current, size_t maximum ); |
46 | 46 | ||
47 | virtual void logout(); | 47 | virtual void logout(); |
48 | virtual const QString&getType()const; | 48 | virtual const QString&getType()const; |
49 | virtual const QString&getName()const; | 49 | virtual const QString&getName()const; |
50 | 50 | ||
51 | protected: | 51 | protected: |
52 | RecMail*parse_list_result(mailimap_msg_att*); | 52 | RecMail*parse_list_result(mailimap_msg_att*); |
53 | void login(); | 53 | void login(); |
54 | 54 | ||
55 | virtual QString fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call=false,const QString&enc=""); | 55 | virtual QString fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call=false,const QString&enc=""); |
56 | virtual encodedString*fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call); | 56 | virtual encodedString*fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call); |
57 | 57 | int selectMbox(const QString&mbox); | |
58 | |||
58 | void fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description); | 59 | void fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description); |
59 | void fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which); | 60 | void fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which); |
60 | void fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which); | 61 | void fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which); |
61 | void fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which); | 62 | void fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which); |
62 | void fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which); | 63 | void fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which); |
63 | void traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body,int current_recursion,QValueList<int>recList,int current_count=1); | 64 | void traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body,int current_recursion,QValueList<int>recList,int current_count=1); |
64 | 65 | ||
65 | /* just helpers */ | 66 | /* just helpers */ |
66 | static void fillBodyFields(RecPart&target_part,mailimap_body_fields*which); | 67 | static void fillBodyFields(RecPart&target_part,mailimap_body_fields*which); |
67 | static QStringList address_list_to_stringlist(clist*list); | 68 | static QStringList address_list_to_stringlist(clist*list); |
68 | 69 | ||
69 | 70 | ||
70 | IMAPaccount *account; | 71 | IMAPaccount *account; |
71 | mailimap *m_imap; | 72 | mailimap *m_imap; |
73 | QString m_Lastmbox; | ||
72 | }; | 74 | }; |
73 | 75 | ||
74 | #endif | 76 | #endif |