fb7e5a1bbadc095e95dc675a0db694fe07d5b79f
[modest] / src / modest-tny-msg.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <string.h>
31 #include <gtkhtml/gtkhtml.h>
32 #include <tny-gtk-text-buffer-stream.h>
33 #include <tny-simple-list.h>
34 #include <tny-folder.h>
35 #include <modest-runtime.h>
36 #include "modest-formatter.h"
37 #include <tny-camel-stream.h>
38 #include <tny-camel-mime-part.h>
39 #include <camel/camel-stream-buffer.h>
40 #include <camel/camel-stream-mem.h>
41 #include <glib/gprintf.h>
42 #include <modest-tny-folder.h>
43
44 #ifdef HAVE_CONFIG_H
45 #include <config.h>
46 #endif /*HAVE_CONFIG_H */
47
48 #include <modest-tny-msg.h>
49 #include "modest-text-utils.h"
50
51 static TnyMimePart * add_body_part (TnyMsg *msg, const gchar *body,
52                                     const gchar *content_type);
53 static TnyMimePart * add_html_body_part (TnyMsg *msg, const gchar *body);
54 static void add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline);
55 static void add_images (TnyMsg *msg, GList *attachments_list);
56 static char * get_content_type(const gchar *s);
57 static gboolean is_ascii(const gchar *s);
58
59
60 TnyMsg*
61 modest_tny_msg_new (const gchar* mailto, const gchar* from, const gchar *cc,
62                     const gchar *bcc, const gchar* subject, const gchar *body,
63                     GList *attachments)
64 {
65         TnyMsg *new_msg;
66         TnyHeader *header;
67         gchar *content_type;
68         
69         /* Create new msg */
70         new_msg = modest_formatter_create_message (NULL, TRUE, (attachments != NULL), FALSE);
71         header  = tny_msg_get_header (new_msg);
72         
73         if ((from != NULL) && (strlen(from) > 0)) {
74                 tny_header_set_from (TNY_HEADER (header), from);
75                 tny_header_set_replyto (TNY_HEADER (header), from);
76         }
77         if ((mailto != NULL) && (strlen(mailto) > 0)) 
78                 tny_header_set_to (TNY_HEADER (header), mailto);
79         if ((cc != NULL) && (strlen(cc) > 0)) 
80                 tny_header_set_cc (TNY_HEADER (header), cc);
81         if ((bcc != NULL) && (strlen(bcc) > 0)) 
82                 tny_header_set_bcc (TNY_HEADER (header), bcc);
83         
84         if ((subject != NULL) && (strlen(subject) > 0)) 
85                 tny_header_set_subject (TNY_HEADER (header), subject);
86
87         content_type = get_content_type(body);
88
89         /* set modest as the X-Mailer
90          * we could this in the platform factory, but then the header
91          * would show up before all the others.
92          */
93         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
94                                        VERSION);
95         
96         /* Add the body of the new mail */
97         /* This is needed even if body is NULL or empty. */
98         add_body_part (new_msg, body, content_type);
99         g_free (content_type);
100                        
101         /* Add attachments */
102         if (attachments)
103                 add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE);
104         if (header)
105                 g_object_unref(header);
106
107         return new_msg;
108 }
109
110 TnyMsg*
111 modest_tny_msg_new_html_plain (const gchar* mailto, const gchar* from, const gchar *cc,
112                                const gchar *bcc, const gchar* subject, 
113                                const gchar *html_body, const gchar *plain_body,
114                                GList *attachments, GList *images)
115 {
116         TnyMsg *new_msg;
117         TnyHeader *header;
118         gchar *content_type;
119         
120         /* Create new msg */
121         new_msg = modest_formatter_create_message (NULL, FALSE, (attachments != NULL), (images != NULL));
122         header  = tny_msg_get_header (new_msg);
123         
124         if ((from != NULL) && (strlen(from) > 0)) {
125                 tny_header_set_from (TNY_HEADER (header), from);
126                 tny_header_set_replyto (TNY_HEADER (header), from);
127         }
128         if ((mailto != NULL) && (strlen(mailto) > 0)) 
129                 tny_header_set_to (TNY_HEADER (header), mailto);
130         if ((cc != NULL) && (strlen(cc) > 0)) 
131                 tny_header_set_cc (TNY_HEADER (header), cc);
132         if ((bcc != NULL) && (strlen(bcc) > 0)) 
133                 tny_header_set_bcc (TNY_HEADER (header), bcc);
134         
135         if ((subject != NULL) && (strlen(subject) > 0)) 
136                 tny_header_set_subject (TNY_HEADER (header), subject);
137
138         content_type = get_content_type(plain_body);
139         
140         /* set modest as the X-Mailer
141          * we could this in the platform factory, but then the header
142          * would show up before all the others.
143          */
144         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
145                                        VERSION);
146
147         /* Add the body of the new mail */      
148         add_body_part (new_msg, plain_body, content_type);
149         add_html_body_part (new_msg, html_body);
150         g_free (content_type);
151                        
152         /* Add attachments */
153         add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE);
154         add_images (new_msg, images);
155         if (header)
156                 g_object_unref(header);
157
158         return new_msg;
159 }
160
161
162 /* FIXME: this func copy from modest-mail-operation: refactor */
163 static TnyMimePart *
164 add_body_part (TnyMsg *msg, 
165                const gchar *body,
166                const gchar *content_type)
167 {
168         TnyMimePart *text_body_part = NULL;
169         TnyStream *text_body_stream;
170
171         /* Create the stream */
172         text_body_stream = TNY_STREAM (tny_camel_stream_new
173                                        (camel_stream_mem_new_with_buffer
174                                         (body, (body ? strlen(body) : 0))));
175
176         text_body_part = modest_formatter_create_body_part (NULL, msg);
177
178         /* Construct MIME part */
179         tny_stream_reset (text_body_stream);
180         tny_mime_part_construct_from_stream (text_body_part,
181                                              text_body_stream,
182                                              content_type);
183         tny_stream_reset (text_body_stream);
184
185         g_object_unref (G_OBJECT(text_body_part));
186
187         /* Clean */
188         g_object_unref (text_body_stream);
189
190         return text_body_part;
191 }
192
193 static TnyMimePart *
194 add_html_body_part (TnyMsg *msg, 
195                     const gchar *body)
196 {
197         TnyMimePart *html_body_part = NULL;
198         TnyStream *html_body_stream;
199
200         /* Create the stream */
201         html_body_stream = TNY_STREAM (tny_camel_stream_new
202                                        (camel_stream_mem_new_with_buffer
203                                         (body, strlen(body))));
204
205         /* Create body part if needed */
206         html_body_part = modest_formatter_create_body_part (NULL, msg);
207
208         /* Construct MIME part */
209         tny_stream_reset (html_body_stream);
210         tny_mime_part_construct_from_stream (html_body_part,
211                                              html_body_stream,
212                                              "text/html; charset=utf-8");
213         tny_stream_reset (html_body_stream);
214
215         g_object_unref (G_OBJECT(html_body_part));
216
217         /* Clean */
218         g_object_unref (html_body_stream);
219
220         return html_body_part;
221 }
222
223 static TnyMimePart *
224 copy_mime_part (TnyMimePart *part)
225 {
226         TnyMimePart *result = NULL;
227         const gchar *attachment_content_type;
228         const gchar *attachment_filename;
229         const gchar *attachment_cid;
230         TnyList *parts;
231         TnyIterator *iterator;
232         TnyStream *attachment_stream;
233
234         if (TNY_IS_MSG (part)) {
235                 g_object_ref (part);
236                 return part;
237         }
238
239         result = tny_platform_factory_new_mime_part (
240                 modest_runtime_get_platform_factory());
241
242         attachment_content_type = tny_mime_part_get_content_type (part);
243
244         /* get mime part headers */
245         attachment_filename = tny_mime_part_get_filename (part);
246         attachment_cid = tny_mime_part_get_content_id (part);
247         
248         /* fill the stream */
249         attachment_stream = tny_mime_part_get_stream (part);
250         tny_stream_reset (attachment_stream);
251         tny_mime_part_construct_from_stream (result,
252                                              attachment_stream,
253                                              attachment_content_type);
254         tny_stream_reset (attachment_stream);
255         
256         /* set other mime part fields */
257         tny_mime_part_set_filename (result, attachment_filename);
258         tny_mime_part_set_content_id (result, attachment_cid);
259
260         /* copy subparts */
261         parts = tny_simple_list_new ();
262         tny_mime_part_get_parts (part, parts);
263         iterator = tny_list_create_iterator (parts);
264         while (!tny_iterator_is_done (iterator)) {
265                 TnyMimePart *subpart = TNY_MIME_PART (tny_iterator_get_current (iterator));
266                 if (subpart) {
267                         const gchar *subpart_cid;
268                         TnyMimePart *subpart_copy = copy_mime_part (subpart);
269                         subpart_cid = tny_mime_part_get_content_id (subpart);
270                         tny_mime_part_add_part (result, subpart_copy);
271                         if (subpart_cid)
272                                 tny_mime_part_set_content_id (result, subpart_cid);
273                         g_object_unref (subpart);
274                         g_object_unref (subpart_copy);
275                 }
276
277                 tny_iterator_next (iterator);
278         }
279         g_object_unref (iterator);
280         g_object_unref (parts);
281         g_object_unref (attachment_stream);
282
283         return result;
284 }
285
286 static void
287 add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline)
288 {
289         GList *pos;
290         TnyMimePart *attachment_part, *old_attachment;
291
292         for (pos = (GList *)attachments_list; pos; pos = pos->next) {
293
294                 old_attachment = pos->data;
295                 if (!tny_mime_part_is_purged (old_attachment)) {
296                         const gchar *old_cid;
297                         old_cid = tny_mime_part_get_content_id (old_attachment);
298                         attachment_part = copy_mime_part (old_attachment);
299                         tny_mime_part_set_header_pair (attachment_part, "Content-Disposition", 
300                                                        add_inline?"inline":"attachment");
301                         tny_mime_part_add_part (TNY_MIME_PART (part), attachment_part);
302                         if (old_cid)
303                                 tny_mime_part_set_content_id (attachment_part, old_cid);
304                         g_object_unref (attachment_part);
305                 }
306         }
307 }
308
309 static void
310 add_images (TnyMsg *msg, GList *images_list)
311 {
312         TnyMimePart *related_part = NULL;
313         const gchar *content_type;
314
315         content_type = tny_mime_part_get_content_type (TNY_MIME_PART (msg));
316
317         if ((content_type != NULL) && !strcasecmp (content_type, "multipart/related")) {
318                 related_part = g_object_ref (msg);
319         } else if ((content_type != NULL) && !strcasecmp (content_type, "multipart/mixed")) {
320                 TnyList *parts = TNY_LIST (tny_simple_list_new ());
321                 TnyIterator *iter = NULL;
322                 tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
323                 iter = tny_list_create_iterator (parts);
324
325                 while (!tny_iterator_is_done (iter)) {
326                         TnyMimePart *part = TNY_MIME_PART (tny_iterator_get_current (iter));
327                         if (part && !g_strcasecmp (tny_mime_part_get_content_type (part), "multipart/related")) {
328                                 related_part = part;
329                                 break;
330                         } else {
331                                 g_object_unref (part);
332                         }
333                         tny_iterator_next (iter);
334                 }
335                 g_object_unref (iter);
336                 g_object_unref (parts);
337         }
338
339         if (related_part != NULL) {
340                 /* TODO: attach images in their proper place */
341                 add_attachments (related_part, images_list, TRUE);
342                 g_object_unref (related_part);
343         }
344 }
345
346
347 gchar * 
348 modest_tny_msg_get_body (TnyMsg *msg, gboolean want_html, gboolean *is_html)
349 {
350         TnyStream *stream;
351         TnyMimePart *body;
352         GtkTextBuffer *buf;
353         GtkTextIter start, end;
354         gchar *to_quote;
355         gboolean result_was_html = TRUE;
356
357         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
358         
359         body = modest_tny_msg_find_body_part(msg, want_html);
360         if (!body)
361                 return NULL;
362
363         buf = gtk_text_buffer_new (NULL);
364         stream = TNY_STREAM (tny_gtk_text_buffer_stream_new (buf));
365         tny_stream_reset (stream);
366         tny_mime_part_decode_to_stream (body, stream, NULL);
367         tny_stream_reset (stream);
368         
369         gtk_text_buffer_get_bounds (buf, &start, &end);
370         to_quote = gtk_text_buffer_get_text (buf, &start, &end, FALSE);
371         if (tny_mime_part_content_type_is (body, "text/plain")) {
372                 gchar *to_quote_converted = modest_text_utils_convert_to_html (to_quote);
373                 g_free (to_quote);
374                 to_quote = to_quote_converted;
375                 result_was_html = FALSE;
376         }
377
378         g_object_unref (buf);
379         g_object_unref (G_OBJECT(stream));
380         g_object_unref (G_OBJECT(body));
381
382         if (is_html != NULL)
383                 *is_html = result_was_html;
384
385         return to_quote;
386 }
387
388
389 TnyMimePart*
390 modest_tny_msg_find_body_part_from_mime_part (TnyMimePart *msg, gboolean want_html)
391 {
392         const gchar *desired_mime_type = want_html ? "text/html" : "text/plain";
393         TnyMimePart *part = NULL;
394         TnyList *parts = NULL;
395         TnyIterator *iter = NULL;
396         
397         if (!msg)
398                 return NULL;
399
400         parts = TNY_LIST (tny_simple_list_new());
401         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
402
403         iter  = tny_list_create_iterator(parts);
404
405         /* no parts? assume it's single-part message */
406         if (tny_iterator_is_done(iter)) {
407                 g_object_unref (G_OBJECT(iter));
408                 return TNY_MIME_PART (g_object_ref(G_OBJECT(msg)));
409         } else {
410                 do {
411                         gchar *content_type = NULL;
412                         gchar *content_disp;
413                         gboolean has_content_disp;
414
415                         part = TNY_MIME_PART(tny_iterator_get_current (iter));
416
417                         if (!part) {
418                                 g_warning ("%s: not a valid mime part", __FUNCTION__);
419                                 continue;
420                         }
421
422                         /* it's a message --> ignore */
423                         if (part && TNY_IS_MSG (part)) {
424                                 g_object_unref (part);
425                                 tny_iterator_next (iter);
426                                 continue;
427                         }                       
428
429                         /* we need to strdown the content type, because
430                          * tny_mime_part_has_content_type does not do it...
431                          */
432                         content_type = g_ascii_strdown (tny_mime_part_get_content_type (part), -1);
433                         
434                         /* mime-parts with a content-disposition header (either 'inline' or 'attachment')
435                          * cannot be body parts
436                          */
437                         content_disp = modest_tny_mime_part_get_header_value (part, "Content-Disposition"); 
438                         has_content_disp = content_disp && strlen (content_disp) != 0;
439                         g_free (content_disp);
440                         
441                         if (g_str_has_prefix (content_type, desired_mime_type) && !has_content_disp) {
442                                 /* we found the desired mime-type! */
443                                 g_free (content_type);
444                                 break;
445
446                         } else  if (g_str_has_prefix(content_type, "multipart")) {
447
448                                 /* multipart? recurse! */
449                                 g_object_unref (part);
450                                 g_free (content_type);
451                                 part = modest_tny_msg_find_body_part_from_mime_part (part, want_html);
452                                 if (part)
453                                         break;
454                         } else
455                                 g_free (content_type);
456                         
457                         if (part) {
458                                 g_object_unref (G_OBJECT(part));
459                                 part = NULL;
460                         }
461                         
462                         tny_iterator_next (iter);
463                         
464                 } while (!tny_iterator_is_done(iter));
465         }
466         
467         g_object_unref (G_OBJECT(iter));
468         g_object_unref (G_OBJECT(parts));
469
470         /* if were trying to find an HTML part and couldn't find it,
471          * try to find a text/plain part instead
472          */
473         if (!part && want_html) 
474                 return modest_tny_msg_find_body_part_from_mime_part (msg, FALSE);
475         else
476                 return part; /* this maybe NULL, this is not an error; some message just don't have a body
477                               * part */
478 }
479
480
481 TnyMimePart*
482 modest_tny_msg_find_body_part (TnyMsg *msg, gboolean want_html)
483 {
484         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
485         
486         return modest_tny_msg_find_body_part_from_mime_part (TNY_MIME_PART(msg),
487                                                              want_html);
488 }
489
490
491 #define MODEST_TNY_MSG_PARENT_UID "parent-uid"
492
493 static TnyMsg *
494 create_reply_forward_mail (TnyMsg *msg, TnyHeader *header, const gchar *from,
495                            const gchar *signature, gboolean is_reply,
496                            guint type /*ignored*/, GList *attachments)
497 {
498         TnyMsg *new_msg;
499         TnyHeader *new_header;
500         gchar *new_subject;
501         TnyMimePart *body = NULL;
502         ModestFormatter *formatter;
503         gchar *subject_prefix;
504         gboolean no_text_part;
505         
506         if (header)
507                 g_object_ref (header);
508         else
509                 header = tny_msg_get_header (msg);
510
511         /* Get body from original msg. Always look for the text/plain
512            part of the message to create the reply/forwarded mail */
513         if (msg != NULL)
514                 body   = modest_tny_msg_find_body_part (msg, FALSE);
515         
516         if (modest_conf_get_bool (modest_runtime_get_conf (), MODEST_CONF_PREFER_FORMATTED_TEXT,
517                                   NULL))
518                 formatter = modest_formatter_new ("text/html", signature);
519         else
520                 formatter = modest_formatter_new ("text/plain", signature);
521         
522
523         /* if we don't have a text-part */
524         no_text_part = (!body) || (strcmp (tny_mime_part_get_content_type (body), "text/html")==0);
525         
526         /* when we're reply, include the text part if we have it, or nothing otherwise. */
527         if (is_reply)
528                 new_msg = modest_formatter_quote  (formatter, no_text_part ? NULL: body, header,
529                                                     attachments);
530         else {
531                 /* for attachements; inline if there is a text part, and include the
532                  * full old mail if there was none */
533                 if (no_text_part) 
534                         new_msg = modest_formatter_attach (formatter, msg, header);
535                 else 
536                         new_msg = modest_formatter_inline  (formatter, body, header,
537                                                             attachments);
538         }
539         
540         g_object_unref (G_OBJECT(formatter));
541         if (body)
542                 g_object_unref (G_OBJECT(body));
543         
544         /* Fill the header */
545         new_header = tny_msg_get_header (new_msg);      
546         tny_header_set_from (new_header, from);
547         tny_header_set_replyto (new_header, from);
548
549         /* Change the subject */
550         if (is_reply)
551                 subject_prefix = g_strconcat (_("mail_va_re"), ":", NULL);
552         else
553                 subject_prefix = g_strconcat (_("mail_va_fw"), ":", NULL);
554         new_subject =
555                 (gchar *) modest_text_utils_derived_subject (tny_header_get_subject(header),
556                                                              subject_prefix);
557         g_free (subject_prefix);
558         tny_header_set_subject (new_header, (const gchar *) new_subject);
559         g_free (new_subject);
560         
561         /* get the parent uid, and set it as a gobject property on the new msg */
562         if (new_msg) {
563                 gchar* parent_uid = modest_tny_folder_get_header_unique_id (header);
564                 g_object_set_data_full (G_OBJECT(new_msg), MODEST_TNY_MSG_PARENT_UID,
565                                         parent_uid, g_free);
566         }
567
568         /* set modest as the X-Mailer
569          * we could this in the platform factory, but then the header
570          * would show up before all the others.
571          */
572         tny_mime_part_set_header_pair (TNY_MIME_PART (msg), "X-Mailer", "Modest "
573                                        VERSION);
574
575         /* Clean */
576         g_object_unref (G_OBJECT (new_header));
577         g_object_unref (G_OBJECT (header));
578         /* ugly to unref it here instead of in the calling func */
579
580         return new_msg;
581 }
582
583 const gchar*
584 modest_tny_msg_get_parent_uid (TnyMsg *msg)
585 {
586         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
587         
588         return g_object_get_data (G_OBJECT(msg), MODEST_TNY_MSG_PARENT_UID);
589 }
590
591
592
593 static void
594 add_if_attachment (gpointer data, gpointer user_data)
595 {
596         TnyMimePart *part;
597         GList **attachments_list;
598
599         part = TNY_MIME_PART (data);
600         attachments_list = ((GList **) user_data);
601
602         if ((tny_mime_part_is_attachment (part))||(TNY_IS_MSG (part))) {
603                 *attachments_list = g_list_prepend (*attachments_list, part);
604                 g_object_ref (part);
605         }
606 }
607
608 TnyMsg* 
609 modest_tny_msg_create_forward_msg (TnyMsg *msg, 
610                                    const gchar *from,
611                                    const gchar *signature,
612                                    ModestTnyMsgForwardType forward_type)
613 {
614         TnyMsg *new_msg;
615         TnyList *parts = NULL;
616         GList *attachments_list = NULL;
617
618         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
619         
620         /* Add attachments */
621         parts = TNY_LIST (tny_simple_list_new());
622         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
623         tny_list_foreach (parts, add_if_attachment, &attachments_list);
624
625         new_msg = create_reply_forward_mail (msg, NULL, from, signature, FALSE, forward_type,
626                                              attachments_list);
627         add_attachments (TNY_MIME_PART (new_msg), attachments_list, FALSE);
628
629         /* Clean */
630         if (attachments_list)
631                 g_list_free (attachments_list);
632         g_object_unref (G_OBJECT (parts));
633
634         return new_msg;
635 }
636
637
638 gchar*
639 modest_tny_mime_part_get_header_value (TnyMimePart *part, const gchar *header)
640 {
641         TnyList *pairs;
642         TnyIterator *iter;
643         gchar *val;
644         
645         g_return_val_if_fail (part && TNY_IS_MIME_PART(part), NULL);
646         g_return_val_if_fail (header, NULL);
647
648         pairs = tny_simple_list_new ();
649         
650         tny_mime_part_get_header_pairs (part, pairs);
651         iter = tny_list_create_iterator (pairs);
652
653         val = NULL;
654         while (!tny_iterator_is_done(iter) && !val) {
655
656                 TnyPair *pair = (TnyPair*)tny_iterator_get_current(iter);
657                 if (strcasecmp (header, tny_pair_get_name(pair)) == 0)
658                         val = g_strdup (tny_pair_get_value(pair));
659                 g_object_unref (pair);          
660
661                 tny_iterator_next (iter);
662         }
663
664         g_object_unref (pairs);
665         g_object_unref (iter);
666
667         return val;
668 }
669
670
671 /* we consider more things attachments than tinymail does...
672  */
673 gboolean
674 modest_tny_mime_part_is_attachment_for_modest (TnyMimePart *part)
675 {
676         gchar *content_disp;
677         gchar *content_type;
678         gboolean has_content_disp;
679
680         g_return_val_if_fail (part && TNY_IS_MIME_PART(part), FALSE);
681         
682         /* if tinymail thinks it's an attachment, it definitely is */
683         if (tny_mime_part_is_attachment (part))
684                 return TRUE; 
685
686         /* if the mime part is a message itself (ie. embedded), it's an attachment */
687         if (TNY_IS_MSG (part))
688                 return TRUE;
689
690         content_disp = modest_tny_mime_part_get_header_value (part, "Content-Disposition"); 
691         has_content_disp = content_disp && strlen (content_disp) != 0;
692         g_free (content_disp);
693         
694         /* if it doesn't have a content deposition, it's not an attachment */
695         if (!content_disp)
696                 return FALSE;
697         
698         /* ok, it must be content-disposition "inline" then, because "attachment"
699          * is already handle above "...is_attachment". modest consider these "inline" things
700          * attachments as well, unless they are embedded images for html mail 
701          */
702         content_type = g_ascii_strdown (tny_mime_part_get_content_type (part), -1);
703         if (!g_str_has_prefix (content_type, "image/")) {
704                 g_free (content_type);
705                 return TRUE; /* it's not an image, so it must be an attachment */
706         }
707         g_free (content_type);
708
709
710         /* now, if it's an inline-image, and it has a content-id or location, we
711          * we guess it's an inline image, and not an attachment */
712         if (tny_mime_part_get_content_id (part) || tny_mime_part_get_content_location(part))
713                 return FALSE;
714                 
715         /* in other cases... */
716         return TRUE;
717 }
718
719
720
721
722 static gint
723 count_addresses (const gchar* addresses)
724 {
725         gint count = 1;
726
727         if (!addresses)
728                 return 0;
729         
730         while (*addresses) {
731                 if (*addresses == ',' || *addresses == ';')
732                         ++count;
733                 ++addresses;
734         }
735         
736         return count;
737 }
738
739
740 /* get the new To:, based on the old header,
741  * result is newly allocated or NULL in case of error
742  * */
743 static gchar*
744 get_new_to (TnyMsg *msg, TnyHeader *header, const gchar* from,
745             ModestTnyMsgReplyMode reply_mode)
746 {
747         const gchar* old_reply_to;
748         const gchar* old_from;
749         gchar* new_to;
750         
751         /* according to RFC2369 (http://www.faqs.org/rfcs/rfc2369.html), we
752          * can identify Mailing-List posts by the List-Help header.
753          * for mailing lists, both the Reply-To: and From: should be included
754          * in the new To:; for now, we're ignoring List-Post
755          */
756         gchar* list_help = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
757                                                                   "List-Help");
758         gboolean is_mailing_list = (list_help != NULL);
759         g_free (list_help);
760
761
762         /* reply to sender, use ReplyTo or From */
763         //old_reply_to = tny_header_get_replyto (header);
764         old_reply_to = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
765                                                               "Reply-To"); 
766         old_from     = tny_header_get_from (header);
767         
768         if (!old_from &&  !old_reply_to) {
769                 g_warning ("%s: failed to get either Reply-To: or From: from header",
770                            __FUNCTION__);
771                 return NULL;
772         }
773         
774         /* for mailing lists, use both Reply-To and From if we did a
775          * 'Reply All:'
776          * */
777         if (is_mailing_list && reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL &&
778             old_reply_to && old_from && strcmp (old_from, old_reply_to) != 0)
779                 new_to = g_strjoin (",", old_reply_to, old_from, NULL);
780         else
781                 /* otherwise use either Reply-To: (preferred) or From: */
782                 new_to = g_strdup (old_reply_to ? old_reply_to : old_from);
783
784         /* in case of ReplyAll, we need to add the Recipients in the old To: */
785         if (reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL) {
786                 const gchar *old_to = tny_header_get_to (header);
787                 if (!old_to) 
788                         g_warning ("%s: no To: address found in source mail",
789                                    __FUNCTION__);
790                 else {
791                         /* append the old To: */
792                         gchar *tmp = g_strjoin (",", new_to, old_to, NULL);
793                         g_free (new_to);
794                         new_to = tmp;
795                 }
796
797                 /* remove duplicate entries */
798                 gchar *tmp = modest_text_utils_remove_duplicate_addresses (new_to);
799                 g_free (new_to);
800                 new_to = tmp;
801                 
802                 /* now, strip me (the new From:) from the new_to, but only if
803                  * there are >1 addresses there */
804                 if (count_addresses (new_to) > 1) {
805                         gchar *tmp = modest_text_utils_remove_address (new_to, from);
806                         g_free (new_to);
807                         new_to = tmp;
808                 }
809         }
810
811         return new_to;
812 }
813
814
815 /* get the new Cc:, based on the old header,
816  * result is newly allocated or NULL in case of error */
817 static gchar*
818 get_new_cc (TnyHeader *header, const gchar* from)
819 {
820         const gchar *old_cc;
821
822         old_cc = tny_header_get_cc (header);
823         if (!old_cc)
824                 return NULL;
825
826         /* remove me (the new From:) from the Cc: list */
827         return modest_text_utils_remove_address (old_cc, from);
828 }
829
830
831 TnyMsg* 
832 modest_tny_msg_create_reply_msg (TnyMsg *msg,
833                                  TnyHeader *header,
834                                  const gchar *from,
835                                  const gchar *signature,
836                                  ModestTnyMsgReplyType reply_type,
837                                  ModestTnyMsgReplyMode reply_mode)
838 {
839         TnyMsg *new_msg = NULL;
840         TnyHeader *new_header;
841         gchar *new_to = NULL;
842         TnyList *parts = NULL;
843         GList *attachments_list = NULL;
844
845         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
846         
847         /* Add attachments */
848         if (msg != NULL) {
849                 parts = TNY_LIST (tny_simple_list_new());
850                 tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
851                 tny_list_foreach (parts, add_if_attachment, &attachments_list);
852         }
853
854         new_msg = create_reply_forward_mail (msg, header, from, signature, TRUE, reply_type,
855                                              attachments_list);
856         if (attachments_list) {
857                 g_list_foreach (attachments_list, (GFunc) g_object_unref, NULL);
858                 g_list_free (attachments_list);
859         }
860         if (parts)
861                 g_object_unref (G_OBJECT (parts));
862
863         /* Fill the header */
864         if (header)
865                 g_object_ref (header);
866         else
867                 header = tny_msg_get_header (msg);
868
869         
870         new_header = tny_msg_get_header(new_msg);
871         new_to = get_new_to (msg, header, from, reply_mode);
872         if (!new_to)
873                 g_warning ("%s: failed to get new To:", __FUNCTION__);
874         else {
875                 tny_header_set_to (new_header, new_to);
876                 g_free (new_to);
877         }       
878         
879         if (reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL) {
880                 gchar *new_cc = get_new_cc (header, from);
881                 if (new_cc) { 
882                         tny_header_set_cc (new_header, new_cc);
883                         g_free (new_cc);
884                 }
885         }
886         
887         /* Clean */
888         g_object_unref (G_OBJECT (new_header));
889         g_object_unref (G_OBJECT (header));
890
891         return new_msg;
892 }
893
894
895 static gboolean
896 is_ascii(const gchar *s)
897 {
898         if (!s)
899                 return TRUE;
900         while (s[0]) {
901                 if (s[0] & 128 || s[0] < 32)
902                         return FALSE;
903                 s++;
904         }
905         return TRUE;
906 }
907
908 static char *
909 get_content_type(const gchar *s)
910 {
911         GString *type;
912         
913         type = g_string_new("text/plain");
914         if (!is_ascii(s)) {
915                 if (g_utf8_validate(s, -1, NULL)) {
916                         g_string_append(type, "; charset=\"utf-8\"");
917                 } else {
918                         /* it should be impossible to reach this, but better safe than sorry */
919                         g_warning("invalid utf8 in message");
920                         g_string_append(type, "; charset=\"latin1\"");
921                 }
922         }
923         return g_string_free(type, FALSE);
924 }