-rw-r--r-- | noncore/net/mail/libmailwrapper/abstractmail.h | 12 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/genericwrapper.h | 3 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.cpp | 15 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.h | 5 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/libmailwrapper.pro | 16 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/pop3wrapper.cpp | 8 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/pop3wrapper.h | 4 |
7 files changed, 46 insertions, 17 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.h b/noncore/net/mail/libmailwrapper/abstractmail.h index ca9caed..a070fb0 100644 --- a/noncore/net/mail/libmailwrapper/abstractmail.h +++ b/noncore/net/mail/libmailwrapper/abstractmail.h | |||
@@ -1,55 +1,57 @@ | |||
1 | #ifndef __abstract_mail_ | 1 | #ifndef __abstract_mail_ |
2 | #define __abstract_mail_ | 2 | #define __abstract_mail_ |
3 | 3 | ||
4 | #include <qobject.h> | 4 | #include <qobject.h> |
5 | #include "settings.h" | 5 | #include "settings.h" |
6 | 6 | ||
7 | class RecMail; | 7 | class RecMail; |
8 | class RecBody; | 8 | class RecBody; |
9 | class RecPart; | 9 | class RecPart; |
10 | class IMAPwrapper; | 10 | class IMAPwrapper; |
11 | class POP3wrapper; | 11 | class POP3wrapper; |
12 | class Folder; | 12 | class Folder; |
13 | class encodedString; | 13 | class encodedString; |
14 | struct folderStat; | 14 | struct folderStat; |
15 | 15 | ||
16 | class AbstractMail:public QObject | 16 | class AbstractMail:public QObject |
17 | { | 17 | { |
18 | Q_OBJECT | 18 | Q_OBJECT |
19 | public: | 19 | public: |
20 | AbstractMail(){}; | 20 | AbstractMail(){}; |
21 | virtual ~AbstractMail(){} | 21 | virtual ~AbstractMail(){} |
22 | virtual QList<Folder>* listFolders()=0; | 22 | virtual QList<Folder>* listFolders()=0; |
23 | virtual void listMessages(const QString & mailbox,QList<RecMail>&target )=0; | 23 | virtual void listMessages(const QString & mailbox,QList<RecMail>&target )=0; |
24 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX")=0; | 24 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX")=0; |
25 | virtual RecBody fetchBody(const RecMail&mail)=0; | 25 | virtual RecBody fetchBody(const RecMail&mail)=0; |
26 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part)=0; | 26 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part)=0; |
27 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part)=0; | 27 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part)=0; |
28 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part)=0; | 28 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part)=0; |
29 | 29 | ||
30 | virtual void deleteMail(const RecMail&mail)=0; | 30 | virtual void deleteMail(const RecMail&mail)=0; |
31 | virtual void answeredMail(const RecMail&mail)=0; | 31 | virtual void answeredMail(const RecMail&mail)=0; |
32 | virtual void cleanMimeCache(){}; | 32 | virtual int deleteAllMail(const Folder*)=0; |
33 | virtual int deleteAllMail(const Folder*){return 1;} | 33 | virtual int deleteMbox(const Folder*)=0; |
34 | virtual int deleteMbox(const Folder*){return 1;} | 34 | virtual void storeMessage(const char*msg,size_t length, const QString&folder)=0; |
35 | 35 | ||
36 | virtual void cleanMimeCache(){}; | ||
36 | /* mail box methods */ | 37 | /* mail box methods */ |
37 | /* parameter is the box to create. | 38 | /* parameter is the box to create. |
38 | * if the implementing subclass has prefixes, | 39 | * if the implementing subclass has prefixes, |
39 | * them has to be appended automatic. | 40 | * them has to be appended automatic. |
40 | */ | 41 | */ |
41 | 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); |
42 | 43 | virtual void logout()=0; | |
44 | |||
43 | static AbstractMail* getWrapper(IMAPaccount *a); | 45 | static AbstractMail* getWrapper(IMAPaccount *a); |
44 | static AbstractMail* getWrapper(POP3account *a); | 46 | static AbstractMail* getWrapper(POP3account *a); |
45 | /* mbox only! */ | 47 | /* mbox only! */ |
46 | static AbstractMail* getWrapper(const QString&a); | 48 | static AbstractMail* getWrapper(const QString&a); |
47 | 49 | ||
48 | static QString defaultLocalfolder(); | 50 | static QString defaultLocalfolder(); |
49 | 51 | ||
50 | protected: | 52 | protected: |
51 | static encodedString*decode_String(const encodedString*text,const QString&enc); | 53 | static encodedString*decode_String(const encodedString*text,const QString&enc); |
52 | static QString convert_String(const char*text); | 54 | static QString convert_String(const char*text); |
53 | static QString gen_attachment_id(); | 55 | static QString gen_attachment_id(); |
54 | }; | 56 | }; |
55 | #endif | 57 | #endif |
diff --git a/noncore/net/mail/libmailwrapper/genericwrapper.h b/noncore/net/mail/libmailwrapper/genericwrapper.h index 32b75c8..1d65c0a 100644 --- a/noncore/net/mail/libmailwrapper/genericwrapper.h +++ b/noncore/net/mail/libmailwrapper/genericwrapper.h | |||
@@ -1,59 +1,62 @@ | |||
1 | #ifndef __GENERIC_WRAPPER_H | 1 | #ifndef __GENERIC_WRAPPER_H |
2 | #define __GENERIC_WRAPPER_H | 2 | #define __GENERIC_WRAPPER_H |
3 | 3 | ||
4 | #include "abstractmail.h" | 4 | #include "abstractmail.h" |
5 | #include <qmap.h> | 5 | #include <qmap.h> |
6 | #include <qstring.h> | 6 | #include <qstring.h> |
7 | #include <libetpan/clist.h> | 7 | #include <libetpan/clist.h> |
8 | 8 | ||
9 | class RecMail; | 9 | class RecMail; |
10 | class RecBody; | 10 | class RecBody; |
11 | class encodedString; | 11 | class encodedString; |
12 | struct mailpop3; | 12 | struct mailpop3; |
13 | struct mailmessage; | 13 | struct mailmessage; |
14 | struct mailmime; | 14 | struct mailmime; |
15 | struct mailmime_mechanism; | 15 | struct mailmime_mechanism; |
16 | struct mailimf_mailbox_list; | 16 | struct mailimf_mailbox_list; |
17 | struct mailimf_mailbox; | 17 | struct mailimf_mailbox; |
18 | struct mailimf_date_time; | 18 | struct mailimf_date_time; |
19 | struct mailimf_group; | 19 | struct mailimf_group; |
20 | struct mailimf_address_list; | 20 | struct mailimf_address_list; |
21 | struct mailsession; | 21 | struct mailsession; |
22 | 22 | ||
23 | /* this class hold just the funs shared between | 23 | /* this class hold just the funs shared between |
24 | * mbox and pop3 (later mh, too) mail access. | 24 | * mbox and pop3 (later mh, too) mail access. |
25 | * it is not desigend to make a instance of it! | 25 | * it is not desigend to make a instance of it! |
26 | */ | 26 | */ |
27 | class Genericwrapper : public AbstractMail | 27 | class Genericwrapper : public AbstractMail |
28 | { | 28 | { |
29 | Q_OBJECT | 29 | Q_OBJECT |
30 | public: | 30 | public: |
31 | Genericwrapper(); | 31 | Genericwrapper(); |
32 | virtual ~Genericwrapper(); | 32 | virtual ~Genericwrapper(); |
33 | 33 | ||
34 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); | 34 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); |
35 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); | 35 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); |
36 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); | 36 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); |
37 | virtual void cleanMimeCache(); | 37 | virtual void cleanMimeCache(); |
38 | virtual int deleteMbox(const Folder*){return 1;} | ||
39 | virtual void logout(){}; | ||
40 | virtual void storeMessage(const char*msg,size_t length, const QString&folder){}; | ||
38 | 41 | ||
39 | protected: | 42 | protected: |
40 | RecMail *parseHeader( const char *header ); | 43 | RecMail *parseHeader( const char *header ); |
41 | RecBody parseMail( mailmessage * msg ); | 44 | RecBody parseMail( mailmessage * msg ); |
42 | QString parseMailboxList( mailimf_mailbox_list *list ); | 45 | QString parseMailboxList( mailimf_mailbox_list *list ); |
43 | QString parseMailbox( mailimf_mailbox *box ); | 46 | QString parseMailbox( mailimf_mailbox *box ); |
44 | QString parseGroup( mailimf_group *group ); | 47 | QString parseGroup( mailimf_group *group ); |
45 | QString parseAddressList( mailimf_address_list *list ); | 48 | QString parseAddressList( mailimf_address_list *list ); |
46 | QString parseDateTime( mailimf_date_time *date ); | 49 | QString parseDateTime( mailimf_date_time *date ); |
47 | 50 | ||
48 | void traverseBody(RecBody&target,mailmessage*message,mailmime*mime,QValueList<int>recList,unsigned int current_rek=0,int current_count=1); | 51 | void traverseBody(RecBody&target,mailmessage*message,mailmime*mime,QValueList<int>recList,unsigned int current_rek=0,int current_count=1); |
49 | static void fillSingleBody(RecPart&target,mailmessage*message,mailmime*mime); | 52 | static void fillSingleBody(RecPart&target,mailmessage*message,mailmime*mime); |
50 | static void fillParameters(RecPart&target,clist*parameters); | 53 | static void fillParameters(RecPart&target,clist*parameters); |
51 | static QString getencoding(mailmime_mechanism*aEnc); | 54 | static QString getencoding(mailmime_mechanism*aEnc); |
52 | virtual void parseList(QList<RecMail> &target,mailsession*session,const QString&mailbox); | 55 | virtual void parseList(QList<RecMail> &target,mailsession*session,const QString&mailbox); |
53 | 56 | ||
54 | QString msgTempName; | 57 | QString msgTempName; |
55 | unsigned int last_msg_id; | 58 | unsigned int last_msg_id; |
56 | QMap<QString,encodedString*> bodyCache; | 59 | QMap<QString,encodedString*> bodyCache; |
57 | }; | 60 | }; |
58 | 61 | ||
59 | #endif | 62 | #endif |
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp index f1d42c2..0c1e05e 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp | |||
@@ -1,976 +1,987 @@ | |||
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 | } | 14 | } |
15 | 15 | ||
16 | IMAPwrapper::~IMAPwrapper() | 16 | IMAPwrapper::~IMAPwrapper() |
17 | { | 17 | { |
18 | logout(); | 18 | logout(); |
19 | } | 19 | } |
20 | 20 | ||
21 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) | 21 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) |
22 | { | 22 | { |
23 | qDebug( "IMAP: %i of %i", current, maximum ); | 23 | qDebug( "IMAP: %i of %i", current, maximum ); |
24 | } | 24 | } |
25 | 25 | ||
26 | void IMAPwrapper::login() | 26 | void IMAPwrapper::login() |
27 | { | 27 | { |
28 | const char *server, *user, *pass; | 28 | const char *server, *user, *pass; |
29 | uint16_t port; | 29 | uint16_t port; |
30 | int err = MAILIMAP_NO_ERROR; | 30 | int err = MAILIMAP_NO_ERROR; |
31 | 31 | ||
32 | /* we are connected this moment */ | 32 | /* we are connected this moment */ |
33 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ | 33 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ |
34 | if (m_imap) { | 34 | if (m_imap) { |
35 | err = mailimap_noop(m_imap); | 35 | err = mailimap_noop(m_imap); |
36 | if (err!=MAILIMAP_NO_ERROR) { | 36 | if (err!=MAILIMAP_NO_ERROR) { |
37 | logout(); | 37 | logout(); |
38 | } else { | 38 | } else { |
39 | mailstream_flush(m_imap->imap_stream); | 39 | mailstream_flush(m_imap->imap_stream); |
40 | return; | 40 | return; |
41 | } | 41 | } |
42 | } | 42 | } |
43 | server = account->getServer().latin1(); | 43 | server = account->getServer().latin1(); |
44 | port = account->getPort().toUInt(); | 44 | port = account->getPort().toUInt(); |
45 | if ( account->getUser().isEmpty() || account->getPassword().isEmpty() ) { | 45 | if ( account->getUser().isEmpty() || account->getPassword().isEmpty() ) { |
46 | LoginDialog login( account->getUser(), account->getPassword(), NULL, 0, true ); | 46 | LoginDialog login( account->getUser(), account->getPassword(), NULL, 0, true ); |
47 | login.show(); | 47 | login.show(); |
48 | if ( QDialog::Accepted == login.exec() ) { | 48 | if ( QDialog::Accepted == login.exec() ) { |
49 | // ok | 49 | // ok |
50 | user = strdup( login.getUser().latin1() ); | 50 | user = login.getUser().latin1(); |
51 | pass = strdup( login.getPassword().latin1() ); | 51 | pass = login.getPassword().latin1(); |
52 | } else { | 52 | } else { |
53 | // cancel | 53 | // cancel |
54 | qDebug( "IMAP: Login canceled" ); | 54 | qDebug( "IMAP: Login canceled" ); |
55 | return; | 55 | return; |
56 | } | 56 | } |
57 | } else { | 57 | } else { |
58 | user = account->getUser().latin1(); | 58 | user = account->getUser().latin1(); |
59 | pass = account->getPassword().latin1(); | 59 | pass = account->getPassword().latin1(); |
60 | } | 60 | } |
61 | 61 | ||
62 | m_imap = mailimap_new( 20, &imap_progress ); | 62 | m_imap = mailimap_new( 20, &imap_progress ); |
63 | 63 | ||
64 | /* connect */ | 64 | /* connect */ |
65 | if (account->getSSL()) { | 65 | if (account->getSSL()) { |
66 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); | 66 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); |
67 | } else { | 67 | } else { |
68 | err = mailimap_socket_connect( m_imap, (char*)server, port ); | 68 | err = mailimap_socket_connect( m_imap, (char*)server, port ); |
69 | } | 69 | } |
70 | 70 | ||
71 | if ( err != MAILIMAP_NO_ERROR && | 71 | if ( err != MAILIMAP_NO_ERROR && |
72 | err != MAILIMAP_NO_ERROR_AUTHENTICATED && | 72 | err != MAILIMAP_NO_ERROR_AUTHENTICATED && |
73 | err != MAILIMAP_NO_ERROR_NON_AUTHENTICATED ) { | 73 | err != MAILIMAP_NO_ERROR_NON_AUTHENTICATED ) { |
74 | QString failure = ""; | 74 | QString failure = ""; |
75 | if (err == MAILIMAP_ERROR_CONNECTION_REFUSED) { | 75 | if (err == MAILIMAP_ERROR_CONNECTION_REFUSED) { |
76 | failure="Connection refused"; | 76 | failure="Connection refused"; |
77 | } else { | 77 | } else { |
78 | failure="Unknown failure"; | 78 | failure="Unknown failure"; |
79 | } | 79 | } |
80 | Global::statusMessage(tr("error connecting imap server: %1").arg(failure)); | 80 | Global::statusMessage(tr("error connecting imap server: %1").arg(failure)); |
81 | mailimap_free( m_imap ); | 81 | mailimap_free( m_imap ); |
82 | m_imap = 0; | 82 | m_imap = 0; |
83 | return; | 83 | return; |
84 | } | 84 | } |
85 | 85 | ||
86 | /* login */ | 86 | /* login */ |
87 | err = mailimap_login_simple( m_imap, (char*)user, (char*)pass ); | 87 | err = mailimap_login_simple( m_imap, (char*)user, (char*)pass ); |
88 | if ( err != MAILIMAP_NO_ERROR ) { | 88 | if ( err != MAILIMAP_NO_ERROR ) { |
89 | Global::statusMessage(tr("error logging in imap server: %1").arg(m_imap->imap_response)); | 89 | Global::statusMessage(tr("error logging in imap server: %1").arg(m_imap->imap_response)); |
90 | err = mailimap_close( m_imap ); | 90 | err = mailimap_close( m_imap ); |
91 | mailimap_free( m_imap ); | 91 | mailimap_free( m_imap ); |
92 | m_imap = 0; | 92 | m_imap = 0; |
93 | } | 93 | } |
94 | } | 94 | } |
95 | 95 | ||
96 | void IMAPwrapper::logout() | 96 | void IMAPwrapper::logout() |
97 | { | 97 | { |
98 | int err = MAILIMAP_NO_ERROR; | 98 | int err = MAILIMAP_NO_ERROR; |
99 | if (!m_imap) return; | 99 | if (!m_imap) return; |
100 | err = mailimap_logout( m_imap ); | 100 | err = mailimap_logout( m_imap ); |
101 | err = mailimap_close( m_imap ); | 101 | err = mailimap_close( m_imap ); |
102 | mailimap_free( m_imap ); | 102 | mailimap_free( m_imap ); |
103 | m_imap = 0; | 103 | m_imap = 0; |
104 | } | 104 | } |
105 | 105 | ||
106 | void IMAPwrapper::listMessages(const QString&mailbox,QList<RecMail> &target ) | 106 | void IMAPwrapper::listMessages(const QString&mailbox,QList<RecMail> &target ) |
107 | { | 107 | { |
108 | const char *mb = 0; | 108 | const char *mb = 0; |
109 | int err = MAILIMAP_NO_ERROR; | 109 | int err = MAILIMAP_NO_ERROR; |
110 | clist *result = 0; | 110 | clist *result = 0; |
111 | clistcell *current; | 111 | clistcell *current; |
112 | // mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate,*fetchAttSize; | 112 | // mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate,*fetchAttSize; |
113 | mailimap_fetch_type *fetchType = 0; | 113 | mailimap_fetch_type *fetchType = 0; |
114 | mailimap_set *set = 0; | 114 | mailimap_set *set = 0; |
115 | 115 | ||
116 | mb = mailbox.latin1(); | 116 | mb = mailbox.latin1(); |
117 | login(); | 117 | login(); |
118 | if (!m_imap) { | 118 | if (!m_imap) { |
119 | return; | 119 | return; |
120 | } | 120 | } |
121 | /* select mailbox READONLY for operations */ | 121 | /* select mailbox READONLY for operations */ |
122 | err = mailimap_examine( m_imap, (char*)mb); | 122 | err = mailimap_examine( m_imap, (char*)mb); |
123 | if ( err != MAILIMAP_NO_ERROR ) { | 123 | if ( err != MAILIMAP_NO_ERROR ) { |
124 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); | 124 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); |
125 | return; | 125 | return; |
126 | } | 126 | } |
127 | 127 | ||
128 | int last = m_imap->imap_selection_info->sel_exists; | 128 | int last = m_imap->imap_selection_info->sel_exists; |
129 | 129 | ||
130 | if (last == 0) { | 130 | if (last == 0) { |
131 | Global::statusMessage(tr("Mailbox has no mails")); | 131 | Global::statusMessage(tr("Mailbox has no mails")); |
132 | return; | 132 | return; |
133 | } else { | 133 | } else { |
134 | Global::statusMessage(tr("Mailbox has %1 mails").arg(last)); | 134 | Global::statusMessage(tr("Mailbox has %1 mails").arg(last)); |
135 | } | 135 | } |
136 | 136 | ||
137 | /* the range has to start at 1!!! not with 0!!!! */ | 137 | /* the range has to start at 1!!! not with 0!!!! */ |
138 | set = mailimap_set_new_interval( 1, last ); | 138 | set = mailimap_set_new_interval( 1, last ); |
139 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); | 139 | fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); |
140 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_envelope()); | 140 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_envelope()); |
141 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_flags()); | 141 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_flags()); |
142 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_internaldate()); | 142 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_internaldate()); |
143 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_rfc822_size()); | 143 | mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_rfc822_size()); |
144 | 144 | ||
145 | err = mailimap_fetch( m_imap, set, fetchType, &result ); | 145 | err = mailimap_fetch( m_imap, set, fetchType, &result ); |
146 | mailimap_set_free( set ); | 146 | mailimap_set_free( set ); |
147 | mailimap_fetch_type_free( fetchType ); | 147 | mailimap_fetch_type_free( fetchType ); |
148 | 148 | ||
149 | QString date,subject,from; | 149 | QString date,subject,from; |
150 | 150 | ||
151 | if ( err == MAILIMAP_NO_ERROR ) { | 151 | if ( err == MAILIMAP_NO_ERROR ) { |
152 | mailimap_msg_att * msg_att; | 152 | mailimap_msg_att * msg_att; |
153 | int i = 0; | 153 | int i = 0; |
154 | for (current = clist_begin(result); current != 0; current=clist_next(current)) { | 154 | for (current = clist_begin(result); current != 0; current=clist_next(current)) { |
155 | ++i; | 155 | ++i; |
156 | msg_att = (mailimap_msg_att*)current->data; | 156 | msg_att = (mailimap_msg_att*)current->data; |
157 | RecMail*m = parse_list_result(msg_att); | 157 | RecMail*m = parse_list_result(msg_att); |
158 | if (m) { | 158 | if (m) { |
159 | m->setNumber(i); | 159 | m->setNumber(i); |
160 | m->setMbox(mailbox); | 160 | m->setMbox(mailbox); |
161 | m->setWrapper(this); | 161 | m->setWrapper(this); |
162 | target.append(m); | 162 | target.append(m); |
163 | } | 163 | } |
164 | } | 164 | } |
165 | } else { | 165 | } else { |
166 | Global::statusMessage(tr("Error fetching headers: %1").arg(m_imap->imap_response)); | 166 | Global::statusMessage(tr("Error fetching headers: %1").arg(m_imap->imap_response)); |
167 | } | 167 | } |
168 | if (result) mailimap_fetch_list_free(result); | 168 | if (result) mailimap_fetch_list_free(result); |
169 | } | 169 | } |
170 | 170 | ||
171 | QList<Folder>* IMAPwrapper::listFolders() | 171 | QList<Folder>* IMAPwrapper::listFolders() |
172 | { | 172 | { |
173 | const char *path, *mask; | 173 | const char *path, *mask; |
174 | int err = MAILIMAP_NO_ERROR; | 174 | int err = MAILIMAP_NO_ERROR; |
175 | clist *result = 0; | 175 | clist *result = 0; |
176 | clistcell *current = 0; | 176 | clistcell *current = 0; |
177 | clistcell*cur_flag = 0; | 177 | clistcell*cur_flag = 0; |
178 | mailimap_mbx_list_flags*bflags = 0; | 178 | mailimap_mbx_list_flags*bflags = 0; |
179 | 179 | ||
180 | QList<Folder> * folders = new QList<Folder>(); | 180 | QList<Folder> * folders = new QList<Folder>(); |
181 | folders->setAutoDelete( false ); | 181 | folders->setAutoDelete( false ); |
182 | login(); | 182 | login(); |
183 | if (!m_imap) { | 183 | if (!m_imap) { |
184 | return folders; | 184 | return folders; |
185 | } | 185 | } |
186 | 186 | ||
187 | /* | 187 | /* |
188 | * First we have to check for INBOX 'cause it sometimes it's not inside the path. | 188 | * First we have to check for INBOX 'cause it sometimes it's not inside the path. |
189 | * We must not forget to filter them out in next loop! | 189 | * We must not forget to filter them out in next loop! |
190 | * it seems like ugly code. and yes - it is ugly code. but the best way. | 190 | * it seems like ugly code. and yes - it is ugly code. but the best way. |
191 | */ | 191 | */ |
192 | QString temp; | 192 | QString temp; |
193 | mask = "INBOX" ; | 193 | mask = "INBOX" ; |
194 | mailimap_mailbox_list *list; | 194 | mailimap_mailbox_list *list; |
195 | err = mailimap_list( m_imap, (char*)"", (char*)mask, &result ); | 195 | err = mailimap_list( m_imap, (char*)"", (char*)mask, &result ); |
196 | QString del; | 196 | QString del; |
197 | bool selectable = true; | 197 | bool selectable = true; |
198 | bool no_inferiors = false; | 198 | bool no_inferiors = false; |
199 | if ( err == MAILIMAP_NO_ERROR ) { | 199 | if ( err == MAILIMAP_NO_ERROR ) { |
200 | current = result->first; | 200 | current = result->first; |
201 | for ( int i = result->count; i > 0; i-- ) { | 201 | for ( int i = result->count; i > 0; i-- ) { |
202 | list = (mailimap_mailbox_list *) current->data; | 202 | list = (mailimap_mailbox_list *) current->data; |
203 | // it is better use the deep copy mechanism of qt itself | 203 | // it is better use the deep copy mechanism of qt itself |
204 | // instead of using strdup! | 204 | // instead of using strdup! |
205 | temp = list->mb_name; | 205 | temp = list->mb_name; |
206 | del = list->mb_delimiter; | 206 | del = list->mb_delimiter; |
207 | current = current->next; | 207 | current = current->next; |
208 | if ( (bflags = list->mb_flag) ) { | 208 | if ( (bflags = list->mb_flag) ) { |
209 | selectable = !(bflags->mbf_type==MAILIMAP_MBX_LIST_FLAGS_SFLAG&& | 209 | selectable = !(bflags->mbf_type==MAILIMAP_MBX_LIST_FLAGS_SFLAG&& |
210 | bflags->mbf_sflag==MAILIMAP_MBX_LIST_SFLAG_NOSELECT); | 210 | bflags->mbf_sflag==MAILIMAP_MBX_LIST_SFLAG_NOSELECT); |
211 | for(cur_flag=clist_begin(bflags->mbf_oflags);cur_flag;cur_flag=clist_next(cur_flag)) { | 211 | for(cur_flag=clist_begin(bflags->mbf_oflags);cur_flag;cur_flag=clist_next(cur_flag)) { |
212 | if ( ((mailimap_mbx_list_oflag*)cur_flag->data)->of_type==MAILIMAP_MBX_LIST_OFLAG_NOINFERIORS) { | 212 | if ( ((mailimap_mbx_list_oflag*)cur_flag->data)->of_type==MAILIMAP_MBX_LIST_OFLAG_NOINFERIORS) { |
213 | no_inferiors = true; | 213 | no_inferiors = true; |
214 | } | 214 | } |
215 | } | 215 | } |
216 | } | 216 | } |
217 | folders->append( new IMAPFolder(temp,del,selectable,no_inferiors,account->getPrefix())); | 217 | folders->append( new IMAPFolder(temp,del,selectable,no_inferiors,account->getPrefix())); |
218 | } | 218 | } |
219 | } else { | 219 | } else { |
220 | qDebug("error fetching folders: %s",m_imap->imap_response); | 220 | qDebug("error fetching folders: %s",m_imap->imap_response); |
221 | } | 221 | } |
222 | mailimap_list_result_free( result ); | 222 | mailimap_list_result_free( result ); |
223 | 223 | ||
224 | /* | 224 | /* |
225 | * second stage - get the other then inbox folders | 225 | * second stage - get the other then inbox folders |
226 | */ | 226 | */ |
227 | mask = "*" ; | 227 | mask = "*" ; |
228 | path = account->getPrefix().latin1(); | 228 | path = account->getPrefix().latin1(); |
229 | if (!path) path = ""; | 229 | if (!path) path = ""; |
230 | qDebug(path); | 230 | qDebug(path); |
231 | err = mailimap_list( m_imap, (char*)path, (char*)mask, &result ); | 231 | err = mailimap_list( m_imap, (char*)path, (char*)mask, &result ); |
232 | if ( err == MAILIMAP_NO_ERROR ) { | 232 | if ( err == MAILIMAP_NO_ERROR ) { |
233 | current = result->first; | 233 | current = result->first; |
234 | for ( current=clist_begin(result);current!=NULL;current=clist_next(current)) { | 234 | for ( current=clist_begin(result);current!=NULL;current=clist_next(current)) { |
235 | no_inferiors = false; | 235 | no_inferiors = false; |
236 | list = (mailimap_mailbox_list *) current->data; | 236 | list = (mailimap_mailbox_list *) current->data; |
237 | // it is better use the deep copy mechanism of qt itself | 237 | // it is better use the deep copy mechanism of qt itself |
238 | // instead of using strdup! | 238 | // instead of using strdup! |
239 | temp = list->mb_name; | 239 | temp = list->mb_name; |
240 | if (temp.lower()=="inbox") | 240 | if (temp.lower()=="inbox") |
241 | continue; | 241 | continue; |
242 | if (temp.lower()==account->getPrefix().lower()) | 242 | if (temp.lower()==account->getPrefix().lower()) |
243 | continue; | 243 | continue; |
244 | if ( (bflags = list->mb_flag) ) { | 244 | if ( (bflags = list->mb_flag) ) { |
245 | selectable = !(bflags->mbf_type==MAILIMAP_MBX_LIST_FLAGS_SFLAG&& | 245 | selectable = !(bflags->mbf_type==MAILIMAP_MBX_LIST_FLAGS_SFLAG&& |
246 | bflags->mbf_sflag==MAILIMAP_MBX_LIST_SFLAG_NOSELECT); | 246 | bflags->mbf_sflag==MAILIMAP_MBX_LIST_SFLAG_NOSELECT); |
247 | for(cur_flag=clist_begin(bflags->mbf_oflags);cur_flag;cur_flag=clist_next(cur_flag)) { | 247 | for(cur_flag=clist_begin(bflags->mbf_oflags);cur_flag;cur_flag=clist_next(cur_flag)) { |
248 | if ( ((mailimap_mbx_list_oflag*)cur_flag->data)->of_type==MAILIMAP_MBX_LIST_OFLAG_NOINFERIORS) { | 248 | if ( ((mailimap_mbx_list_oflag*)cur_flag->data)->of_type==MAILIMAP_MBX_LIST_OFLAG_NOINFERIORS) { |
249 | no_inferiors = true; | 249 | no_inferiors = true; |
250 | } | 250 | } |
251 | } | 251 | } |
252 | } | 252 | } |
253 | del = list->mb_delimiter; | 253 | del = list->mb_delimiter; |
254 | folders->append(new IMAPFolder(temp,del,selectable,no_inferiors,account->getPrefix())); | 254 | folders->append(new IMAPFolder(temp,del,selectable,no_inferiors,account->getPrefix())); |
255 | } | 255 | } |
256 | } else { | 256 | } else { |
257 | qDebug("error fetching folders %s",m_imap->imap_response); | 257 | qDebug("error fetching folders %s",m_imap->imap_response); |
258 | } | 258 | } |
259 | if (result) mailimap_list_result_free( result ); | 259 | if (result) mailimap_list_result_free( result ); |
260 | return folders; | 260 | return folders; |
261 | } | 261 | } |
262 | 262 | ||
263 | RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att) | 263 | RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att) |
264 | { | 264 | { |
265 | RecMail * m = 0; | 265 | RecMail * m = 0; |
266 | mailimap_msg_att_item *item=0; | 266 | mailimap_msg_att_item *item=0; |
267 | clistcell *current,*c,*cf; | 267 | clistcell *current,*c,*cf; |
268 | mailimap_msg_att_dynamic*flist; | 268 | mailimap_msg_att_dynamic*flist; |
269 | mailimap_flag_fetch*cflag; | 269 | mailimap_flag_fetch*cflag; |
270 | int size; | 270 | int size; |
271 | QBitArray mFlags(7); | 271 | QBitArray mFlags(7); |
272 | QStringList addresslist; | 272 | QStringList addresslist; |
273 | 273 | ||
274 | if (!m_att) { | 274 | if (!m_att) { |
275 | return m; | 275 | return m; |
276 | } | 276 | } |
277 | m = new RecMail(); | 277 | m = new RecMail(); |
278 | for (c = clist_begin(m_att->att_list); c!=NULL;c=clist_next(c) ) { | 278 | for (c = clist_begin(m_att->att_list); c!=NULL;c=clist_next(c) ) { |
279 | current = c; | 279 | current = c; |
280 | size = 0; | 280 | size = 0; |
281 | item = (mailimap_msg_att_item*)current->data; | 281 | item = (mailimap_msg_att_item*)current->data; |
282 | if (item->att_type!=MAILIMAP_MSG_ATT_ITEM_STATIC) { | 282 | if (item->att_type!=MAILIMAP_MSG_ATT_ITEM_STATIC) { |
283 | flist = (mailimap_msg_att_dynamic*)item->att_data.att_dyn; | 283 | flist = (mailimap_msg_att_dynamic*)item->att_data.att_dyn; |
284 | if (!flist->att_list) { | 284 | if (!flist->att_list) { |
285 | continue; | 285 | continue; |
286 | } | 286 | } |
287 | cf = flist->att_list->first; | 287 | cf = flist->att_list->first; |
288 | for (cf = clist_begin(flist->att_list); cf!=NULL; cf = clist_next(cf)) { | 288 | for (cf = clist_begin(flist->att_list); cf!=NULL; cf = clist_next(cf)) { |
289 | cflag = (mailimap_flag_fetch*)cf->data; | 289 | cflag = (mailimap_flag_fetch*)cf->data; |
290 | if (cflag->fl_type==MAILIMAP_FLAG_FETCH_OTHER && cflag->fl_flag!=0) { | 290 | if (cflag->fl_type==MAILIMAP_FLAG_FETCH_OTHER && cflag->fl_flag!=0) { |
291 | switch (cflag->fl_flag->fl_type) { | 291 | switch (cflag->fl_flag->fl_type) { |
292 | case MAILIMAP_FLAG_ANSWERED: /* \Answered flag */ | 292 | case MAILIMAP_FLAG_ANSWERED: /* \Answered flag */ |
293 | mFlags.setBit(FLAG_ANSWERED); | 293 | mFlags.setBit(FLAG_ANSWERED); |
294 | break; | 294 | break; |
295 | case MAILIMAP_FLAG_FLAGGED: /* \Flagged flag */ | 295 | case MAILIMAP_FLAG_FLAGGED: /* \Flagged flag */ |
296 | mFlags.setBit(FLAG_FLAGGED); | 296 | mFlags.setBit(FLAG_FLAGGED); |
297 | break; | 297 | break; |
298 | case MAILIMAP_FLAG_DELETED: /* \Deleted flag */ | 298 | case MAILIMAP_FLAG_DELETED: /* \Deleted flag */ |
299 | mFlags.setBit(FLAG_DELETED); | 299 | mFlags.setBit(FLAG_DELETED); |
300 | break; | 300 | break; |
301 | case MAILIMAP_FLAG_SEEN: /* \Seen flag */ | 301 | case MAILIMAP_FLAG_SEEN: /* \Seen flag */ |
302 | mFlags.setBit(FLAG_SEEN); | 302 | mFlags.setBit(FLAG_SEEN); |
303 | break; | 303 | break; |
304 | case MAILIMAP_FLAG_DRAFT: /* \Draft flag */ | 304 | case MAILIMAP_FLAG_DRAFT: /* \Draft flag */ |
305 | mFlags.setBit(FLAG_DRAFT); | 305 | mFlags.setBit(FLAG_DRAFT); |
306 | break; | 306 | break; |
307 | case MAILIMAP_FLAG_KEYWORD: /* keyword flag */ | 307 | case MAILIMAP_FLAG_KEYWORD: /* keyword flag */ |
308 | break; | 308 | break; |
309 | case MAILIMAP_FLAG_EXTENSION: /* \extension flag */ | 309 | case MAILIMAP_FLAG_EXTENSION: /* \extension flag */ |
310 | break; | 310 | break; |
311 | default: | 311 | default: |
312 | break; | 312 | break; |
313 | } | 313 | } |
314 | } else if (cflag->fl_type==MAILIMAP_FLAG_FETCH_RECENT) { | 314 | } else if (cflag->fl_type==MAILIMAP_FLAG_FETCH_RECENT) { |
315 | mFlags.setBit(FLAG_RECENT); | 315 | mFlags.setBit(FLAG_RECENT); |
316 | } | 316 | } |
317 | } | 317 | } |
318 | continue; | 318 | continue; |
319 | } | 319 | } |
320 | if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_ENVELOPE) { | 320 | if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_ENVELOPE) { |
321 | mailimap_envelope * head = item->att_data.att_static->att_data.att_env; | 321 | mailimap_envelope * head = item->att_data.att_static->att_data.att_env; |
322 | m->setDate(head->env_date); | 322 | m->setDate(head->env_date); |
323 | m->setSubject(convert_String((const char*)head->env_subject)); | 323 | m->setSubject(convert_String((const char*)head->env_subject)); |
324 | //m->setSubject(head->env_subject); | 324 | //m->setSubject(head->env_subject); |
325 | if (head->env_from!=NULL) { | 325 | if (head->env_from!=NULL) { |
326 | addresslist = address_list_to_stringlist(head->env_from->frm_list); | 326 | addresslist = address_list_to_stringlist(head->env_from->frm_list); |
327 | if (addresslist.count()) { | 327 | if (addresslist.count()) { |
328 | m->setFrom(addresslist.first()); | 328 | m->setFrom(addresslist.first()); |
329 | } | 329 | } |
330 | } | 330 | } |
331 | if (head->env_to!=NULL) { | 331 | if (head->env_to!=NULL) { |
332 | addresslist = address_list_to_stringlist(head->env_to->to_list); | 332 | addresslist = address_list_to_stringlist(head->env_to->to_list); |
333 | m->setTo(addresslist); | 333 | m->setTo(addresslist); |
334 | } | 334 | } |
335 | if (head->env_cc!=NULL) { | 335 | if (head->env_cc!=NULL) { |
336 | addresslist = address_list_to_stringlist(head->env_cc->cc_list); | 336 | addresslist = address_list_to_stringlist(head->env_cc->cc_list); |
337 | m->setCC(addresslist); | 337 | m->setCC(addresslist); |
338 | } | 338 | } |
339 | if (head->env_bcc!=NULL) { | 339 | if (head->env_bcc!=NULL) { |
340 | addresslist = address_list_to_stringlist(head->env_bcc->bcc_list); | 340 | addresslist = address_list_to_stringlist(head->env_bcc->bcc_list); |
341 | m->setBcc(addresslist); | 341 | m->setBcc(addresslist); |
342 | } | 342 | } |
343 | if (head->env_reply_to!=NULL) { | 343 | if (head->env_reply_to!=NULL) { |
344 | addresslist = address_list_to_stringlist(head->env_reply_to->rt_list); | 344 | addresslist = address_list_to_stringlist(head->env_reply_to->rt_list); |
345 | if (addresslist.count()) { | 345 | if (addresslist.count()) { |
346 | m->setReplyto(addresslist.first()); | 346 | m->setReplyto(addresslist.first()); |
347 | } | 347 | } |
348 | } | 348 | } |
349 | m->setMsgid(QString(head->env_message_id)); | 349 | m->setMsgid(QString(head->env_message_id)); |
350 | } else if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_INTERNALDATE) { | 350 | } else if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_INTERNALDATE) { |
351 | #if 0 | 351 | #if 0 |
352 | mailimap_date_time*d = item->att_data.att_static->att_data.att_internal_date; | 352 | mailimap_date_time*d = item->att_data.att_static->att_data.att_internal_date; |
353 | QDateTime da(QDate(d->dt_year,d->dt_month,d->dt_day),QTime(d->dt_hour,d->dt_min,d->dt_sec)); | 353 | QDateTime da(QDate(d->dt_year,d->dt_month,d->dt_day),QTime(d->dt_hour,d->dt_min,d->dt_sec)); |
354 | qDebug("%i %i %i - %i %i %i",d->dt_year,d->dt_month,d->dt_day,d->dt_hour,d->dt_min,d->dt_sec); | 354 | qDebug("%i %i %i - %i %i %i",d->dt_year,d->dt_month,d->dt_day,d->dt_hour,d->dt_min,d->dt_sec); |
355 | qDebug(da.toString()); | 355 | qDebug(da.toString()); |
356 | #endif | 356 | #endif |
357 | } else if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_RFC822_SIZE) { | 357 | } else if (item->att_data.att_static->att_type==MAILIMAP_MSG_ATT_RFC822_SIZE) { |
358 | size = item->att_data.att_static->att_data.att_rfc822_size; | 358 | size = item->att_data.att_static->att_data.att_rfc822_size; |
359 | } | 359 | } |
360 | } | 360 | } |
361 | /* msg is already deleted */ | 361 | /* msg is already deleted */ |
362 | if (mFlags.testBit(FLAG_DELETED) && m) { | 362 | if (mFlags.testBit(FLAG_DELETED) && m) { |
363 | delete m; | 363 | delete m; |
364 | m = 0; | 364 | m = 0; |
365 | } | 365 | } |
366 | if (m) { | 366 | if (m) { |
367 | m->setFlags(mFlags); | 367 | m->setFlags(mFlags); |
368 | m->setMsgsize(size); | 368 | m->setMsgsize(size); |
369 | } | 369 | } |
370 | return m; | 370 | return m; |
371 | } | 371 | } |
372 | 372 | ||
373 | RecBody IMAPwrapper::fetchBody(const RecMail&mail) | 373 | RecBody IMAPwrapper::fetchBody(const RecMail&mail) |
374 | { | 374 | { |
375 | RecBody body; | 375 | RecBody body; |
376 | const char *mb; | 376 | const char *mb; |
377 | int err = MAILIMAP_NO_ERROR; | 377 | int err = MAILIMAP_NO_ERROR; |
378 | clist *result = 0; | 378 | clist *result = 0; |
379 | clistcell *current; | 379 | clistcell *current; |
380 | mailimap_fetch_att *fetchAtt = 0; | 380 | mailimap_fetch_att *fetchAtt = 0; |
381 | mailimap_fetch_type *fetchType = 0; | 381 | mailimap_fetch_type *fetchType = 0; |
382 | mailimap_set *set = 0; | 382 | mailimap_set *set = 0; |
383 | mailimap_body*body_desc = 0; | 383 | mailimap_body*body_desc = 0; |
384 | 384 | ||
385 | mb = mail.getMbox().latin1(); | 385 | mb = mail.getMbox().latin1(); |
386 | 386 | ||
387 | login(); | 387 | login(); |
388 | if (!m_imap) { | 388 | if (!m_imap) { |
389 | return body; | 389 | return body; |
390 | } | 390 | } |
391 | 391 | ||
392 | err = mailimap_select( m_imap, (char*)mb); | 392 | err = mailimap_select( m_imap, (char*)mb); |
393 | if ( err != MAILIMAP_NO_ERROR ) { | 393 | if ( err != MAILIMAP_NO_ERROR ) { |
394 | qDebug("error selecting mailbox: %s",m_imap->imap_response); | 394 | qDebug("error selecting mailbox: %s",m_imap->imap_response); |
395 | return body; | 395 | return body; |
396 | } | 396 | } |
397 | 397 | ||
398 | /* the range has to start at 1!!! not with 0!!!! */ | 398 | /* the range has to start at 1!!! not with 0!!!! */ |
399 | set = mailimap_set_new_interval( mail.getNumber(),mail.getNumber() ); | 399 | set = mailimap_set_new_interval( mail.getNumber(),mail.getNumber() ); |
400 | fetchAtt = mailimap_fetch_att_new_bodystructure(); | 400 | fetchAtt = mailimap_fetch_att_new_bodystructure(); |
401 | fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); | 401 | fetchType = mailimap_fetch_type_new_fetch_att(fetchAtt); |
402 | err = mailimap_fetch( m_imap, set, fetchType, &result ); | 402 | err = mailimap_fetch( m_imap, set, fetchType, &result ); |
403 | mailimap_set_free( set ); | 403 | mailimap_set_free( set ); |
404 | mailimap_fetch_type_free( fetchType ); | 404 | mailimap_fetch_type_free( fetchType ); |
405 | 405 | ||
406 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { | 406 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { |
407 | mailimap_msg_att * msg_att; | 407 | mailimap_msg_att * msg_att; |
408 | msg_att = (mailimap_msg_att*)current->data; | 408 | msg_att = (mailimap_msg_att*)current->data; |
409 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->att_list->first->data; | 409 | mailimap_msg_att_item*item = (mailimap_msg_att_item*)msg_att->att_list->first->data; |
410 | QValueList<int> path; | 410 | QValueList<int> path; |
411 | body_desc = item->att_data.att_static->att_data.att_body; | 411 | body_desc = item->att_data.att_static->att_data.att_body; |
412 | traverseBody(mail,body_desc,body,0,path); | 412 | traverseBody(mail,body_desc,body,0,path); |
413 | } else { | 413 | } else { |
414 | qDebug("error fetching body: %s",m_imap->imap_response); | 414 | qDebug("error fetching body: %s",m_imap->imap_response); |
415 | } | 415 | } |
416 | if (result) mailimap_fetch_list_free(result); | 416 | if (result) mailimap_fetch_list_free(result); |
417 | return body; | 417 | return body; |
418 | } | 418 | } |
419 | 419 | ||
420 | QStringList IMAPwrapper::address_list_to_stringlist(clist*list) | 420 | QStringList IMAPwrapper::address_list_to_stringlist(clist*list) |
421 | { | 421 | { |
422 | QStringList l; | 422 | QStringList l; |
423 | QString from; | 423 | QString from; |
424 | bool named_from; | 424 | bool named_from; |
425 | clistcell *current = NULL; | 425 | clistcell *current = NULL; |
426 | mailimap_address * current_address=NULL; | 426 | mailimap_address * current_address=NULL; |
427 | if (!list) { | 427 | if (!list) { |
428 | return l; | 428 | return l; |
429 | } | 429 | } |
430 | unsigned int count = 0; | 430 | unsigned int count = 0; |
431 | for (current=clist_begin(list);current!= NULL;current=clist_next(current)) { | 431 | for (current=clist_begin(list);current!= NULL;current=clist_next(current)) { |
432 | from = ""; | 432 | from = ""; |
433 | named_from = false; | 433 | named_from = false; |
434 | current_address=(mailimap_address*)current->data; | 434 | current_address=(mailimap_address*)current->data; |
435 | if (current_address->ad_personal_name){ | 435 | if (current_address->ad_personal_name){ |
436 | from+=convert_String((const char*)current_address->ad_personal_name); | 436 | from+=convert_String((const char*)current_address->ad_personal_name); |
437 | from+=" "; | 437 | from+=" "; |
438 | named_from = true; | 438 | named_from = true; |
439 | } | 439 | } |
440 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { | 440 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { |
441 | from+="<"; | 441 | from+="<"; |
442 | } | 442 | } |
443 | if (current_address->ad_mailbox_name) { | 443 | if (current_address->ad_mailbox_name) { |
444 | from+=QString(current_address->ad_mailbox_name); | 444 | from+=QString(current_address->ad_mailbox_name); |
445 | from+="@"; | 445 | from+="@"; |
446 | } | 446 | } |
447 | if (current_address->ad_host_name) { | 447 | if (current_address->ad_host_name) { |
448 | from+=QString(current_address->ad_host_name); | 448 | from+=QString(current_address->ad_host_name); |
449 | } | 449 | } |
450 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { | 450 | if (named_from && (current_address->ad_mailbox_name || current_address->ad_host_name)) { |
451 | from+=">"; | 451 | from+=">"; |
452 | } | 452 | } |
453 | l.append(QString(from)); | 453 | l.append(QString(from)); |
454 | if (++count > 99) { | 454 | if (++count > 99) { |
455 | break; | 455 | break; |
456 | } | 456 | } |
457 | } | 457 | } |
458 | return l; | 458 | return l; |
459 | } | 459 | } |
460 | 460 | ||
461 | encodedString*IMAPwrapper::fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call) | 461 | encodedString*IMAPwrapper::fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call) |
462 | { | 462 | { |
463 | encodedString*res=new encodedString; | 463 | encodedString*res=new encodedString; |
464 | const char*mb; | 464 | const char*mb; |
465 | int err; | 465 | int err; |
466 | mailimap_fetch_type *fetchType; | 466 | mailimap_fetch_type *fetchType; |
467 | mailimap_set *set; | 467 | mailimap_set *set; |
468 | clistcell*current,*cur; | 468 | clistcell*current,*cur; |
469 | 469 | ||
470 | login(); | 470 | login(); |
471 | if (!m_imap) { | 471 | if (!m_imap) { |
472 | return res; | 472 | return res; |
473 | } | 473 | } |
474 | if (!internal_call) { | 474 | if (!internal_call) { |
475 | mb = mail.getMbox().latin1(); | 475 | mb = mail.getMbox().latin1(); |
476 | err = mailimap_select( m_imap, (char*)mb); | 476 | err = mailimap_select( m_imap, (char*)mb); |
477 | if ( err != MAILIMAP_NO_ERROR ) { | 477 | if ( err != MAILIMAP_NO_ERROR ) { |
478 | qDebug("error selecting mailbox: %s",m_imap->imap_response); | 478 | qDebug("error selecting mailbox: %s",m_imap->imap_response); |
479 | return res; | 479 | return res; |
480 | } | 480 | } |
481 | } | 481 | } |
482 | set = mailimap_set_new_single(mail.getNumber()); | 482 | set = mailimap_set_new_single(mail.getNumber()); |
483 | clist*id_list=clist_new(); | 483 | clist*id_list=clist_new(); |
484 | for (unsigned j=0; j < path.count();++j) { | 484 | for (unsigned j=0; j < path.count();++j) { |
485 | uint32_t * p_id = (uint32_t *)malloc(sizeof(*p_id)); | 485 | uint32_t * p_id = (uint32_t *)malloc(sizeof(*p_id)); |
486 | *p_id = path[j]; | 486 | *p_id = path[j]; |
487 | clist_append(id_list,p_id); | 487 | clist_append(id_list,p_id); |
488 | } | 488 | } |
489 | mailimap_section_part * section_part = mailimap_section_part_new(id_list); | 489 | mailimap_section_part * section_part = mailimap_section_part_new(id_list); |
490 | mailimap_section_spec * section_spec = mailimap_section_spec_new(MAILIMAP_SECTION_SPEC_SECTION_PART, NULL, section_part, NULL); | 490 | mailimap_section_spec * section_spec = mailimap_section_spec_new(MAILIMAP_SECTION_SPEC_SECTION_PART, NULL, section_part, NULL); |
491 | mailimap_section * section = mailimap_section_new(section_spec); | 491 | mailimap_section * section = mailimap_section_new(section_spec); |
492 | mailimap_fetch_att * fetch_att = mailimap_fetch_att_new_body_section(section); | 492 | mailimap_fetch_att * fetch_att = mailimap_fetch_att_new_body_section(section); |
493 | 493 | ||
494 | fetchType = mailimap_fetch_type_new_fetch_att(fetch_att); | 494 | fetchType = mailimap_fetch_type_new_fetch_att(fetch_att); |
495 | 495 | ||
496 | clist*result = 0; | 496 | clist*result = 0; |
497 | 497 | ||
498 | err = mailimap_fetch( m_imap, set, fetchType, &result ); | 498 | err = mailimap_fetch( m_imap, set, fetchType, &result ); |
499 | mailimap_set_free( set ); | 499 | mailimap_set_free( set ); |
500 | mailimap_fetch_type_free( fetchType ); | 500 | mailimap_fetch_type_free( fetchType ); |
501 | 501 | ||
502 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { | 502 | if (err == MAILIMAP_NO_ERROR && (current=clist_begin(result)) ) { |
503 | mailimap_msg_att * msg_att; | 503 | mailimap_msg_att * msg_att; |
504 | msg_att = (mailimap_msg_att*)current->data; | 504 | msg_att = (mailimap_msg_att*)current->data; |
505 | mailimap_msg_att_item*msg_att_item; | 505 | mailimap_msg_att_item*msg_att_item; |
506 | for(cur = clist_begin(msg_att->att_list) ; cur != NULL ; cur = clist_next(cur)) { | 506 | for(cur = clist_begin(msg_att->att_list) ; cur != NULL ; cur = clist_next(cur)) { |
507 | msg_att_item = (mailimap_msg_att_item*)clist_content(cur); | 507 | msg_att_item = (mailimap_msg_att_item*)clist_content(cur); |
508 | if (msg_att_item->att_type == MAILIMAP_MSG_ATT_ITEM_STATIC) { | 508 | if (msg_att_item->att_type == MAILIMAP_MSG_ATT_ITEM_STATIC) { |
509 | if (msg_att_item->att_data.att_static->att_type == MAILIMAP_MSG_ATT_BODY_SECTION) { | 509 | if (msg_att_item->att_data.att_static->att_type == MAILIMAP_MSG_ATT_BODY_SECTION) { |
510 | char*text = msg_att_item->att_data.att_static->att_data.att_body_section->sec_body_part; | 510 | char*text = msg_att_item->att_data.att_static->att_data.att_body_section->sec_body_part; |
511 | /* detach - we take over the content */ | 511 | /* detach - we take over the content */ |
512 | msg_att_item->att_data.att_static->att_data.att_body_section->sec_body_part = 0L; | 512 | msg_att_item->att_data.att_static->att_data.att_body_section->sec_body_part = 0L; |
513 | res->setContent(text,msg_att_item->att_data.att_static->att_data.att_body_section->sec_length); | 513 | res->setContent(text,msg_att_item->att_data.att_static->att_data.att_body_section->sec_length); |
514 | } | 514 | } |
515 | } | 515 | } |
516 | } | 516 | } |
517 | } else { | 517 | } else { |
518 | qDebug("error fetching text: %s",m_imap->imap_response); | 518 | qDebug("error fetching text: %s",m_imap->imap_response); |
519 | } | 519 | } |
520 | if (result) mailimap_fetch_list_free(result); | 520 | if (result) mailimap_fetch_list_free(result); |
521 | return res; | 521 | return res; |
522 | } | 522 | } |
523 | 523 | ||
524 | /* current_recursion is for recursive calls. | 524 | /* current_recursion is for recursive calls. |
525 | current_count means the position inside the internal loop! */ | 525 | current_count means the position inside the internal loop! */ |
526 | void IMAPwrapper::traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body, | 526 | void IMAPwrapper::traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body, |
527 | int current_recursion,QValueList<int>recList,int current_count) | 527 | int current_recursion,QValueList<int>recList,int current_count) |
528 | { | 528 | { |
529 | if (!body || current_recursion>=10) { | 529 | if (!body || current_recursion>=10) { |
530 | return; | 530 | return; |
531 | } | 531 | } |
532 | switch (body->bd_type) { | 532 | switch (body->bd_type) { |
533 | case MAILIMAP_BODY_1PART: | 533 | case MAILIMAP_BODY_1PART: |
534 | { | 534 | { |
535 | QValueList<int>countlist = recList; | 535 | QValueList<int>countlist = recList; |
536 | countlist.append(current_count); | 536 | countlist.append(current_count); |
537 | RecPart currentPart; | 537 | RecPart currentPart; |
538 | mailimap_body_type_1part*part1 = body->bd_data.bd_body_1part; | 538 | mailimap_body_type_1part*part1 = body->bd_data.bd_body_1part; |
539 | QString id(""); | 539 | QString id(""); |
540 | currentPart.setPositionlist(countlist); | 540 | currentPart.setPositionlist(countlist); |
541 | for (unsigned int j = 0; j < countlist.count();++j) { | 541 | for (unsigned int j = 0; j < countlist.count();++j) { |
542 | id+=(j>0?" ":""); | 542 | id+=(j>0?" ":""); |
543 | id+=QString("%1").arg(countlist[j]); | 543 | id+=QString("%1").arg(countlist[j]); |
544 | } | 544 | } |
545 | qDebug("ID = %s",id.latin1()); | 545 | qDebug("ID = %s",id.latin1()); |
546 | currentPart.setIdentifier(id); | 546 | currentPart.setIdentifier(id); |
547 | fillSinglePart(currentPart,part1); | 547 | fillSinglePart(currentPart,part1); |
548 | /* important: Check for is NULL 'cause a body can be empty! | 548 | /* important: Check for is NULL 'cause a body can be empty! |
549 | And we put it only into the mail if it is the FIRST part */ | 549 | And we put it only into the mail if it is the FIRST part */ |
550 | if (part1->bd_type==MAILIMAP_BODY_TYPE_1PART_TEXT && target_body.Bodytext().isNull() && countlist[0]==1) { | 550 | if (part1->bd_type==MAILIMAP_BODY_TYPE_1PART_TEXT && target_body.Bodytext().isNull() && countlist[0]==1) { |
551 | QString body_text = fetchTextPart(mail,countlist,true,currentPart.Encoding()); | 551 | QString body_text = fetchTextPart(mail,countlist,true,currentPart.Encoding()); |
552 | target_body.setDescription(currentPart); | 552 | target_body.setDescription(currentPart); |
553 | target_body.setBodytext(body_text); | 553 | target_body.setBodytext(body_text); |
554 | if (countlist.count()>1) { | 554 | if (countlist.count()>1) { |
555 | target_body.addPart(currentPart); | 555 | target_body.addPart(currentPart); |
556 | } | 556 | } |
557 | } else { | 557 | } else { |
558 | target_body.addPart(currentPart); | 558 | target_body.addPart(currentPart); |
559 | } | 559 | } |
560 | if (part1->bd_type==MAILIMAP_BODY_TYPE_1PART_MSG) { | 560 | if (part1->bd_type==MAILIMAP_BODY_TYPE_1PART_MSG) { |
561 | traverseBody(mail,part1->bd_data.bd_type_msg->bd_body,target_body,current_recursion+1,countlist); | 561 | traverseBody(mail,part1->bd_data.bd_type_msg->bd_body,target_body,current_recursion+1,countlist); |
562 | } | 562 | } |
563 | } | 563 | } |
564 | break; | 564 | break; |
565 | case MAILIMAP_BODY_MPART: | 565 | case MAILIMAP_BODY_MPART: |
566 | { | 566 | { |
567 | QValueList<int>countlist = recList; | 567 | QValueList<int>countlist = recList; |
568 | clistcell*current=0; | 568 | clistcell*current=0; |
569 | mailimap_body*current_body=0; | 569 | mailimap_body*current_body=0; |
570 | unsigned int ccount = 1; | 570 | unsigned int ccount = 1; |
571 | mailimap_body_type_mpart*mailDescription = body->bd_data.bd_body_mpart; | 571 | mailimap_body_type_mpart*mailDescription = body->bd_data.bd_body_mpart; |
572 | for (current=clist_begin(mailDescription->bd_list);current!=0;current=clist_next(current)) { | 572 | for (current=clist_begin(mailDescription->bd_list);current!=0;current=clist_next(current)) { |
573 | current_body = (mailimap_body*)current->data; | 573 | current_body = (mailimap_body*)current->data; |
574 | if (current_body->bd_type==MAILIMAP_BODY_MPART) { | 574 | if (current_body->bd_type==MAILIMAP_BODY_MPART) { |
575 | RecPart targetPart; | 575 | RecPart targetPart; |
576 | targetPart.setType("multipart"); | 576 | targetPart.setType("multipart"); |
577 | fillMultiPart(targetPart,mailDescription); | 577 | fillMultiPart(targetPart,mailDescription); |
578 | countlist.append(current_count); | 578 | countlist.append(current_count); |
579 | targetPart.setPositionlist(countlist); | 579 | targetPart.setPositionlist(countlist); |
580 | target_body.addPart(targetPart); | 580 | target_body.addPart(targetPart); |
581 | QString id(""); | 581 | QString id(""); |
582 | for (unsigned int j = 0; j < countlist.count();++j) { | 582 | for (unsigned int j = 0; j < countlist.count();++j) { |
583 | id+=(j>0?" ":""); | 583 | id+=(j>0?" ":""); |
584 | id+=QString("%1").arg(countlist[j]); | 584 | id+=QString("%1").arg(countlist[j]); |
585 | } | 585 | } |
586 | qDebug("ID(mpart) = %s",id.latin1()); | 586 | qDebug("ID(mpart) = %s",id.latin1()); |
587 | } | 587 | } |
588 | traverseBody(mail,current_body,target_body,current_recursion+1,countlist,ccount); | 588 | traverseBody(mail,current_body,target_body,current_recursion+1,countlist,ccount); |
589 | if (current_body->bd_type==MAILIMAP_BODY_MPART) { | 589 | if (current_body->bd_type==MAILIMAP_BODY_MPART) { |
590 | countlist = recList; | 590 | countlist = recList; |
591 | } | 591 | } |
592 | ++ccount; | 592 | ++ccount; |
593 | } | 593 | } |
594 | } | 594 | } |
595 | break; | 595 | break; |
596 | default: | 596 | default: |
597 | break; | 597 | break; |
598 | } | 598 | } |
599 | } | 599 | } |
600 | 600 | ||
601 | void IMAPwrapper::fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description) | 601 | void IMAPwrapper::fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description) |
602 | { | 602 | { |
603 | if (!Description) { | 603 | if (!Description) { |
604 | return; | 604 | return; |
605 | } | 605 | } |
606 | switch (Description->bd_type) { | 606 | switch (Description->bd_type) { |
607 | case MAILIMAP_BODY_TYPE_1PART_TEXT: | 607 | case MAILIMAP_BODY_TYPE_1PART_TEXT: |
608 | target_part.setType("text"); | 608 | target_part.setType("text"); |
609 | fillSingleTextPart(target_part,Description->bd_data.bd_type_text); | 609 | fillSingleTextPart(target_part,Description->bd_data.bd_type_text); |
610 | break; | 610 | break; |
611 | case MAILIMAP_BODY_TYPE_1PART_BASIC: | 611 | case MAILIMAP_BODY_TYPE_1PART_BASIC: |
612 | fillSingleBasicPart(target_part,Description->bd_data.bd_type_basic); | 612 | fillSingleBasicPart(target_part,Description->bd_data.bd_type_basic); |
613 | break; | 613 | break; |
614 | case MAILIMAP_BODY_TYPE_1PART_MSG: | 614 | case MAILIMAP_BODY_TYPE_1PART_MSG: |
615 | target_part.setType("message"); | 615 | target_part.setType("message"); |
616 | fillSingleMsgPart(target_part,Description->bd_data.bd_type_msg); | 616 | fillSingleMsgPart(target_part,Description->bd_data.bd_type_msg); |
617 | break; | 617 | break; |
618 | default: | 618 | default: |
619 | break; | 619 | break; |
620 | } | 620 | } |
621 | } | 621 | } |
622 | 622 | ||
623 | void IMAPwrapper::fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which) | 623 | void IMAPwrapper::fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which) |
624 | { | 624 | { |
625 | if (!which) { | 625 | if (!which) { |
626 | return; | 626 | return; |
627 | } | 627 | } |
628 | QString sub; | 628 | QString sub; |
629 | sub = which->bd_media_text; | 629 | sub = which->bd_media_text; |
630 | qDebug("Type= text/%s",which->bd_media_text); | 630 | qDebug("Type= text/%s",which->bd_media_text); |
631 | target_part.setSubtype(sub.lower()); | 631 | target_part.setSubtype(sub.lower()); |
632 | target_part.setLines(which->bd_lines); | 632 | target_part.setLines(which->bd_lines); |
633 | fillBodyFields(target_part,which->bd_fields); | 633 | fillBodyFields(target_part,which->bd_fields); |
634 | } | 634 | } |
635 | 635 | ||
636 | void IMAPwrapper::fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which) | 636 | void IMAPwrapper::fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which) |
637 | { | 637 | { |
638 | if (!which) { | 638 | if (!which) { |
639 | return; | 639 | return; |
640 | } | 640 | } |
641 | target_part.setSubtype("rfc822"); | 641 | target_part.setSubtype("rfc822"); |
642 | qDebug("Message part"); | 642 | qDebug("Message part"); |
643 | /* we set this type to text/plain */ | 643 | /* we set this type to text/plain */ |
644 | target_part.setLines(which->bd_lines); | 644 | target_part.setLines(which->bd_lines); |
645 | fillBodyFields(target_part,which->bd_fields); | 645 | fillBodyFields(target_part,which->bd_fields); |
646 | } | 646 | } |
647 | 647 | ||
648 | void IMAPwrapper::fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which) | 648 | void IMAPwrapper::fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which) |
649 | { | 649 | { |
650 | if (!which) return; | 650 | if (!which) return; |
651 | QString sub = which->bd_media_subtype; | 651 | QString sub = which->bd_media_subtype; |
652 | target_part.setSubtype(sub.lower()); | 652 | target_part.setSubtype(sub.lower()); |
653 | if (which->bd_ext_mpart && which->bd_ext_mpart->bd_parameter && which->bd_ext_mpart->bd_parameter->pa_list) { | 653 | if (which->bd_ext_mpart && which->bd_ext_mpart->bd_parameter && which->bd_ext_mpart->bd_parameter->pa_list) { |
654 | clistcell*cur = 0; | 654 | clistcell*cur = 0; |
655 | mailimap_single_body_fld_param*param=0; | 655 | mailimap_single_body_fld_param*param=0; |
656 | for (cur = clist_begin(which->bd_ext_mpart->bd_parameter->pa_list);cur!=NULL;cur=clist_next(cur)) { | 656 | for (cur = clist_begin(which->bd_ext_mpart->bd_parameter->pa_list);cur!=NULL;cur=clist_next(cur)) { |
657 | param = (mailimap_single_body_fld_param*)cur->data; | 657 | param = (mailimap_single_body_fld_param*)cur->data; |
658 | if (param) { | 658 | if (param) { |
659 | target_part.addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); | 659 | target_part.addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); |
660 | } | 660 | } |
661 | } | 661 | } |
662 | } | 662 | } |
663 | } | 663 | } |
664 | 664 | ||
665 | void IMAPwrapper::fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which) | 665 | void IMAPwrapper::fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which) |
666 | { | 666 | { |
667 | if (!which) { | 667 | if (!which) { |
668 | return; | 668 | return; |
669 | } | 669 | } |
670 | QString type,sub; | 670 | QString type,sub; |
671 | switch (which->bd_media_basic->med_type) { | 671 | switch (which->bd_media_basic->med_type) { |
672 | case MAILIMAP_MEDIA_BASIC_APPLICATION: | 672 | case MAILIMAP_MEDIA_BASIC_APPLICATION: |
673 | type = "application"; | 673 | type = "application"; |
674 | break; | 674 | break; |
675 | case MAILIMAP_MEDIA_BASIC_AUDIO: | 675 | case MAILIMAP_MEDIA_BASIC_AUDIO: |
676 | type = "audio"; | 676 | type = "audio"; |
677 | break; | 677 | break; |
678 | case MAILIMAP_MEDIA_BASIC_IMAGE: | 678 | case MAILIMAP_MEDIA_BASIC_IMAGE: |
679 | type = "image"; | 679 | type = "image"; |
680 | break; | 680 | break; |
681 | case MAILIMAP_MEDIA_BASIC_MESSAGE: | 681 | case MAILIMAP_MEDIA_BASIC_MESSAGE: |
682 | type = "message"; | 682 | type = "message"; |
683 | break; | 683 | break; |
684 | case MAILIMAP_MEDIA_BASIC_VIDEO: | 684 | case MAILIMAP_MEDIA_BASIC_VIDEO: |
685 | type = "video"; | 685 | type = "video"; |
686 | break; | 686 | break; |
687 | case MAILIMAP_MEDIA_BASIC_OTHER: | 687 | case MAILIMAP_MEDIA_BASIC_OTHER: |
688 | default: | 688 | default: |
689 | if (which->bd_media_basic->med_basic_type) { | 689 | if (which->bd_media_basic->med_basic_type) { |
690 | type = which->bd_media_basic->med_basic_type; | 690 | type = which->bd_media_basic->med_basic_type; |
691 | } else { | 691 | } else { |
692 | type = ""; | 692 | type = ""; |
693 | } | 693 | } |
694 | break; | 694 | break; |
695 | } | 695 | } |
696 | if (which->bd_media_basic->med_subtype) { | 696 | if (which->bd_media_basic->med_subtype) { |
697 | sub = which->bd_media_basic->med_subtype; | 697 | sub = which->bd_media_basic->med_subtype; |
698 | } else { | 698 | } else { |
699 | sub = ""; | 699 | sub = ""; |
700 | } | 700 | } |
701 | qDebug("Type = %s/%s",type.latin1(),sub.latin1()); | 701 | qDebug("Type = %s/%s",type.latin1(),sub.latin1()); |
702 | target_part.setType(type.lower()); | 702 | target_part.setType(type.lower()); |
703 | target_part.setSubtype(sub.lower()); | 703 | target_part.setSubtype(sub.lower()); |
704 | fillBodyFields(target_part,which->bd_fields); | 704 | fillBodyFields(target_part,which->bd_fields); |
705 | } | 705 | } |
706 | 706 | ||
707 | void IMAPwrapper::fillBodyFields(RecPart&target_part,mailimap_body_fields*which) | 707 | void IMAPwrapper::fillBodyFields(RecPart&target_part,mailimap_body_fields*which) |
708 | { | 708 | { |
709 | if (!which) return; | 709 | if (!which) return; |
710 | if (which->bd_parameter && which->bd_parameter->pa_list && which->bd_parameter->pa_list->count>0) { | 710 | if (which->bd_parameter && which->bd_parameter->pa_list && which->bd_parameter->pa_list->count>0) { |
711 | clistcell*cur; | 711 | clistcell*cur; |
712 | mailimap_single_body_fld_param*param=0; | 712 | mailimap_single_body_fld_param*param=0; |
713 | for (cur = clist_begin(which->bd_parameter->pa_list);cur!=NULL;cur=clist_next(cur)) { | 713 | for (cur = clist_begin(which->bd_parameter->pa_list);cur!=NULL;cur=clist_next(cur)) { |
714 | param = (mailimap_single_body_fld_param*)cur->data; | 714 | param = (mailimap_single_body_fld_param*)cur->data; |
715 | if (param) { | 715 | if (param) { |
716 | target_part.addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); | 716 | target_part.addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); |
717 | } | 717 | } |
718 | } | 718 | } |
719 | } | 719 | } |
720 | mailimap_body_fld_enc*enc = which->bd_encoding; | 720 | mailimap_body_fld_enc*enc = which->bd_encoding; |
721 | QString encoding(""); | 721 | QString encoding(""); |
722 | switch (enc->enc_type) { | 722 | switch (enc->enc_type) { |
723 | case MAILIMAP_BODY_FLD_ENC_7BIT: | 723 | case MAILIMAP_BODY_FLD_ENC_7BIT: |
724 | encoding = "7bit"; | 724 | encoding = "7bit"; |
725 | break; | 725 | break; |
726 | case MAILIMAP_BODY_FLD_ENC_8BIT: | 726 | case MAILIMAP_BODY_FLD_ENC_8BIT: |
727 | encoding = "8bit"; | 727 | encoding = "8bit"; |
728 | break; | 728 | break; |
729 | case MAILIMAP_BODY_FLD_ENC_BINARY: | 729 | case MAILIMAP_BODY_FLD_ENC_BINARY: |
730 | encoding="binary"; | 730 | encoding="binary"; |
731 | break; | 731 | break; |
732 | case MAILIMAP_BODY_FLD_ENC_BASE64: | 732 | case MAILIMAP_BODY_FLD_ENC_BASE64: |
733 | encoding="base64"; | 733 | encoding="base64"; |
734 | break; | 734 | break; |
735 | case MAILIMAP_BODY_FLD_ENC_QUOTED_PRINTABLE: | 735 | case MAILIMAP_BODY_FLD_ENC_QUOTED_PRINTABLE: |
736 | encoding="quoted-printable"; | 736 | encoding="quoted-printable"; |
737 | break; | 737 | break; |
738 | case MAILIMAP_BODY_FLD_ENC_OTHER: | 738 | case MAILIMAP_BODY_FLD_ENC_OTHER: |
739 | default: | 739 | default: |
740 | if (enc->enc_value) { | 740 | if (enc->enc_value) { |
741 | char*t=enc->enc_value; | 741 | char*t=enc->enc_value; |
742 | encoding=QString(enc->enc_value); | 742 | encoding=QString(enc->enc_value); |
743 | enc->enc_value=0L; | 743 | enc->enc_value=0L; |
744 | free(t); | 744 | free(t); |
745 | } | 745 | } |
746 | } | 746 | } |
747 | if (which->bd_description) { | 747 | if (which->bd_description) { |
748 | target_part.setDescription(QString(which->bd_description)); | 748 | target_part.setDescription(QString(which->bd_description)); |
749 | } | 749 | } |
750 | target_part.setEncoding(encoding); | 750 | target_part.setEncoding(encoding); |
751 | target_part.setSize(which->bd_size); | 751 | target_part.setSize(which->bd_size); |
752 | } | 752 | } |
753 | 753 | ||
754 | void IMAPwrapper::deleteMail(const RecMail&mail) | 754 | void IMAPwrapper::deleteMail(const RecMail&mail) |
755 | { | 755 | { |
756 | mailimap_flag_list*flist; | 756 | mailimap_flag_list*flist; |
757 | mailimap_set *set; | 757 | mailimap_set *set; |
758 | mailimap_store_att_flags * store_flags; | 758 | mailimap_store_att_flags * store_flags; |
759 | int err; | 759 | int err; |
760 | login(); | 760 | login(); |
761 | if (!m_imap) { | 761 | if (!m_imap) { |
762 | return; | 762 | return; |
763 | } | 763 | } |
764 | const char *mb = mail.getMbox().latin1(); | 764 | const char *mb = mail.getMbox().latin1(); |
765 | err = mailimap_select( m_imap, (char*)mb); | 765 | err = mailimap_select( m_imap, (char*)mb); |
766 | if ( err != MAILIMAP_NO_ERROR ) { | 766 | if ( err != MAILIMAP_NO_ERROR ) { |
767 | qDebug("error selecting mailbox for delete: %s",m_imap->imap_response); | 767 | qDebug("error selecting mailbox for delete: %s",m_imap->imap_response); |
768 | return; | 768 | return; |
769 | } | 769 | } |
770 | flist = mailimap_flag_list_new_empty(); | 770 | flist = mailimap_flag_list_new_empty(); |
771 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); | 771 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); |
772 | store_flags = mailimap_store_att_flags_new_set_flags(flist); | 772 | store_flags = mailimap_store_att_flags_new_set_flags(flist); |
773 | set = mailimap_set_new_single(mail.getNumber()); | 773 | set = mailimap_set_new_single(mail.getNumber()); |
774 | err = mailimap_store(m_imap,set,store_flags); | 774 | err = mailimap_store(m_imap,set,store_flags); |
775 | mailimap_set_free( set ); | 775 | mailimap_set_free( set ); |
776 | mailimap_store_att_flags_free(store_flags); | 776 | mailimap_store_att_flags_free(store_flags); |
777 | 777 | ||
778 | if (err != MAILIMAP_NO_ERROR) { | 778 | if (err != MAILIMAP_NO_ERROR) { |
779 | qDebug("error deleting mail: %s",m_imap->imap_response); | 779 | qDebug("error deleting mail: %s",m_imap->imap_response); |
780 | return; | 780 | return; |
781 | } | 781 | } |
782 | qDebug("deleting mail: %s",m_imap->imap_response); | 782 | qDebug("deleting mail: %s",m_imap->imap_response); |
783 | /* should we realy do that at this moment? */ | 783 | /* should we realy do that at this moment? */ |
784 | err = mailimap_expunge(m_imap); | 784 | err = mailimap_expunge(m_imap); |
785 | if (err != MAILIMAP_NO_ERROR) { | 785 | if (err != MAILIMAP_NO_ERROR) { |
786 | qDebug("error deleting mail: %s",m_imap->imap_response); | 786 | qDebug("error deleting mail: %s",m_imap->imap_response); |
787 | } | 787 | } |
788 | qDebug("Delete successfull %s",m_imap->imap_response); | 788 | qDebug("Delete successfull %s",m_imap->imap_response); |
789 | } | 789 | } |
790 | 790 | ||
791 | void IMAPwrapper::answeredMail(const RecMail&mail) | 791 | void IMAPwrapper::answeredMail(const RecMail&mail) |
792 | { | 792 | { |
793 | mailimap_flag_list*flist; | 793 | mailimap_flag_list*flist; |
794 | mailimap_set *set; | 794 | mailimap_set *set; |
795 | mailimap_store_att_flags * store_flags; | 795 | mailimap_store_att_flags * store_flags; |
796 | int err; | 796 | int err; |
797 | login(); | 797 | login(); |
798 | if (!m_imap) { | 798 | if (!m_imap) { |
799 | return; | 799 | return; |
800 | } | 800 | } |
801 | const char *mb = mail.getMbox().latin1(); | 801 | const char *mb = mail.getMbox().latin1(); |
802 | err = mailimap_select( m_imap, (char*)mb); | 802 | err = mailimap_select( m_imap, (char*)mb); |
803 | if ( err != MAILIMAP_NO_ERROR ) { | 803 | if ( err != MAILIMAP_NO_ERROR ) { |
804 | qDebug("error selecting mailbox for mark: %s",m_imap->imap_response); | 804 | qDebug("error selecting mailbox for mark: %s",m_imap->imap_response); |
805 | return; | 805 | return; |
806 | } | 806 | } |
807 | flist = mailimap_flag_list_new_empty(); | 807 | flist = mailimap_flag_list_new_empty(); |
808 | mailimap_flag_list_add(flist,mailimap_flag_new_answered()); | 808 | mailimap_flag_list_add(flist,mailimap_flag_new_answered()); |
809 | store_flags = mailimap_store_att_flags_new_add_flags(flist); | 809 | store_flags = mailimap_store_att_flags_new_add_flags(flist); |
810 | set = mailimap_set_new_single(mail.getNumber()); | 810 | set = mailimap_set_new_single(mail.getNumber()); |
811 | err = mailimap_store(m_imap,set,store_flags); | 811 | err = mailimap_store(m_imap,set,store_flags); |
812 | mailimap_set_free( set ); | 812 | mailimap_set_free( set ); |
813 | mailimap_store_att_flags_free(store_flags); | 813 | mailimap_store_att_flags_free(store_flags); |
814 | 814 | ||
815 | if (err != MAILIMAP_NO_ERROR) { | 815 | if (err != MAILIMAP_NO_ERROR) { |
816 | qDebug("error marking mail: %s",m_imap->imap_response); | 816 | qDebug("error marking mail: %s",m_imap->imap_response); |
817 | return; | 817 | return; |
818 | } | 818 | } |
819 | } | 819 | } |
820 | 820 | ||
821 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call,const QString&enc) | 821 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call,const QString&enc) |
822 | { | 822 | { |
823 | QString body(""); | 823 | QString body(""); |
824 | encodedString*res = fetchRawPart(mail,path,internal_call); | 824 | encodedString*res = fetchRawPart(mail,path,internal_call); |
825 | encodedString*r = decode_String(res,enc); | 825 | encodedString*r = decode_String(res,enc); |
826 | delete res; | 826 | delete res; |
827 | if (r) { | 827 | if (r) { |
828 | if (r->Length()>0) { | 828 | if (r->Length()>0) { |
829 | body = r->Content(); | 829 | body = r->Content(); |
830 | } | 830 | } |
831 | delete r; | 831 | delete r; |
832 | } | 832 | } |
833 | return body; | 833 | return body; |
834 | } | 834 | } |
835 | 835 | ||
836 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const RecPart&part) | 836 | QString IMAPwrapper::fetchTextPart(const RecMail&mail,const RecPart&part) |
837 | { | 837 | { |
838 | return fetchTextPart(mail,part.Positionlist(),false,part.Encoding()); | 838 | return fetchTextPart(mail,part.Positionlist(),false,part.Encoding()); |
839 | } | 839 | } |
840 | 840 | ||
841 | encodedString* IMAPwrapper::fetchDecodedPart(const RecMail&mail,const RecPart&part) | 841 | encodedString* IMAPwrapper::fetchDecodedPart(const RecMail&mail,const RecPart&part) |
842 | { | 842 | { |
843 | encodedString*res = fetchRawPart(mail,part.Positionlist(),false); | 843 | encodedString*res = fetchRawPart(mail,part.Positionlist(),false); |
844 | encodedString*r = decode_String(res,part.Encoding()); | 844 | encodedString*r = decode_String(res,part.Encoding()); |
845 | delete res; | 845 | delete res; |
846 | return r; | 846 | return r; |
847 | } | 847 | } |
848 | 848 | ||
849 | encodedString* IMAPwrapper::fetchRawPart(const RecMail&mail,const RecPart&part) | 849 | encodedString* IMAPwrapper::fetchRawPart(const RecMail&mail,const RecPart&part) |
850 | { | 850 | { |
851 | return fetchRawPart(mail,part.Positionlist(),false); | 851 | return fetchRawPart(mail,part.Positionlist(),false); |
852 | } | 852 | } |
853 | 853 | ||
854 | int IMAPwrapper::deleteAllMail(const Folder*folder) | 854 | int IMAPwrapper::deleteAllMail(const Folder*folder) |
855 | { | 855 | { |
856 | login(); | 856 | login(); |
857 | if (!m_imap) { | 857 | if (!m_imap) { |
858 | return 0; | 858 | return 0; |
859 | } | 859 | } |
860 | mailimap_flag_list*flist; | 860 | mailimap_flag_list*flist; |
861 | mailimap_set *set; | 861 | mailimap_set *set; |
862 | mailimap_store_att_flags * store_flags; | 862 | mailimap_store_att_flags * store_flags; |
863 | int err = mailimap_select( m_imap, folder->getName().latin1()); | 863 | int err = mailimap_select( m_imap, folder->getName().latin1()); |
864 | if ( err != MAILIMAP_NO_ERROR ) { | 864 | if ( err != MAILIMAP_NO_ERROR ) { |
865 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); | 865 | Global::statusMessage(tr("error selecting mailbox: %1").arg(m_imap->imap_response)); |
866 | return 0; | 866 | return 0; |
867 | } | 867 | } |
868 | int last = m_imap->imap_selection_info->sel_exists; | 868 | int last = m_imap->imap_selection_info->sel_exists; |
869 | if (last == 0) { | 869 | if (last == 0) { |
870 | Global::statusMessage(tr("Mailbox has no mails!")); | 870 | Global::statusMessage(tr("Mailbox has no mails!")); |
871 | return 0; | 871 | return 0; |
872 | } | 872 | } |
873 | flist = mailimap_flag_list_new_empty(); | 873 | flist = mailimap_flag_list_new_empty(); |
874 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); | 874 | mailimap_flag_list_add(flist,mailimap_flag_new_deleted()); |
875 | store_flags = mailimap_store_att_flags_new_set_flags(flist); | 875 | store_flags = mailimap_store_att_flags_new_set_flags(flist); |
876 | set = mailimap_set_new_interval( 1, last ); | 876 | set = mailimap_set_new_interval( 1, last ); |
877 | err = mailimap_store(m_imap,set,store_flags); | 877 | err = mailimap_store(m_imap,set,store_flags); |
878 | mailimap_set_free( set ); | 878 | mailimap_set_free( set ); |
879 | mailimap_store_att_flags_free(store_flags); | 879 | mailimap_store_att_flags_free(store_flags); |
880 | if (err != MAILIMAP_NO_ERROR) { | 880 | if (err != MAILIMAP_NO_ERROR) { |
881 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); | 881 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); |
882 | return 0; | 882 | return 0; |
883 | } | 883 | } |
884 | qDebug("deleting mail: %s",m_imap->imap_response); | 884 | qDebug("deleting mail: %s",m_imap->imap_response); |
885 | /* should we realy do that at this moment? */ | 885 | /* should we realy do that at this moment? */ |
886 | err = mailimap_expunge(m_imap); | 886 | err = mailimap_expunge(m_imap); |
887 | if (err != MAILIMAP_NO_ERROR) { | 887 | if (err != MAILIMAP_NO_ERROR) { |
888 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); | 888 | Global::statusMessage(tr("error deleting mail: %s").arg(m_imap->imap_response)); |
889 | return 0; | 889 | return 0; |
890 | } | 890 | } |
891 | qDebug("Delete successfull %s",m_imap->imap_response); | 891 | qDebug("Delete successfull %s",m_imap->imap_response); |
892 | return 1; | 892 | return 1; |
893 | } | 893 | } |
894 | 894 | ||
895 | int IMAPwrapper::createMbox(const QString&folder,const Folder*parentfolder,const QString& delemiter,bool getsubfolder) | 895 | int IMAPwrapper::createMbox(const QString&folder,const Folder*parentfolder,const QString& delemiter,bool getsubfolder) |
896 | { | 896 | { |
897 | if (folder.length()==0) return 0; | 897 | if (folder.length()==0) return 0; |
898 | login(); | 898 | login(); |
899 | if (!m_imap) {return 0;} | 899 | if (!m_imap) {return 0;} |
900 | QString pre = account->getPrefix(); | 900 | QString pre = account->getPrefix(); |
901 | if (delemiter.length()>0 && pre.findRev(delemiter)!=pre.length()-1) { | 901 | if (delemiter.length()>0 && pre.findRev(delemiter)!=pre.length()-1) { |
902 | pre+=delemiter; | 902 | pre+=delemiter; |
903 | } | 903 | } |
904 | if (parentfolder) { | 904 | if (parentfolder) { |
905 | pre += parentfolder->getDisplayName()+delemiter; | 905 | pre += parentfolder->getDisplayName()+delemiter; |
906 | } | 906 | } |
907 | pre+=folder; | 907 | pre+=folder; |
908 | if (getsubfolder) { | 908 | if (getsubfolder) { |
909 | if (delemiter.length()>0) { | 909 | if (delemiter.length()>0) { |
910 | pre+=delemiter; | 910 | pre+=delemiter; |
911 | } else { | 911 | } else { |
912 | Global::statusMessage(tr("Cannot create folder %1 for holding subfolders").arg(pre)); | 912 | Global::statusMessage(tr("Cannot create folder %1 for holding subfolders").arg(pre)); |
913 | return 0; | 913 | return 0; |
914 | } | 914 | } |
915 | } | 915 | } |
916 | qDebug("Creating %s",pre.latin1()); | 916 | qDebug("Creating %s",pre.latin1()); |
917 | int res = mailimap_create(m_imap,pre.latin1()); | 917 | int res = mailimap_create(m_imap,pre.latin1()); |
918 | if (res != MAILIMAP_NO_ERROR) { | 918 | if (res != MAILIMAP_NO_ERROR) { |
919 | Global::statusMessage(tr("%1").arg(m_imap->imap_response)); | 919 | Global::statusMessage(tr("%1").arg(m_imap->imap_response)); |
920 | return 0; | 920 | return 0; |
921 | } | 921 | } |
922 | return 1; | 922 | return 1; |
923 | } | 923 | } |
924 | 924 | ||
925 | int IMAPwrapper::deleteMbox(const Folder*folder) | 925 | int IMAPwrapper::deleteMbox(const Folder*folder) |
926 | { | 926 | { |
927 | if (!folder) return 0; | 927 | if (!folder) return 0; |
928 | login(); | 928 | login(); |
929 | if (!m_imap) {return 0;} | 929 | if (!m_imap) {return 0;} |
930 | int res = mailimap_delete(m_imap,folder->getName()); | 930 | int res = mailimap_delete(m_imap,folder->getName()); |
931 | if (res != MAILIMAP_NO_ERROR) { | 931 | if (res != MAILIMAP_NO_ERROR) { |
932 | Global::statusMessage(tr("%1").arg(m_imap->imap_response)); | 932 | Global::statusMessage(tr("%1").arg(m_imap->imap_response)); |
933 | return 0; | 933 | return 0; |
934 | } | 934 | } |
935 | return 1; | 935 | return 1; |
936 | } | 936 | } |
937 | 937 | ||
938 | void IMAPwrapper::statusFolder(folderStat&target_stat,const QString & mailbox) | 938 | void IMAPwrapper::statusFolder(folderStat&target_stat,const QString & mailbox) |
939 | { | 939 | { |
940 | mailimap_status_att_list * att_list =0; | 940 | mailimap_status_att_list * att_list =0; |
941 | mailimap_mailbox_data_status * status=0; | 941 | mailimap_mailbox_data_status * status=0; |
942 | clistiter * cur = 0; | 942 | clistiter * cur = 0; |
943 | int r = 0; | 943 | int r = 0; |
944 | int res = 0; | 944 | int res = 0; |
945 | target_stat.message_count = 0; | 945 | target_stat.message_count = 0; |
946 | target_stat.message_unseen = 0; | 946 | target_stat.message_unseen = 0; |
947 | target_stat.message_recent = 0; | 947 | target_stat.message_recent = 0; |
948 | login(); | 948 | login(); |
949 | if (!m_imap) { | 949 | if (!m_imap) { |
950 | return; | 950 | return; |
951 | } | 951 | } |
952 | att_list = mailimap_status_att_list_new_empty(); | 952 | att_list = mailimap_status_att_list_new_empty(); |
953 | if (!att_list) return; | 953 | if (!att_list) return; |
954 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_MESSAGES); | 954 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_MESSAGES); |
955 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_RECENT); | 955 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_RECENT); |
956 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_UNSEEN); | 956 | r = mailimap_status_att_list_add(att_list, MAILIMAP_STATUS_ATT_UNSEEN); |
957 | r = mailimap_status(m_imap, mailbox.latin1(), att_list, &status); | 957 | r = mailimap_status(m_imap, mailbox.latin1(), att_list, &status); |
958 | for (cur = clist_begin(status->st_info_list); | 958 | for (cur = clist_begin(status->st_info_list); |
959 | cur != NULL ; cur = clist_next(cur)) { | 959 | cur != NULL ; cur = clist_next(cur)) { |
960 | mailimap_status_info * status_info; | 960 | mailimap_status_info * status_info; |
961 | status_info = (mailimap_status_info *)clist_content(cur); | 961 | status_info = (mailimap_status_info *)clist_content(cur); |
962 | switch (status_info->st_att) { | 962 | switch (status_info->st_att) { |
963 | case MAILIMAP_STATUS_ATT_MESSAGES: | 963 | case MAILIMAP_STATUS_ATT_MESSAGES: |
964 | target_stat.message_count = status_info->st_value; | 964 | target_stat.message_count = status_info->st_value; |
965 | break; | 965 | break; |
966 | case MAILIMAP_STATUS_ATT_RECENT: | 966 | case MAILIMAP_STATUS_ATT_RECENT: |
967 | target_stat.message_recent = status_info->st_value; | 967 | target_stat.message_recent = status_info->st_value; |
968 | break; | 968 | break; |
969 | case MAILIMAP_STATUS_ATT_UNSEEN: | 969 | case MAILIMAP_STATUS_ATT_UNSEEN: |
970 | target_stat.message_unseen = status_info->st_value; | 970 | target_stat.message_unseen = status_info->st_value; |
971 | break; | 971 | break; |
972 | } | 972 | } |
973 | } | 973 | } |
974 | mailimap_mailbox_data_status_free(status); | 974 | mailimap_mailbox_data_status_free(status); |
975 | mailimap_status_att_list_free(att_list); | 975 | mailimap_status_att_list_free(att_list); |
976 | } | 976 | } |
977 | |||
978 | void IMAPwrapper::storeMessage(const char*msg,size_t length, const QString&folder) | ||
979 | { | ||
980 | login(); | ||
981 | if (!m_imap) return; | ||
982 | if (!msg) return; | ||
983 | int r = mailimap_append(m_imap,(char*)folder.latin1(),0,0,msg,length); | ||
984 | if (r != MAILIMAP_NO_ERROR) { | ||
985 | Global::statusMessage("Error storing mail!"); | ||
986 | } | ||
987 | } | ||
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.h b/noncore/net/mail/libmailwrapper/imapwrapper.h index 8f5a2b5..a97f12d 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.h +++ b/noncore/net/mail/libmailwrapper/imapwrapper.h | |||
@@ -1,68 +1,69 @@ | |||
1 | #ifndef __IMAPWRAPPER | 1 | #ifndef __IMAPWRAPPER |
2 | #define __IMAPWRAPPER | 2 | #define __IMAPWRAPPER |
3 | 3 | ||
4 | #include <qlist.h> | 4 | #include <qlist.h> |
5 | #include "mailwrapper.h" | 5 | #include "mailwrapper.h" |
6 | #include "abstractmail.h" | 6 | #include "abstractmail.h" |
7 | #include <libetpan/clist.h> | 7 | #include <libetpan/clist.h> |
8 | 8 | ||
9 | struct mailimap; | 9 | struct mailimap; |
10 | struct mailimap_body; | 10 | struct mailimap_body; |
11 | struct mailimap_body_type_1part; | 11 | struct mailimap_body_type_1part; |
12 | struct mailimap_body_type_text; | 12 | struct mailimap_body_type_text; |
13 | struct mailimap_body_type_basic; | 13 | struct mailimap_body_type_basic; |
14 | struct mailimap_body_type_msg; | 14 | struct mailimap_body_type_msg; |
15 | struct mailimap_body_type_mpart; | 15 | struct mailimap_body_type_mpart; |
16 | struct mailimap_body_fields; | 16 | struct mailimap_body_fields; |
17 | struct mailimap_msg_att; | 17 | struct mailimap_msg_att; |
18 | class encodedString; | 18 | class encodedString; |
19 | 19 | ||
20 | class IMAPwrapper : public AbstractMail | 20 | class IMAPwrapper : public AbstractMail |
21 | { | 21 | { |
22 | Q_OBJECT | 22 | Q_OBJECT |
23 | public: | 23 | public: |
24 | IMAPwrapper( IMAPaccount *a ); | 24 | IMAPwrapper( IMAPaccount *a ); |
25 | virtual ~IMAPwrapper(); | 25 | virtual ~IMAPwrapper(); |
26 | virtual QList<Folder>* listFolders(); | 26 | virtual QList<Folder>* listFolders(); |
27 | virtual void listMessages(const QString & mailbox,QList<RecMail>&target ); | 27 | virtual void listMessages(const QString & mailbox,QList<RecMail>&target ); |
28 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX"); | 28 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX"); |
29 | 29 | ||
30 | virtual void deleteMail(const RecMail&mail); | 30 | virtual void deleteMail(const RecMail&mail); |
31 | virtual void answeredMail(const RecMail&mail); | 31 | virtual void answeredMail(const RecMail&mail); |
32 | virtual int deleteAllMail(const Folder*folder); | 32 | virtual int deleteAllMail(const Folder*folder); |
33 | virtual void storeMessage(const char*msg,size_t length, const QString&folder); | ||
33 | 34 | ||
34 | virtual RecBody fetchBody(const RecMail&mail); | 35 | virtual RecBody fetchBody(const RecMail&mail); |
35 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); | 36 | virtual QString fetchTextPart(const RecMail&mail,const RecPart&part); |
36 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); | 37 | virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part); |
37 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); | 38 | virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part); |
38 | 39 | ||
39 | virtual int createMbox(const QString&,const Folder*parentfolder=0,const QString& delemiter="/",bool getsubfolder=false); | 40 | virtual int createMbox(const QString&,const Folder*parentfolder=0,const QString& delemiter="/",bool getsubfolder=false); |
40 | virtual int deleteMbox(const Folder*folder); | 41 | virtual int deleteMbox(const Folder*folder); |
41 | 42 | ||
42 | static void imap_progress( size_t current, size_t maximum ); | 43 | static void imap_progress( size_t current, size_t maximum ); |
43 | 44 | ||
45 | virtual void logout(); | ||
44 | protected: | 46 | protected: |
45 | RecMail*parse_list_result(mailimap_msg_att*); | 47 | RecMail*parse_list_result(mailimap_msg_att*); |
46 | void login(); | 48 | void login(); |
47 | void logout(); | ||
48 | 49 | ||
49 | virtual QString fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call=false,const QString&enc=""); | 50 | virtual QString fetchTextPart(const RecMail&mail,const QValueList<int>&path,bool internal_call=false,const QString&enc=""); |
50 | virtual encodedString*fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call); | 51 | virtual encodedString*fetchRawPart(const RecMail&mail,const QValueList<int>&path,bool internal_call); |
51 | 52 | ||
52 | void fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description); | 53 | void fillSinglePart(RecPart&target_part,mailimap_body_type_1part*Description); |
53 | void fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which); | 54 | void fillSingleTextPart(RecPart&target_part,mailimap_body_type_text*which); |
54 | void fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which); | 55 | void fillSingleBasicPart(RecPart&target_part,mailimap_body_type_basic*which); |
55 | void fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which); | 56 | void fillSingleMsgPart(RecPart&target_part,mailimap_body_type_msg*which); |
56 | void fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which); | 57 | void fillMultiPart(RecPart&target_part,mailimap_body_type_mpart*which); |
57 | void traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body,int current_recursion,QValueList<int>recList,int current_count=1); | 58 | void traverseBody(const RecMail&mail,mailimap_body*body,RecBody&target_body,int current_recursion,QValueList<int>recList,int current_count=1); |
58 | 59 | ||
59 | /* just helpers */ | 60 | /* just helpers */ |
60 | static void fillBodyFields(RecPart&target_part,mailimap_body_fields*which); | 61 | static void fillBodyFields(RecPart&target_part,mailimap_body_fields*which); |
61 | static QStringList address_list_to_stringlist(clist*list); | 62 | static QStringList address_list_to_stringlist(clist*list); |
62 | 63 | ||
63 | 64 | ||
64 | IMAPaccount *account; | 65 | IMAPaccount *account; |
65 | mailimap *m_imap; | 66 | mailimap *m_imap; |
66 | }; | 67 | }; |
67 | 68 | ||
68 | #endif | 69 | #endif |
diff --git a/noncore/net/mail/libmailwrapper/libmailwrapper.pro b/noncore/net/mail/libmailwrapper/libmailwrapper.pro index 4b4a4f1..18583bb 100644 --- a/noncore/net/mail/libmailwrapper/libmailwrapper.pro +++ b/noncore/net/mail/libmailwrapper/libmailwrapper.pro | |||
@@ -1,44 +1,46 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on debug | 2 | CONFIG += qt warn_on debug |
3 | 3 | ||
4 | HEADERS = mailwrapper.h \ | 4 | HEADERS = mailwrapper.h \ |
5 | imapwrapper.h \ | 5 | imapwrapper.h \ |
6 | mailtypes.h \ | 6 | mailtypes.h \ |
7 | pop3wrapper.h \ | 7 | pop3wrapper.h \ |
8 | abstractmail.h \ | 8 | abstractmail.h \ |
9 | smtpwrapper.h \ | 9 | smtpwrapper.h \ |
10 | genericwrapper.h \ | 10 | genericwrapper.h \ |
11 | mboxwrapper.h \ | 11 | mboxwrapper.h \ |
12 | settings.h \ | 12 | settings.h \ |
13 | logindialog.h \ | 13 | logindialog.h \ |
14 | sendmailprogress.h | 14 | sendmailprogress.h \ |
15 | statusmail.h | ||
15 | 16 | ||
16 | SOURCES = imapwrapper.cpp \ | 17 | SOURCES = imapwrapper.cpp \ |
17 | mailwrapper.cpp \ | 18 | mailwrapper.cpp \ |
18 | mailtypes.cpp \ | 19 | mailtypes.cpp \ |
19 | pop3wrapper.cpp \ | 20 | pop3wrapper.cpp \ |
20 | abstractmail.cpp \ | 21 | abstractmail.cpp \ |
21 | smtpwrapper.cpp \ | 22 | smtpwrapper.cpp \ |
22 | genericwrapper.cpp \ | 23 | genericwrapper.cpp \ |
23 | mboxwrapper.cpp \ | 24 | mboxwrapper.cpp \ |
24 | settings.cpp \ | 25 | settings.cpp \ |
25 | logindialog.cpp \ | 26 | logindialog.cpp \ |
26 | sendmailprogress.cpp | 27 | sendmailprogress.cpp \ |
28 | statusmail.cpp | ||
27 | 29 | ||
28 | INTERFACES = logindialogui.ui \ | 30 | INTERFACES = logindialogui.ui \ |
29 | sendmailprogressui.ui | 31 | sendmailprogressui.ui |
30 | 32 | ||
31 | 33 | ||
32 | INCLUDEPATH += $(OPIEDIR)/include | 34 | INCLUDEPATH += $(OPIEDIR)/include |
33 | 35 | ||
34 | CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX ) | 36 | CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX ) |
35 | contains( CONFTEST, y ){ | 37 | contains( CONFTEST, y ){ |
36 | LIBS += -lqpe -letpan -lssl -lcrypto -liconv | 38 | LIBS += -lqpe -letpan -lssl -lcrypto -liconv |
37 | }else{ | 39 | }else{ |
38 | LIBS += -lqpe -letpan -lssl -lcrypto | 40 | LIBS += -lqpe -letpan -lssl -lcrypto |
39 | } | 41 | } |
40 | 42 | ||
41 | DESTDIR = $(OPIEDIR)/lib$(PROJMAK) | 43 | DESTDIR = $(OPIEDIR)/lib$(PROJMAK) |
42 | TARGET = mailwrapper | 44 | TARGET = mailwrapper |
43 | 45 | ||
44 | include ( $(OPIEDIR)/include.pro ) | 46 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp index d76d82a..b4eca6f 100644 --- a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp +++ b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp | |||
@@ -1,229 +1,237 @@ | |||
1 | #include <stdlib.h> | 1 | #include <stdlib.h> |
2 | #include "pop3wrapper.h" | 2 | #include "pop3wrapper.h" |
3 | #include "mailtypes.h" | 3 | #include "mailtypes.h" |
4 | #include "logindialog.h" | 4 | #include "logindialog.h" |
5 | #include <libetpan/libetpan.h> | 5 | #include <libetpan/libetpan.h> |
6 | #include <qpe/global.h> | 6 | #include <qpe/global.h> |
7 | #include <qfile.h> | 7 | #include <qfile.h> |
8 | #include <qstring.h> | 8 | #include <qstring.h> |
9 | 9 | ||
10 | /* we don't fetch messages larger than 5 MB */ | 10 | /* we don't fetch messages larger than 5 MB */ |
11 | #define HARD_MSG_SIZE_LIMIT 5242880 | 11 | #define HARD_MSG_SIZE_LIMIT 5242880 |
12 | 12 | ||
13 | POP3wrapper::POP3wrapper( POP3account *a ) | 13 | POP3wrapper::POP3wrapper( POP3account *a ) |
14 | : Genericwrapper() | 14 | : Genericwrapper() |
15 | { | 15 | { |
16 | account = a; | 16 | account = a; |
17 | m_pop3 = NULL; | 17 | m_pop3 = NULL; |
18 | m_folder = NULL; | 18 | m_folder = NULL; |
19 | msgTempName = a->getFileName()+"_msg_cache"; | 19 | msgTempName = a->getFileName()+"_msg_cache"; |
20 | last_msg_id = 0; | 20 | last_msg_id = 0; |
21 | } | 21 | } |
22 | 22 | ||
23 | POP3wrapper::~POP3wrapper() | 23 | POP3wrapper::~POP3wrapper() |
24 | { | 24 | { |
25 | logout(); | 25 | logout(); |
26 | QFile msg_cache(msgTempName); | 26 | QFile msg_cache(msgTempName); |
27 | if (msg_cache.exists()) { | 27 | if (msg_cache.exists()) { |
28 | msg_cache.remove(); | 28 | msg_cache.remove(); |
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | void POP3wrapper::pop3_progress( size_t current, size_t maximum ) | 32 | void POP3wrapper::pop3_progress( size_t current, size_t maximum ) |
33 | { | 33 | { |
34 | qDebug( "POP3: %i of %i", current, maximum ); | 34 | qDebug( "POP3: %i of %i", current, maximum ); |
35 | } | 35 | } |
36 | 36 | ||
37 | RecBody POP3wrapper::fetchBody( const RecMail &mail ) | 37 | RecBody POP3wrapper::fetchBody( const RecMail &mail ) |
38 | { | 38 | { |
39 | int err = MAILPOP3_NO_ERROR; | 39 | int err = MAILPOP3_NO_ERROR; |
40 | char *message = 0; | 40 | char *message = 0; |
41 | size_t length = 0; | 41 | size_t length = 0; |
42 | 42 | ||
43 | login(); | 43 | login(); |
44 | if ( !m_pop3 ) { | 44 | if ( !m_pop3 ) { |
45 | return RecBody(); | 45 | return RecBody(); |
46 | } | 46 | } |
47 | 47 | ||
48 | RecBody body; | 48 | RecBody body; |
49 | mailmessage * mailmsg; | 49 | mailmessage * mailmsg; |
50 | if (mail.Msgsize()>HARD_MSG_SIZE_LIMIT) { | 50 | if (mail.Msgsize()>HARD_MSG_SIZE_LIMIT) { |
51 | qDebug("Message to large: %i",mail.Msgsize()); | 51 | qDebug("Message to large: %i",mail.Msgsize()); |
52 | return body; | 52 | return body; |
53 | } | 53 | } |
54 | 54 | ||
55 | QFile msg_cache(msgTempName); | 55 | QFile msg_cache(msgTempName); |
56 | 56 | ||
57 | cleanMimeCache(); | 57 | cleanMimeCache(); |
58 | 58 | ||
59 | if (mail.getNumber()!=last_msg_id) { | 59 | if (mail.getNumber()!=last_msg_id) { |
60 | if (msg_cache.exists()) { | 60 | if (msg_cache.exists()) { |
61 | msg_cache.remove(); | 61 | msg_cache.remove(); |
62 | } | 62 | } |
63 | msg_cache.open(IO_ReadWrite|IO_Truncate); | 63 | msg_cache.open(IO_ReadWrite|IO_Truncate); |
64 | last_msg_id = mail.getNumber(); | 64 | last_msg_id = mail.getNumber(); |
65 | err = mailsession_get_message(m_folder->fld_session, mail.getNumber(), &mailmsg); | 65 | err = mailsession_get_message(m_folder->fld_session, mail.getNumber(), &mailmsg); |
66 | err = mailmessage_fetch(mailmsg,&message,&length); | 66 | err = mailmessage_fetch(mailmsg,&message,&length); |
67 | msg_cache.writeBlock(message,length); | 67 | msg_cache.writeBlock(message,length); |
68 | } else { | 68 | } else { |
69 | QString msg=""; | 69 | QString msg=""; |
70 | msg_cache.open(IO_ReadOnly); | 70 | msg_cache.open(IO_ReadOnly); |
71 | message = new char[4096]; | 71 | message = new char[4096]; |
72 | memset(message,0,4096); | 72 | memset(message,0,4096); |
73 | while (msg_cache.readBlock(message,4095)>0) { | 73 | while (msg_cache.readBlock(message,4095)>0) { |
74 | msg+=message; | 74 | msg+=message; |
75 | memset(message,0,4096); | 75 | memset(message,0,4096); |
76 | } | 76 | } |
77 | delete message; | 77 | delete message; |
78 | message = (char*)malloc(msg.length()+1*sizeof(char)); | 78 | message = (char*)malloc(msg.length()+1*sizeof(char)); |
79 | memset(message,0,msg.length()+1); | 79 | memset(message,0,msg.length()+1); |
80 | memcpy(message,msg.latin1(),msg.length()); | 80 | memcpy(message,msg.latin1(),msg.length()); |
81 | /* transform to libetpan stuff */ | 81 | /* transform to libetpan stuff */ |
82 | mailmsg = mailmessage_new(); | 82 | mailmsg = mailmessage_new(); |
83 | mailmessage_init(mailmsg, NULL, data_message_driver, 0, strlen(message)); | 83 | mailmessage_init(mailmsg, NULL, data_message_driver, 0, strlen(message)); |
84 | generic_message_t * msg_data; | 84 | generic_message_t * msg_data; |
85 | msg_data = (generic_message_t *)mailmsg->msg_data; | 85 | msg_data = (generic_message_t *)mailmsg->msg_data; |
86 | msg_data->msg_fetched = 1; | 86 | msg_data->msg_fetched = 1; |
87 | msg_data->msg_message = message; | 87 | msg_data->msg_message = message; |
88 | msg_data->msg_length = strlen(message); | 88 | msg_data->msg_length = strlen(message); |
89 | } | 89 | } |
90 | body = parseMail(mailmsg); | 90 | body = parseMail(mailmsg); |
91 | 91 | ||
92 | /* clean up */ | 92 | /* clean up */ |
93 | if (mailmsg) mailmessage_free(mailmsg); | 93 | if (mailmsg) mailmessage_free(mailmsg); |
94 | if (message) free(message); | 94 | if (message) free(message); |
95 | 95 | ||
96 | return body; | 96 | return body; |
97 | } | 97 | } |
98 | 98 | ||
99 | void POP3wrapper::listMessages(const QString &, QList<RecMail> &target ) | 99 | void POP3wrapper::listMessages(const QString &, QList<RecMail> &target ) |
100 | { | 100 | { |
101 | login(); | 101 | login(); |
102 | if (!m_pop3) return; | 102 | if (!m_pop3) return; |
103 | uint32_t res_messages,res_recent,res_unseen; | 103 | uint32_t res_messages,res_recent,res_unseen; |
104 | mailsession_status_folder(m_folder->fld_session,"INBOX",&res_messages,&res_recent,&res_unseen); | 104 | mailsession_status_folder(m_folder->fld_session,"INBOX",&res_messages,&res_recent,&res_unseen); |
105 | parseList(target,m_folder->fld_session,"INBOX"); | 105 | parseList(target,m_folder->fld_session,"INBOX"); |
106 | Global::statusMessage( tr("Mailbox contains %1 mail(s)").arg(res_messages)); | 106 | Global::statusMessage( tr("Mailbox contains %1 mail(s)").arg(res_messages)); |
107 | } | 107 | } |
108 | 108 | ||
109 | void POP3wrapper::login() | 109 | void POP3wrapper::login() |
110 | { | 110 | { |
111 | /* we'll hold the line */ | 111 | /* we'll hold the line */ |
112 | if ( m_pop3 != NULL ) return; | 112 | if ( m_pop3 != NULL ) return; |
113 | 113 | ||
114 | const char *server, *user, *pass; | 114 | const char *server, *user, *pass; |
115 | uint16_t port; | 115 | uint16_t port; |
116 | int err = MAILPOP3_NO_ERROR; | 116 | int err = MAILPOP3_NO_ERROR; |
117 | 117 | ||
118 | server = account->getServer().latin1(); | 118 | server = account->getServer().latin1(); |
119 | port = account->getPort().toUInt(); | 119 | port = account->getPort().toUInt(); |
120 | 120 | ||
121 | if ( account->getUser().isEmpty() || account->getPassword().isEmpty() ) { | 121 | if ( account->getUser().isEmpty() || account->getPassword().isEmpty() ) { |
122 | LoginDialog login( account->getUser(), account->getPassword(), NULL, 0, true ); | 122 | LoginDialog login( account->getUser(), account->getPassword(), NULL, 0, true ); |
123 | login.show(); | 123 | login.show(); |
124 | if ( QDialog::Accepted == login.exec() ) { | 124 | if ( QDialog::Accepted == login.exec() ) { |
125 | // ok | 125 | // ok |
126 | user = login.getUser().latin1(); | 126 | user = login.getUser().latin1(); |
127 | pass = login.getPassword().latin1(); | 127 | pass = login.getPassword().latin1(); |
128 | } else { | 128 | } else { |
129 | // cancel | 129 | // cancel |
130 | qDebug( "POP3: Login canceled" ); | 130 | qDebug( "POP3: Login canceled" ); |
131 | return; | 131 | return; |
132 | } | 132 | } |
133 | } else { | 133 | } else { |
134 | user = account->getUser().latin1(); | 134 | user = account->getUser().latin1(); |
135 | pass = account->getPassword().latin1(); | 135 | pass = account->getPassword().latin1(); |
136 | } | 136 | } |
137 | 137 | ||
138 | bool ssl = account->getSSL(); | 138 | bool ssl = account->getSSL(); |
139 | 139 | ||
140 | m_pop3=mailstorage_new(NULL); | 140 | m_pop3=mailstorage_new(NULL); |
141 | pop3_mailstorage_init(m_pop3,(char*)server,port,NULL,CONNECTION_TYPE_TRY_STARTTLS,POP3_AUTH_TYPE_TRY_APOP, | 141 | pop3_mailstorage_init(m_pop3,(char*)server,port,NULL,CONNECTION_TYPE_TRY_STARTTLS,POP3_AUTH_TYPE_TRY_APOP, |
142 | (char*)user,(char*)pass,0,0,0); | 142 | (char*)user,(char*)pass,0,0,0); |
143 | 143 | ||
144 | m_folder = mailfolder_new(m_pop3, NULL, NULL); | 144 | m_folder = mailfolder_new(m_pop3, NULL, NULL); |
145 | 145 | ||
146 | if (m_folder==0) { | 146 | if (m_folder==0) { |
147 | Global::statusMessage(tr("Error initializing folder")); | 147 | Global::statusMessage(tr("Error initializing folder")); |
148 | mailstorage_free(m_pop3); | 148 | mailstorage_free(m_pop3); |
149 | m_pop3 = NULL; | 149 | m_pop3 = NULL; |
150 | return; | 150 | return; |
151 | } | 151 | } |
152 | err = mailfolder_connect(m_folder); | 152 | err = mailfolder_connect(m_folder); |
153 | if (err != MAIL_NO_ERROR) { | 153 | if (err != MAIL_NO_ERROR) { |
154 | Global::statusMessage(tr("Error initializing folder")); | 154 | Global::statusMessage(tr("Error initializing folder")); |
155 | mailfolder_free(m_folder); | 155 | mailfolder_free(m_folder); |
156 | m_folder = 0; | 156 | m_folder = 0; |
157 | mailstorage_free(m_pop3); | 157 | mailstorage_free(m_pop3); |
158 | m_pop3 = 0; | 158 | m_pop3 = 0; |
159 | } | 159 | } |
160 | qDebug( "POP3: logged in!" ); | 160 | qDebug( "POP3: logged in!" ); |
161 | } | 161 | } |
162 | 162 | ||
163 | void POP3wrapper::logout() | 163 | void POP3wrapper::logout() |
164 | { | 164 | { |
165 | int err = MAILPOP3_NO_ERROR; | 165 | int err = MAILPOP3_NO_ERROR; |
166 | if ( m_pop3 == NULL ) return; | 166 | if ( m_pop3 == NULL ) return; |
167 | mailfolder_free(m_folder); | 167 | mailfolder_free(m_folder); |
168 | m_folder = 0; | 168 | m_folder = 0; |
169 | mailstorage_free(m_pop3); | 169 | mailstorage_free(m_pop3); |
170 | m_pop3 = 0; | 170 | m_pop3 = 0; |
171 | } | 171 | } |
172 | 172 | ||
173 | 173 | ||
174 | QList<Folder>* POP3wrapper::listFolders() | 174 | QList<Folder>* POP3wrapper::listFolders() |
175 | { | 175 | { |
176 | QList<Folder> * folders = new QList<Folder>(); | 176 | QList<Folder> * folders = new QList<Folder>(); |
177 | folders->setAutoDelete( false ); | 177 | folders->setAutoDelete( false ); |
178 | Folder*inb=new Folder("INBOX","/"); | 178 | Folder*inb=new Folder("INBOX","/"); |
179 | folders->append(inb); | 179 | folders->append(inb); |
180 | return folders; | 180 | return folders; |
181 | } | 181 | } |
182 | 182 | ||
183 | void POP3wrapper::deleteMail(const RecMail&mail) | 183 | void POP3wrapper::deleteMail(const RecMail&mail) |
184 | { | 184 | { |
185 | login(); | 185 | login(); |
186 | if (!m_pop3) return; | 186 | if (!m_pop3) return; |
187 | int err = mailsession_remove_message(m_folder->fld_session,mail.getNumber()); | 187 | int err = mailsession_remove_message(m_folder->fld_session,mail.getNumber()); |
188 | if (err != MAIL_NO_ERROR) { | 188 | if (err != MAIL_NO_ERROR) { |
189 | Global::statusMessage(tr("error deleting mail")); | 189 | Global::statusMessage(tr("error deleting mail")); |
190 | } | 190 | } |
191 | } | 191 | } |
192 | 192 | ||
193 | void POP3wrapper::answeredMail(const RecMail&) | 193 | void POP3wrapper::answeredMail(const RecMail&) |
194 | { | 194 | { |
195 | } | 195 | } |
196 | 196 | ||
197 | int POP3wrapper::deleteAllMail(const Folder*) | 197 | int POP3wrapper::deleteAllMail(const Folder*) |
198 | { | 198 | { |
199 | login(); | 199 | login(); |
200 | if (!m_pop3) return 0; | 200 | if (!m_pop3) return 0; |
201 | int res = 1; | 201 | int res = 1; |
202 | 202 | ||
203 | uint32_t result = 0; | 203 | uint32_t result = 0; |
204 | int err = mailsession_messages_number(m_folder->fld_session,NULL,&result); | 204 | int err = mailsession_messages_number(m_folder->fld_session,NULL,&result); |
205 | if (err != MAIL_NO_ERROR) { | 205 | if (err != MAIL_NO_ERROR) { |
206 | Global::statusMessage(tr("Error getting folder info")); | 206 | Global::statusMessage(tr("Error getting folder info")); |
207 | return 0; | 207 | return 0; |
208 | } | 208 | } |
209 | for (unsigned int i = 0; i < result; ++i) { | 209 | for (unsigned int i = 0; i < result; ++i) { |
210 | err = mailsession_remove_message(m_folder->fld_session,i+1); | 210 | err = mailsession_remove_message(m_folder->fld_session,i+1); |
211 | if (err != MAIL_NO_ERROR) { | 211 | if (err != MAIL_NO_ERROR) { |
212 | Global::statusMessage(tr("Error deleting mail %1").arg(i+1)); | 212 | Global::statusMessage(tr("Error deleting mail %1").arg(i+1)); |
213 | res=0; | 213 | res=0; |
214 | } | 214 | } |
215 | break; | 215 | break; |
216 | } | 216 | } |
217 | return res; | 217 | return res; |
218 | } | 218 | } |
219 | 219 | ||
220 | void POP3wrapper::statusFolder(folderStat&target_stat,const QString&) | 220 | void POP3wrapper::statusFolder(folderStat&target_stat,const QString&) |
221 | { | 221 | { |
222 | login(); | 222 | login(); |
223 | target_stat.message_count = 0; | 223 | target_stat.message_count = 0; |
224 | target_stat.message_unseen = 0; | 224 | target_stat.message_unseen = 0; |
225 | target_stat.message_recent = 0; | 225 | target_stat.message_recent = 0; |
226 | if (!m_pop3) return; | 226 | if (!m_pop3) return; |
227 | int r = mailsession_status_folder(m_folder->fld_session,0,&target_stat.message_count, | 227 | int r = mailsession_status_folder(m_folder->fld_session,0,&target_stat.message_count, |
228 | &target_stat.message_recent,&target_stat.message_unseen); | 228 | &target_stat.message_recent,&target_stat.message_unseen); |
229 | } | 229 | } |
230 | |||
231 | void POP3wrapper::fetchRawBody(const RecMail&mail,char**target,size_t*length) | ||
232 | { | ||
233 | mailmessage * mailmsg = 0; | ||
234 | int err = mailsession_get_message(m_folder->fld_session, mail.getNumber(), &mailmsg); | ||
235 | err = mailmessage_fetch(mailmsg,target,length); | ||
236 | if (mailmsg) mailmessage_free(mailmsg); | ||
237 | } | ||
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.h b/noncore/net/mail/libmailwrapper/pop3wrapper.h index 536cadc..9cba101 100644 --- a/noncore/net/mail/libmailwrapper/pop3wrapper.h +++ b/noncore/net/mail/libmailwrapper/pop3wrapper.h | |||
@@ -1,39 +1,41 @@ | |||
1 | #ifndef __POP3WRAPPER | 1 | #ifndef __POP3WRAPPER |
2 | #define __POP3WRAPPER | 2 | #define __POP3WRAPPER |
3 | 3 | ||
4 | #include "mailwrapper.h" | 4 | #include "mailwrapper.h" |
5 | #include "genericwrapper.h" | 5 | #include "genericwrapper.h" |
6 | #include <qstring.h> | 6 | #include <qstring.h> |
7 | 7 | ||
8 | struct mailstorage; | 8 | struct mailstorage; |
9 | struct mailfolder; | 9 | struct mailfolder; |
10 | 10 | ||
11 | class POP3wrapper : public Genericwrapper | 11 | class POP3wrapper : public Genericwrapper |
12 | { | 12 | { |
13 | Q_OBJECT | 13 | Q_OBJECT |
14 | 14 | ||
15 | public: | 15 | public: |
16 | POP3wrapper( POP3account *a ); | 16 | POP3wrapper( POP3account *a ); |
17 | virtual ~POP3wrapper(); | 17 | virtual ~POP3wrapper(); |
18 | /* mailbox will be ignored */ | 18 | /* mailbox will be ignored */ |
19 | virtual void listMessages(const QString & mailbox, QList<RecMail> &target ); | 19 | virtual void listMessages(const QString & mailbox, QList<RecMail> &target ); |
20 | virtual QList<Folder>* listFolders(); | 20 | virtual QList<Folder>* listFolders(); |
21 | /* mailbox will be ignored */ | 21 | /* mailbox will be ignored */ |
22 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX"); | 22 | virtual void statusFolder(folderStat&target_stat,const QString & mailbox="INBOX"); |
23 | 23 | ||
24 | virtual void deleteMail(const RecMail&mail); | 24 | virtual void deleteMail(const RecMail&mail); |
25 | virtual void answeredMail(const RecMail&mail); | 25 | virtual void answeredMail(const RecMail&mail); |
26 | virtual int deleteAllMail(const Folder*); | 26 | virtual int deleteAllMail(const Folder*); |
27 | 27 | ||
28 | virtual RecBody fetchBody( const RecMail &mail ); | 28 | virtual RecBody fetchBody( const RecMail &mail ); |
29 | virtual void fetchRawBody(const RecMail&mail,char**target,size_t*length); | ||
30 | virtual void logout(); | ||
31 | |||
29 | static void pop3_progress( size_t current, size_t maximum ); | 32 | static void pop3_progress( size_t current, size_t maximum ); |
30 | 33 | ||
31 | protected: | 34 | protected: |
32 | void login(); | 35 | void login(); |
33 | void logout(); | ||
34 | POP3account *account; | 36 | POP3account *account; |
35 | mailstorage*m_pop3; | 37 | mailstorage*m_pop3; |
36 | mailfolder*m_folder; | 38 | mailfolder*m_folder; |
37 | }; | 39 | }; |
38 | 40 | ||
39 | #endif | 41 | #endif |