-rw-r--r-- | noncore/net/mail/libmailwrapper/genericwrapper.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/noncore/net/mail/libmailwrapper/genericwrapper.cpp b/noncore/net/mail/libmailwrapper/genericwrapper.cpp index 0ac842d..6fcc701 100644 --- a/noncore/net/mail/libmailwrapper/genericwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/genericwrapper.cpp | |||
@@ -1,469 +1,470 @@ | |||
1 | #include "genericwrapper.h" | 1 | #include "genericwrapper.h" |
2 | #include <libetpan/libetpan.h> | 2 | #include <libetpan/libetpan.h> |
3 | #include "mailtypes.h" | 3 | #include "mailtypes.h" |
4 | #include "mailstatics.h" | 4 | #include "mailstatics.h" |
5 | 5 | ||
6 | #include <opie2/odebug.h> | 6 | #include <opie2/odebug.h> |
7 | #include <qdatetime.h> | 7 | #include <qdatetime.h> |
8 | 8 | ||
9 | using namespace Opie::Core; | 9 | using namespace Opie::Core; |
10 | Genericwrapper::Genericwrapper() | 10 | Genericwrapper::Genericwrapper() |
11 | : AbstractMail(),MailStatics() | 11 | : AbstractMail(),MailStatics() |
12 | { | 12 | { |
13 | bodyCache.clear(); | 13 | bodyCache.clear(); |
14 | m_storage = 0; | 14 | m_storage = 0; |
15 | m_folder = 0; | 15 | m_folder = 0; |
16 | } | 16 | } |
17 | 17 | ||
18 | Genericwrapper::~Genericwrapper() | 18 | Genericwrapper::~Genericwrapper() |
19 | { | 19 | { |
20 | if (m_folder) { | 20 | if (m_folder) { |
21 | mailfolder_free(m_folder); | 21 | mailfolder_free(m_folder); |
22 | } | 22 | } |
23 | if (m_storage) { | 23 | if (m_storage) { |
24 | mailstorage_free(m_storage); | 24 | mailstorage_free(m_storage); |
25 | } | 25 | } |
26 | cleanMimeCache(); | 26 | cleanMimeCache(); |
27 | } | 27 | } |
28 | 28 | ||
29 | void Genericwrapper::fillSingleBody(RecPartP&target,mailmessage*,mailmime*mime) | 29 | void Genericwrapper::fillSingleBody(RecPartP&target,mailmessage*,mailmime*mime) |
30 | { | 30 | { |
31 | if (!mime) { | 31 | if (!mime) { |
32 | return; | 32 | return; |
33 | } | 33 | } |
34 | mailmime_field*field = 0; | 34 | mailmime_field*field = 0; |
35 | mailmime_single_fields fields; | 35 | mailmime_single_fields fields; |
36 | memset(&fields, 0, sizeof(struct mailmime_single_fields)); | 36 | memset(&fields, 0, sizeof(struct mailmime_single_fields)); |
37 | if (mime->mm_mime_fields != NULL) { | 37 | if (mime->mm_mime_fields != NULL) { |
38 | mailmime_single_fields_init(&fields, mime->mm_mime_fields, | 38 | mailmime_single_fields_init(&fields, mime->mm_mime_fields, |
39 | mime->mm_content_type); | 39 | mime->mm_content_type); |
40 | } | 40 | } |
41 | 41 | ||
42 | mailmime_content*type = fields.fld_content; | 42 | mailmime_content*type = fields.fld_content; |
43 | clistcell*current; | 43 | clistcell*current; |
44 | if (!type) { | 44 | if (!type) { |
45 | target->setType("text"); | 45 | target->setType("text"); |
46 | target->setSubtype("plain"); | 46 | target->setSubtype("plain"); |
47 | } else { | 47 | } else { |
48 | target->setSubtype(type->ct_subtype); | 48 | target->setSubtype(type->ct_subtype); |
49 | switch(type->ct_type->tp_data.tp_discrete_type->dt_type) { | 49 | switch(type->ct_type->tp_data.tp_discrete_type->dt_type) { |
50 | case MAILMIME_DISCRETE_TYPE_TEXT: | 50 | case MAILMIME_DISCRETE_TYPE_TEXT: |
51 | target->setType("text"); | 51 | target->setType("text"); |
52 | break; | 52 | break; |
53 | case MAILMIME_DISCRETE_TYPE_IMAGE: | 53 | case MAILMIME_DISCRETE_TYPE_IMAGE: |
54 | target->setType("image"); | 54 | target->setType("image"); |
55 | break; | 55 | break; |
56 | case MAILMIME_DISCRETE_TYPE_AUDIO: | 56 | case MAILMIME_DISCRETE_TYPE_AUDIO: |
57 | target->setType("audio"); | 57 | target->setType("audio"); |
58 | break; | 58 | break; |
59 | case MAILMIME_DISCRETE_TYPE_VIDEO: | 59 | case MAILMIME_DISCRETE_TYPE_VIDEO: |
60 | target->setType("video"); | 60 | target->setType("video"); |
61 | break; | 61 | break; |
62 | case MAILMIME_DISCRETE_TYPE_APPLICATION: | 62 | case MAILMIME_DISCRETE_TYPE_APPLICATION: |
63 | target->setType("application"); | 63 | target->setType("application"); |
64 | break; | 64 | break; |
65 | case MAILMIME_DISCRETE_TYPE_EXTENSION: | 65 | case MAILMIME_DISCRETE_TYPE_EXTENSION: |
66 | default: | 66 | default: |
67 | if (type->ct_type->tp_data.tp_discrete_type->dt_extension) { | 67 | if (type->ct_type->tp_data.tp_discrete_type->dt_extension) { |
68 | target->setType(type->ct_type->tp_data.tp_discrete_type->dt_extension); | 68 | target->setType(type->ct_type->tp_data.tp_discrete_type->dt_extension); |
69 | } | 69 | } |
70 | break; | 70 | break; |
71 | } | 71 | } |
72 | if (type->ct_parameters) { | 72 | if (type->ct_parameters) { |
73 | fillParameters(target,type->ct_parameters); | 73 | fillParameters(target,type->ct_parameters); |
74 | } | 74 | } |
75 | } | 75 | } |
76 | if (mime->mm_mime_fields && mime->mm_mime_fields->fld_list) { | 76 | if (mime->mm_mime_fields && mime->mm_mime_fields->fld_list) { |
77 | for (current=clist_begin(mime->mm_mime_fields->fld_list);current!=0;current=clist_next(current)) { | 77 | for (current=clist_begin(mime->mm_mime_fields->fld_list);current!=0;current=clist_next(current)) { |
78 | field = (mailmime_field*)current->data; | 78 | field = (mailmime_field*)current->data; |
79 | switch(field->fld_type) { | 79 | switch(field->fld_type) { |
80 | case MAILMIME_FIELD_TRANSFER_ENCODING: | 80 | case MAILMIME_FIELD_TRANSFER_ENCODING: |
81 | target->setEncoding(getencoding(field->fld_data.fld_encoding)); | 81 | target->setEncoding(getencoding(field->fld_data.fld_encoding)); |
82 | break; | 82 | break; |
83 | case MAILMIME_FIELD_ID: | 83 | case MAILMIME_FIELD_ID: |
84 | target->setIdentifier(field->fld_data.fld_id); | 84 | target->setIdentifier(field->fld_data.fld_id); |
85 | break; | 85 | break; |
86 | case MAILMIME_FIELD_DESCRIPTION: | 86 | case MAILMIME_FIELD_DESCRIPTION: |
87 | target->setDescription(field->fld_data.fld_description); | 87 | target->setDescription(field->fld_data.fld_description); |
88 | break; | 88 | break; |
89 | default: | 89 | default: |
90 | break; | 90 | break; |
91 | } | 91 | } |
92 | } | 92 | } |
93 | } | 93 | } |
94 | } | 94 | } |
95 | 95 | ||
96 | void Genericwrapper::fillParameters(RecPartP&target,clist*parameters) | 96 | void Genericwrapper::fillParameters(RecPartP&target,clist*parameters) |
97 | { | 97 | { |
98 | if (!parameters) {return;} | 98 | if (!parameters) {return;} |
99 | clistcell*current=0; | 99 | clistcell*current=0; |
100 | mailmime_parameter*param; | 100 | mailmime_parameter*param; |
101 | for (current=clist_begin(parameters);current!=0;current=clist_next(current)) { | 101 | for (current=clist_begin(parameters);current!=0;current=clist_next(current)) { |
102 | param = (mailmime_parameter*)current->data; | 102 | param = (mailmime_parameter*)current->data; |
103 | if (param) { | 103 | if (param) { |
104 | target->addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); | 104 | target->addParameter(QString(param->pa_name).lower(),QString(param->pa_value)); |
105 | } | 105 | } |
106 | } | 106 | } |
107 | } | 107 | } |
108 | 108 | ||
109 | QString Genericwrapper::getencoding(mailmime_mechanism*aEnc) | 109 | QString Genericwrapper::getencoding(mailmime_mechanism*aEnc) |
110 | { | 110 | { |
111 | QString enc="7bit"; | 111 | QString enc="7bit"; |
112 | if (!aEnc) return enc; | 112 | if (!aEnc) return enc; |
113 | switch(aEnc->enc_type) { | 113 | switch(aEnc->enc_type) { |
114 | case MAILMIME_MECHANISM_7BIT: | 114 | case MAILMIME_MECHANISM_7BIT: |
115 | enc = "7bit"; | 115 | enc = "7bit"; |
116 | break; | 116 | break; |
117 | case MAILMIME_MECHANISM_8BIT: | 117 | case MAILMIME_MECHANISM_8BIT: |
118 | enc = "8bit"; | 118 | enc = "8bit"; |
119 | break; | 119 | break; |
120 | case MAILMIME_MECHANISM_BINARY: | 120 | case MAILMIME_MECHANISM_BINARY: |
121 | enc = "binary"; | 121 | enc = "binary"; |
122 | break; | 122 | break; |
123 | case MAILMIME_MECHANISM_QUOTED_PRINTABLE: | 123 | case MAILMIME_MECHANISM_QUOTED_PRINTABLE: |
124 | enc = "quoted-printable"; | 124 | enc = "quoted-printable"; |
125 | break; | 125 | break; |
126 | case MAILMIME_MECHANISM_BASE64: | 126 | case MAILMIME_MECHANISM_BASE64: |
127 | enc = "base64"; | 127 | enc = "base64"; |
128 | break; | 128 | break; |
129 | case MAILMIME_MECHANISM_TOKEN: | 129 | case MAILMIME_MECHANISM_TOKEN: |
130 | default: | 130 | default: |
131 | if (aEnc->enc_token) { | 131 | if (aEnc->enc_token) { |
132 | enc = QString(aEnc->enc_token); | 132 | enc = QString(aEnc->enc_token); |
133 | } | 133 | } |
134 | break; | 134 | break; |
135 | } | 135 | } |
136 | return enc; | 136 | return enc; |
137 | } | 137 | } |
138 | 138 | ||
139 | void Genericwrapper::traverseBody(RecBodyP&target,mailmessage*message,mailmime*mime,QValueList<int>recList,unsigned int current_rec,int current_count) | 139 | void Genericwrapper::traverseBody(RecBodyP&target,mailmessage*message,mailmime*mime,QValueList<int>recList,unsigned int current_rec,int current_count) |
140 | { | 140 | { |
141 | if (current_rec >= 10) { | 141 | if (current_rec >= 10) { |
142 | odebug << "too deep recursion!" << oendl; | 142 | odebug << "too deep recursion!" << oendl; |
143 | } | 143 | } |
144 | if (!message || !mime) { | 144 | if (!message || !mime) { |
145 | return; | 145 | return; |
146 | } | 146 | } |
147 | int r; | 147 | int r; |
148 | char*data = 0; | 148 | char*data = 0; |
149 | size_t len; | 149 | size_t len; |
150 | clistiter * cur = 0; | 150 | clistiter * cur = 0; |
151 | QString b; | ||
152 | RecPartP part = new RecPart(); | 151 | RecPartP part = new RecPart(); |
153 | 152 | ||
154 | switch (mime->mm_type) { | 153 | switch (mime->mm_type) { |
155 | case MAILMIME_SINGLE: | 154 | case MAILMIME_SINGLE: |
156 | { | 155 | { |
157 | QValueList<int>countlist = recList; | 156 | QValueList<int>countlist = recList; |
158 | countlist.append(current_count); | 157 | countlist.append(current_count); |
159 | r = mailmessage_fetch_section(message,mime,&data,&len); | 158 | r = mailmessage_fetch_section(message,mime,&data,&len); |
160 | part->setSize(len); | 159 | part->setSize(len); |
161 | part->setPositionlist(countlist); | 160 | part->setPositionlist(countlist); |
162 | b = gen_attachment_id(); | ||
163 | part->setIdentifier(b); | ||
164 | fillSingleBody(part,message,mime); | 161 | fillSingleBody(part,message,mime); |
162 | if (part->Identifier().isEmpty()) { | ||
163 | part->setIdentifier(gen_attachment_id()); | ||
164 | } | ||
165 | |||
165 | if (part->Type()=="text" && target->Bodytext().isNull()) { | 166 | if (part->Type()=="text" && target->Bodytext().isNull()) { |
166 | encodedString*rs = new encodedString(); | 167 | encodedString*rs = new encodedString(); |
167 | rs->setContent(data,len); | 168 | rs->setContent(data,len); |
168 | encodedString*res = decode_String(rs,part->Encoding()); | 169 | encodedString*res = decode_String(rs,part->Encoding()); |
169 | if (countlist.count()>2) { | 170 | if (countlist.count()>2) { |
170 | bodyCache[b]=rs; | 171 | bodyCache[part->Identifier()]=rs; |
171 | target->addPart(part); | 172 | target->addPart(part); |
172 | } else { | 173 | } else { |
173 | delete rs; | 174 | delete rs; |
174 | } | 175 | } |
176 | QString b; | ||
175 | b = QString(res->Content()); | 177 | b = QString(res->Content()); |
176 | delete res; | 178 | delete res; |
177 | target->setBodytext(b); | 179 | target->setBodytext(b); |
178 | target->setDescription(part); | 180 | target->setDescription(part); |
179 | } else { | 181 | } else { |
180 | bodyCache[b]=new encodedString(data,len); | 182 | bodyCache[part->Identifier()]=new encodedString(data,len); |
181 | target->addPart(part); | 183 | target->addPart(part); |
182 | } | 184 | } |
183 | } | 185 | } |
184 | break; | 186 | break; |
185 | case MAILMIME_MULTIPLE: | 187 | case MAILMIME_MULTIPLE: |
186 | { | 188 | { |
187 | unsigned int ccount = 1; | 189 | unsigned int ccount = 1; |
188 | mailmime*cbody=0; | 190 | mailmime*cbody=0; |
189 | QValueList<int>countlist = recList; | 191 | QValueList<int>countlist = recList; |
190 | for (cur = clist_begin(mime->mm_data.mm_multipart.mm_mp_list) ; cur != NULL ; cur = clist_next(cur)) { | 192 | for (cur = clist_begin(mime->mm_data.mm_multipart.mm_mp_list) ; cur != NULL ; cur = clist_next(cur)) { |
191 | cbody = (mailmime*)clist_content(cur); | 193 | cbody = (mailmime*)clist_content(cur); |
192 | if (cbody->mm_type==MAILMIME_MULTIPLE) { | 194 | if (cbody->mm_type==MAILMIME_MULTIPLE) { |
193 | RecPartP targetPart = new RecPart(); | 195 | RecPartP targetPart = new RecPart(); |
194 | targetPart->setType("multipart"); | 196 | targetPart->setType("multipart"); |
195 | countlist.append(current_count); | 197 | countlist.append(current_count); |
196 | targetPart->setPositionlist(countlist); | 198 | targetPart->setPositionlist(countlist); |
197 | target->addPart(targetPart); | 199 | target->addPart(targetPart); |
198 | } | 200 | } |
199 | traverseBody(target,message, cbody,countlist,current_rec+1,ccount); | 201 | traverseBody(target,message, cbody,countlist,current_rec+1,ccount); |
200 | if (cbody->mm_type==MAILMIME_MULTIPLE) { | 202 | if (cbody->mm_type==MAILMIME_MULTIPLE) { |
201 | countlist = recList; | 203 | countlist = recList; |
202 | } | 204 | } |
203 | ++ccount; | 205 | ++ccount; |
204 | } | 206 | } |
205 | } | 207 | } |
206 | break; | 208 | break; |
207 | case MAILMIME_MESSAGE: | 209 | case MAILMIME_MESSAGE: |
208 | { | 210 | { |
209 | QValueList<int>countlist = recList; | 211 | QValueList<int>countlist = recList; |
210 | countlist.append(current_count); | 212 | countlist.append(current_count); |
211 | /* the own header is always at recursion 0 - we don't need that */ | 213 | /* the own header is always at recursion 0 - we don't need that */ |
212 | if (current_rec > 0) { | 214 | if (current_rec > 0) { |
213 | part->setPositionlist(countlist); | 215 | part->setPositionlist(countlist); |
214 | r = mailmessage_fetch_section(message,mime,&data,&len); | 216 | r = mailmessage_fetch_section(message,mime,&data,&len); |
215 | part->setSize(len); | 217 | part->setSize(len); |
216 | part->setPositionlist(countlist); | 218 | part->setPositionlist(countlist); |
217 | b = gen_attachment_id(); | 219 | part->setIdentifier(gen_attachment_id()); |
218 | part->setIdentifier(b); | ||
219 | part->setType("message"); | 220 | part->setType("message"); |
220 | part->setSubtype("rfc822"); | 221 | part->setSubtype("rfc822"); |
221 | bodyCache[b]=new encodedString(data,len); | 222 | bodyCache[part->Identifier()]=new encodedString(data,len); |
222 | target->addPart(part); | 223 | target->addPart(part); |
223 | } | 224 | } |
224 | if (mime->mm_data.mm_message.mm_msg_mime != NULL) { | 225 | if (mime->mm_data.mm_message.mm_msg_mime != NULL) { |
225 | traverseBody(target,message,mime->mm_data.mm_message.mm_msg_mime,countlist,current_rec+1); | 226 | traverseBody(target,message,mime->mm_data.mm_message.mm_msg_mime,countlist,current_rec+1); |
226 | } | 227 | } |
227 | } | 228 | } |
228 | break; | 229 | break; |
229 | } | 230 | } |
230 | } | 231 | } |
231 | 232 | ||
232 | RecBodyP Genericwrapper::parseMail( mailmessage * msg ) | 233 | RecBodyP Genericwrapper::parseMail( mailmessage * msg ) |
233 | { | 234 | { |
234 | int err = MAILIMF_NO_ERROR; | 235 | int err = MAILIMF_NO_ERROR; |
235 | mailmime_single_fields fields; | 236 | mailmime_single_fields fields; |
236 | /* is bound to msg and will be freed there */ | 237 | /* is bound to msg and will be freed there */ |
237 | mailmime * mime=0; | 238 | mailmime * mime=0; |
238 | RecBodyP body = new RecBody(); | 239 | RecBodyP body = new RecBody(); |
239 | memset(&fields, 0, sizeof(struct mailmime_single_fields)); | 240 | memset(&fields, 0, sizeof(struct mailmime_single_fields)); |
240 | err = mailmessage_get_bodystructure(msg,&mime); | 241 | err = mailmessage_get_bodystructure(msg,&mime); |
241 | QValueList<int>recList; | 242 | QValueList<int>recList; |
242 | traverseBody(body,msg,mime,recList); | 243 | traverseBody(body,msg,mime,recList); |
243 | return body; | 244 | return body; |
244 | } | 245 | } |
245 | 246 | ||
246 | QString Genericwrapper::parseAddressList( mailimf_address_list *list ) | 247 | QString Genericwrapper::parseAddressList( mailimf_address_list *list ) |
247 | { | 248 | { |
248 | QString result( "" ); | 249 | QString result( "" ); |
249 | 250 | ||
250 | bool first = true; | 251 | bool first = true; |
251 | if (list == 0) return result; | 252 | if (list == 0) return result; |
252 | for ( clistiter *current = clist_begin( list->ad_list ); current != NULL; current = current->next ) { | 253 | for ( clistiter *current = clist_begin( list->ad_list ); current != NULL; current = current->next ) { |
253 | mailimf_address *addr = (mailimf_address *) current->data; | 254 | mailimf_address *addr = (mailimf_address *) current->data; |
254 | 255 | ||
255 | if ( !first ) { | 256 | if ( !first ) { |
256 | result.append( "," ); | 257 | result.append( "," ); |
257 | } else { | 258 | } else { |
258 | first = false; | 259 | first = false; |
259 | } | 260 | } |
260 | 261 | ||
261 | switch ( addr->ad_type ) { | 262 | switch ( addr->ad_type ) { |
262 | case MAILIMF_ADDRESS_MAILBOX: | 263 | case MAILIMF_ADDRESS_MAILBOX: |
263 | result.append( parseMailbox( addr->ad_data.ad_mailbox ) ); | 264 | result.append( parseMailbox( addr->ad_data.ad_mailbox ) ); |
264 | break; | 265 | break; |
265 | case MAILIMF_ADDRESS_GROUP: | 266 | case MAILIMF_ADDRESS_GROUP: |
266 | result.append( parseGroup( addr->ad_data.ad_group ) ); | 267 | result.append( parseGroup( addr->ad_data.ad_group ) ); |
267 | break; | 268 | break; |
268 | default: | 269 | default: |
269 | odebug << "Generic: unkown mailimf address type" << oendl; | 270 | odebug << "Generic: unkown mailimf address type" << oendl; |
270 | break; | 271 | break; |
271 | } | 272 | } |
272 | } | 273 | } |
273 | 274 | ||
274 | return result; | 275 | return result; |
275 | } | 276 | } |
276 | 277 | ||
277 | QString Genericwrapper::parseGroup( mailimf_group *group ) | 278 | QString Genericwrapper::parseGroup( mailimf_group *group ) |
278 | { | 279 | { |
279 | QString result( "" ); | 280 | QString result( "" ); |
280 | 281 | ||
281 | result.append( group->grp_display_name ); | 282 | result.append( group->grp_display_name ); |
282 | result.append( ": " ); | 283 | result.append( ": " ); |
283 | 284 | ||
284 | if ( group->grp_mb_list != NULL ) { | 285 | if ( group->grp_mb_list != NULL ) { |
285 | result.append( parseMailboxList( group->grp_mb_list ) ); | 286 | result.append( parseMailboxList( group->grp_mb_list ) ); |
286 | } | 287 | } |
287 | 288 | ||
288 | result.append( ";" ); | 289 | result.append( ";" ); |
289 | 290 | ||
290 | return result; | 291 | return result; |
291 | } | 292 | } |
292 | 293 | ||
293 | QString Genericwrapper::parseMailbox( mailimf_mailbox *box ) | 294 | QString Genericwrapper::parseMailbox( mailimf_mailbox *box ) |
294 | { | 295 | { |
295 | QString result( "" ); | 296 | QString result( "" ); |
296 | 297 | ||
297 | if ( box->mb_display_name == NULL ) { | 298 | if ( box->mb_display_name == NULL ) { |
298 | result.append( box->mb_addr_spec ); | 299 | result.append( box->mb_addr_spec ); |
299 | } else { | 300 | } else { |
300 | result.append( convert_String(box->mb_display_name).latin1() ); | 301 | result.append( convert_String(box->mb_display_name).latin1() ); |
301 | result.append( " <" ); | 302 | result.append( " <" ); |
302 | result.append( box->mb_addr_spec ); | 303 | result.append( box->mb_addr_spec ); |
303 | result.append( ">" ); | 304 | result.append( ">" ); |
304 | } | 305 | } |
305 | 306 | ||
306 | return result; | 307 | return result; |
307 | } | 308 | } |
308 | 309 | ||
309 | QString Genericwrapper::parseMailboxList( mailimf_mailbox_list *list ) | 310 | QString Genericwrapper::parseMailboxList( mailimf_mailbox_list *list ) |
310 | { | 311 | { |
311 | QString result( "" ); | 312 | QString result( "" ); |
312 | 313 | ||
313 | bool first = true; | 314 | bool first = true; |
314 | for ( clistiter *current = clist_begin( list->mb_list ); current != NULL; current = current->next ) { | 315 | for ( clistiter *current = clist_begin( list->mb_list ); current != NULL; current = current->next ) { |
315 | mailimf_mailbox *box = (mailimf_mailbox *) current->data; | 316 | mailimf_mailbox *box = (mailimf_mailbox *) current->data; |
316 | 317 | ||
317 | if ( !first ) { | 318 | if ( !first ) { |
318 | result.append( "," ); | 319 | result.append( "," ); |
319 | } else { | 320 | } else { |
320 | first = false; | 321 | first = false; |
321 | } | 322 | } |
322 | 323 | ||
323 | result.append( parseMailbox( box ) ); | 324 | result.append( parseMailbox( box ) ); |
324 | } | 325 | } |
325 | 326 | ||
326 | return result; | 327 | return result; |
327 | } | 328 | } |
328 | 329 | ||
329 | encodedString* Genericwrapper::fetchDecodedPart(const RecMailP&,const RecPartP&part) | 330 | encodedString* Genericwrapper::fetchDecodedPart(const RecMailP&,const RecPartP&part) |
330 | { | 331 | { |
331 | QMap<QString,encodedString*>::ConstIterator it = bodyCache.find(part->Identifier()); | 332 | QMap<QString,encodedString*>::ConstIterator it = bodyCache.find(part->Identifier()); |
332 | if (it==bodyCache.end()) return new encodedString(); | 333 | if (it==bodyCache.end()) return new encodedString(); |
333 | encodedString*t = decode_String(it.data(),part->Encoding()); | 334 | encodedString*t = decode_String(it.data(),part->Encoding()); |
334 | return t; | 335 | return t; |
335 | } | 336 | } |
336 | 337 | ||
337 | encodedString* Genericwrapper::fetchRawPart(const RecMailP&,const RecPartP&part) | 338 | encodedString* Genericwrapper::fetchRawPart(const RecMailP&,const RecPartP&part) |
338 | { | 339 | { |
339 | QMap<QString,encodedString*>::ConstIterator it = bodyCache.find(part->Identifier()); | 340 | QMap<QString,encodedString*>::ConstIterator it = bodyCache.find(part->Identifier()); |
340 | if (it==bodyCache.end()) return new encodedString(); | 341 | if (it==bodyCache.end()) return new encodedString(); |
341 | encodedString*t = it.data(); | 342 | encodedString*t = it.data(); |
342 | return t; | 343 | return t; |
343 | } | 344 | } |
344 | 345 | ||
345 | QString Genericwrapper::fetchTextPart(const RecMailP&mail,const RecPartP&part) | 346 | QString Genericwrapper::fetchTextPart(const RecMailP&mail,const RecPartP&part) |
346 | { | 347 | { |
347 | encodedString*t = fetchDecodedPart(mail,part); | 348 | encodedString*t = fetchDecodedPart(mail,part); |
348 | QString text=t->Content(); | 349 | QString text=t->Content(); |
349 | delete t; | 350 | delete t; |
350 | return text; | 351 | return text; |
351 | } | 352 | } |
352 | 353 | ||
353 | void Genericwrapper::cleanMimeCache() | 354 | void Genericwrapper::cleanMimeCache() |
354 | { | 355 | { |
355 | QMap<QString,encodedString*>::Iterator it = bodyCache.begin(); | 356 | QMap<QString,encodedString*>::Iterator it = bodyCache.begin(); |
356 | for (;it!=bodyCache.end();++it) { | 357 | for (;it!=bodyCache.end();++it) { |
357 | encodedString*t = it.data(); | 358 | encodedString*t = it.data(); |
358 | //it.setValue(0); | 359 | //it.setValue(0); |
359 | if (t) delete t; | 360 | if (t) delete t; |
360 | } | 361 | } |
361 | bodyCache.clear(); | 362 | bodyCache.clear(); |
362 | odebug << "Genericwrapper: cache cleaned" << oendl; | 363 | odebug << "Genericwrapper: cache cleaned" << oendl; |
363 | } | 364 | } |
364 | 365 | ||
365 | QStringList Genericwrapper::parseInreplies(mailimf_in_reply_to * in_replies) | 366 | QStringList Genericwrapper::parseInreplies(mailimf_in_reply_to * in_replies) |
366 | { | 367 | { |
367 | QStringList res; | 368 | QStringList res; |
368 | if (!in_replies || !in_replies->mid_list) return res; | 369 | if (!in_replies || !in_replies->mid_list) return res; |
369 | clistiter * current = 0; | 370 | clistiter * current = 0; |
370 | for ( current = clist_begin( in_replies->mid_list ); current != NULL; current = current->next ) { | 371 | for ( current = clist_begin( in_replies->mid_list ); current != NULL; current = current->next ) { |
371 | QString h((char*)current->data); | 372 | QString h((char*)current->data); |
372 | while (h.length()>0 && h[0]=='<') { | 373 | while (h.length()>0 && h[0]=='<') { |
373 | h.remove(0,1); | 374 | h.remove(0,1); |
374 | } | 375 | } |
375 | while (h.length()>0 && h[h.length()-1]=='>') { | 376 | while (h.length()>0 && h[h.length()-1]=='>') { |
376 | h.remove(h.length()-1,1); | 377 | h.remove(h.length()-1,1); |
377 | } | 378 | } |
378 | if (h.length()>0) { | 379 | if (h.length()>0) { |
379 | res.append(h); | 380 | res.append(h); |
380 | } | 381 | } |
381 | } | 382 | } |
382 | return res; | 383 | return res; |
383 | } | 384 | } |
384 | 385 | ||
385 | void Genericwrapper::parseList(QValueList<Opie::Core::OSmartPointer<RecMail> > &target,mailsession*session,const QString&mailbox,bool mbox_as_to) | 386 | void Genericwrapper::parseList(QValueList<Opie::Core::OSmartPointer<RecMail> > &target,mailsession*session,const QString&mailbox,bool mbox_as_to) |
386 | { | 387 | { |
387 | int r,toffset; | 388 | int r,toffset; |
388 | mailmessage_list * env_list = 0; | 389 | mailmessage_list * env_list = 0; |
389 | r = mailsession_get_messages_list(session,&env_list); | 390 | r = mailsession_get_messages_list(session,&env_list); |
390 | if (r != MAIL_NO_ERROR) { | 391 | if (r != MAIL_NO_ERROR) { |
391 | odebug << "Error message list" << oendl; | 392 | odebug << "Error message list" << oendl; |
392 | return; | 393 | return; |
393 | } | 394 | } |
394 | r = mailsession_get_envelopes_list(session, env_list); | 395 | r = mailsession_get_envelopes_list(session, env_list); |
395 | if (r != MAIL_NO_ERROR) { | 396 | if (r != MAIL_NO_ERROR) { |
396 | odebug << "Error filling message list" << oendl; | 397 | odebug << "Error filling message list" << oendl; |
397 | if (env_list) { | 398 | if (env_list) { |
398 | mailmessage_list_free(env_list); | 399 | mailmessage_list_free(env_list); |
399 | } | 400 | } |
400 | return; | 401 | return; |
401 | } | 402 | } |
402 | mailimf_references * refs = 0; | 403 | mailimf_references * refs = 0; |
403 | mailimf_in_reply_to * in_replies = 0; | 404 | mailimf_in_reply_to * in_replies = 0; |
404 | uint32_t i = 0; | 405 | uint32_t i = 0; |
405 | for(; i < carray_count(env_list->msg_tab) ; ++i) { | 406 | for(; i < carray_count(env_list->msg_tab) ; ++i) { |
406 | mailmessage * msg; | 407 | mailmessage * msg; |
407 | QBitArray mFlags(7); | 408 | QBitArray mFlags(7); |
408 | msg = (mailmessage*)carray_get(env_list->msg_tab, i); | 409 | msg = (mailmessage*)carray_get(env_list->msg_tab, i); |
409 | if (msg->msg_fields == NULL) { | 410 | if (msg->msg_fields == NULL) { |
410 | //odebug << "could not fetch envelope of message " << i << "" << oendl; | 411 | //odebug << "could not fetch envelope of message " << i << "" << oendl; |
411 | continue; | 412 | continue; |
412 | } | 413 | } |
413 | RecMailP mail = new RecMail(); | 414 | RecMailP mail = new RecMail(); |
414 | mail->setWrapper(this); | 415 | mail->setWrapper(this); |
415 | mail_flags * flag_result = 0; | 416 | mail_flags * flag_result = 0; |
416 | r = mailmessage_get_flags(msg,&flag_result); | 417 | r = mailmessage_get_flags(msg,&flag_result); |
417 | if (r == MAIL_ERROR_NOT_IMPLEMENTED) { | 418 | if (r == MAIL_ERROR_NOT_IMPLEMENTED) { |
418 | mFlags.setBit(FLAG_SEEN); | 419 | mFlags.setBit(FLAG_SEEN); |
419 | } | 420 | } |
420 | mailimf_single_fields single_fields; | 421 | mailimf_single_fields single_fields; |
421 | mailimf_single_fields_init(&single_fields, msg->msg_fields); | 422 | mailimf_single_fields_init(&single_fields, msg->msg_fields); |
422 | mail->setMsgsize(msg->msg_size); | 423 | mail->setMsgsize(msg->msg_size); |
423 | mail->setFlags(mFlags); | 424 | mail->setFlags(mFlags); |
424 | mail->setMbox(mailbox); | 425 | mail->setMbox(mailbox); |
425 | mail->setNumber(msg->msg_index); | 426 | mail->setNumber(msg->msg_index); |
426 | if (single_fields.fld_subject) | 427 | if (single_fields.fld_subject) |
427 | mail->setSubject( convert_String(single_fields.fld_subject->sbj_value)); | 428 | mail->setSubject( convert_String(single_fields.fld_subject->sbj_value)); |
428 | if (single_fields.fld_from) | 429 | if (single_fields.fld_from) |
429 | mail->setFrom(parseMailboxList(single_fields.fld_from->frm_mb_list)); | 430 | mail->setFrom(parseMailboxList(single_fields.fld_from->frm_mb_list)); |
430 | if (!mbox_as_to) { | 431 | if (!mbox_as_to) { |
431 | if (single_fields.fld_to) | 432 | if (single_fields.fld_to) |
432 | mail->setTo( parseAddressList( single_fields.fld_to->to_addr_list ) ); | 433 | mail->setTo( parseAddressList( single_fields.fld_to->to_addr_list ) ); |
433 | } else { | 434 | } else { |
434 | mail->setTo(mailbox); | 435 | mail->setTo(mailbox); |
435 | } | 436 | } |
436 | if (single_fields.fld_cc) | 437 | if (single_fields.fld_cc) |
437 | mail->setCC( parseAddressList( single_fields.fld_cc->cc_addr_list ) ); | 438 | mail->setCC( parseAddressList( single_fields.fld_cc->cc_addr_list ) ); |
438 | if (single_fields.fld_bcc) | 439 | if (single_fields.fld_bcc) |
439 | mail->setBcc( parseAddressList( single_fields.fld_bcc->bcc_addr_list ) ); | 440 | mail->setBcc( parseAddressList( single_fields.fld_bcc->bcc_addr_list ) ); |
440 | if (single_fields.fld_orig_date) { | 441 | if (single_fields.fld_orig_date) { |
441 | QDateTime d = parseDateTime( single_fields.fld_orig_date->dt_date_time,toffset); | 442 | QDateTime d = parseDateTime( single_fields.fld_orig_date->dt_date_time,toffset); |
442 | mail->setDate( d,toffset ); | 443 | mail->setDate( d,toffset ); |
443 | } | 444 | } |
444 | if (single_fields.fld_message_id && single_fields.fld_message_id->mid_value) { | 445 | if (single_fields.fld_message_id && single_fields.fld_message_id->mid_value) { |
445 | mail->setMsgid(QString(single_fields.fld_message_id->mid_value)); | 446 | mail->setMsgid(QString(single_fields.fld_message_id->mid_value)); |
446 | } | 447 | } |
447 | if (single_fields.fld_reply_to) { | 448 | if (single_fields.fld_reply_to) { |
448 | QStringList t = parseAddressList(single_fields.fld_reply_to->rt_addr_list); | 449 | QStringList t = parseAddressList(single_fields.fld_reply_to->rt_addr_list); |
449 | if (t.count()>0) { | 450 | if (t.count()>0) { |
450 | mail->setReplyto(t[0]); | 451 | mail->setReplyto(t[0]); |
451 | } | 452 | } |
452 | } | 453 | } |
453 | #if 0 | 454 | #if 0 |
454 | refs = single_fields.fld_references; | 455 | refs = single_fields.fld_references; |
455 | if (refs && refs->mid_list && clist_count(refs->mid_list)) { | 456 | if (refs && refs->mid_list && clist_count(refs->mid_list)) { |
456 | char * text = (char*)refs->mid_list->first->data; | 457 | char * text = (char*)refs->mid_list->first->data; |
457 | mail->setReplyto(QString(text)); | 458 | mail->setReplyto(QString(text)); |
458 | } | 459 | } |
459 | #endif | 460 | #endif |
460 | if (single_fields.fld_in_reply_to && single_fields.fld_in_reply_to->mid_list && | 461 | if (single_fields.fld_in_reply_to && single_fields.fld_in_reply_to->mid_list && |
461 | clist_count(single_fields.fld_in_reply_to->mid_list)) { | 462 | clist_count(single_fields.fld_in_reply_to->mid_list)) { |
462 | mail->setInreply(parseInreplies(single_fields.fld_in_reply_to)); | 463 | mail->setInreply(parseInreplies(single_fields.fld_in_reply_to)); |
463 | } | 464 | } |
464 | target.append(mail); | 465 | target.append(mail); |
465 | } | 466 | } |
466 | if (env_list) { | 467 | if (env_list) { |
467 | mailmessage_list_free(env_list); | 468 | mailmessage_list_free(env_list); |
468 | } | 469 | } |
469 | } | 470 | } |