Added bug 90185 to changelog
[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-mem-stream.h>
38 #include <tny-camel-mime-part.h>
39 #include <glib/gprintf.h>
40 #include <modest-tny-folder.h>
41 #include "modest-tny-mime-part.h"
42 #include <modest-error.h>
43
44
45 #ifdef HAVE_CONFIG_H
46 #include <config.h>
47 #endif /*HAVE_CONFIG_H */
48
49 #include <modest-tny-msg.h>
50 #include "modest-text-utils.h"
51
52 static TnyMimePart * add_body_part (TnyMsg *msg, const gchar *body,
53                                     const gchar *content_type);
54 static TnyMimePart * add_html_body_part (TnyMsg *msg, const gchar *body);
55 static void add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline, GError **err);
56 static void add_images (TnyMsg *msg, GList *attachments_list, GError **err);
57 static char * get_content_type(const gchar *s);
58 static gboolean is_ascii(const gchar *s);
59
60
61 TnyMsg*
62 modest_tny_msg_new (const gchar* mailto, const gchar* from, const gchar *cc,
63                     const gchar *bcc, const gchar* subject, const gchar *body,
64                     GList *attachments, GError **err)
65 {
66         TnyMsg *new_msg;
67         TnyHeader *header;
68         gchar *content_type;
69         
70         /* Create new msg */
71         new_msg = modest_formatter_create_message (NULL, TRUE, (attachments != NULL), FALSE);
72         header  = tny_msg_get_header (new_msg);
73         
74         if ((from != NULL) && (strlen(from) > 0)) {
75                 tny_header_set_from (TNY_HEADER (header), from);
76                 tny_header_set_replyto (TNY_HEADER (header), from);
77         }
78         if ((mailto != NULL) && (strlen(mailto) > 0)) 
79                 tny_header_set_to (TNY_HEADER (header), mailto);
80         if ((cc != NULL) && (strlen(cc) > 0)) 
81                 tny_header_set_cc (TNY_HEADER (header), cc);
82         if ((bcc != NULL) && (strlen(bcc) > 0)) 
83                 tny_header_set_bcc (TNY_HEADER (header), bcc);
84         
85         if ((subject != NULL) && (strlen(subject) > 0)) 
86                 tny_header_set_subject (TNY_HEADER (header), subject);
87
88         content_type = get_content_type(body);
89
90         /* set modest as the X-Mailer
91          * we could this in the platform factory, but then the header
92          * would show up before all the others.
93          */
94         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
95                                        VERSION);
96         
97         /* Add the body of the new mail */
98         /* This is needed even if body is NULL or empty. */
99         add_body_part (new_msg, body, content_type);
100         g_free (content_type);
101                        
102         /* Add attachments */
103         if (attachments)
104                 add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE, err);
105         if (header)
106                 g_object_unref(header);
107
108         return new_msg;
109 }
110
111 TnyMsg*
112 modest_tny_msg_new_html_plain (const gchar* mailto, const gchar* from, const gchar *cc,
113                                const gchar *bcc, const gchar* subject, 
114                                const gchar *html_body, const gchar *plain_body,
115                                GList *attachments, GList *images, GError **err)
116 {
117         TnyMsg *new_msg;
118         TnyHeader *header;
119         gchar *content_type;
120         
121         /* Create new msg */
122         new_msg = modest_formatter_create_message (NULL, FALSE, (attachments != NULL), (images != NULL));
123         header  = tny_msg_get_header (new_msg);
124         
125         if ((from != NULL) && (strlen(from) > 0)) {
126                 tny_header_set_from (TNY_HEADER (header), from);
127                 tny_header_set_replyto (TNY_HEADER (header), from);
128         }
129         if ((mailto != NULL) && (strlen(mailto) > 0)) 
130                 tny_header_set_to (TNY_HEADER (header), mailto);
131         if ((cc != NULL) && (strlen(cc) > 0)) 
132                 tny_header_set_cc (TNY_HEADER (header), cc);
133         if ((bcc != NULL) && (strlen(bcc) > 0)) 
134                 tny_header_set_bcc (TNY_HEADER (header), bcc);
135         
136         if ((subject != NULL) && (strlen(subject) > 0)) 
137                 tny_header_set_subject (TNY_HEADER (header), subject);
138
139         content_type = get_content_type(plain_body);
140         
141         /* set modest as the X-Mailer
142          * we could this in the platform factory, but then the header
143          * would show up before all the others.
144          */
145         tny_mime_part_set_header_pair (TNY_MIME_PART (new_msg), "X-Mailer", "Modest "
146                                        VERSION);
147
148         /* Add the body of the new mail */      
149         add_body_part (new_msg, plain_body, content_type);
150         add_html_body_part (new_msg, html_body);
151         g_free (content_type);
152                        
153         /* Add attachments */
154         add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE, err);
155         add_images (new_msg, images, err);
156         if (header)
157                 g_object_unref(header);
158
159         return new_msg;
160 }
161
162
163 /* FIXME: this func copy from modest-mail-operation: refactor */
164 static TnyMimePart *
165 add_body_part (TnyMsg *msg, 
166                const gchar *body,
167                const gchar *content_type)
168 {
169         TnyMimePart *text_body_part = NULL;
170         TnyStream *text_body_stream;
171
172         /* Create the stream */
173         text_body_stream = TNY_STREAM (tny_camel_mem_stream_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 (text_body_part,
181                                  text_body_stream,
182                                  content_type, "7bit");
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_mem_stream_new_with_buffer
202                                         (body, strlen(body)));
203
204         /* Create body part if needed */
205         html_body_part = modest_formatter_create_body_part (NULL, msg);
206
207         /* Construct MIME part */
208         tny_stream_reset (html_body_stream);
209         tny_mime_part_construct (html_body_part,
210                                  html_body_stream,
211                                  "text/html; charset=utf-8", 
212                                  "7bit"); /* Sometimes it might be needed 
213                                              to make this one a 8bit! */
214         tny_stream_reset (html_body_stream);
215
216         g_object_unref (G_OBJECT(html_body_part));
217
218         /* Clean */
219         g_object_unref (html_body_stream);
220
221         return html_body_part;
222 }
223
224 static TnyMimePart *
225 copy_mime_part (TnyMimePart *part, GError **err)
226 {
227         TnyMimePart *result = NULL;
228         const gchar *attachment_content_type;
229         const gchar *attachment_filename;
230         const gchar *attachment_cid;
231         TnyList *parts;
232         TnyIterator *iterator;
233         TnyStream *attachment_stream;
234         const gchar *enc;
235         gint ret;
236         
237         if (TNY_IS_MSG (part)) {
238                 g_object_ref (part);
239                 return part;
240         }
241
242         result = tny_platform_factory_new_mime_part (
243                 modest_runtime_get_platform_factory());
244
245         attachment_content_type = tny_mime_part_get_content_type (part);
246
247         /* get mime part headers */
248         attachment_filename = tny_mime_part_get_filename (part);
249         attachment_cid = tny_mime_part_get_content_id (part);
250         
251         /* fill the stream */
252         attachment_stream = tny_mime_part_get_decoded_stream (part);
253         enc = tny_mime_part_get_transfer_encoding (part);
254         if (attachment_stream == NULL) {
255                 if (err != NULL && *err == NULL)
256                         g_set_error (err, MODEST_MAIL_OPERATION_ERROR, MODEST_MAIL_OPERATION_ERROR_FILE_IO, _("TODO: couldn't retrieve attachment"));
257                 g_object_unref (result);
258                 return NULL;
259         } else {
260                 ret = tny_stream_reset (attachment_stream);
261                 ret = tny_mime_part_construct (result,
262                                                attachment_stream,
263                                                attachment_content_type, 
264                                                enc);
265                 ret = tny_stream_reset (attachment_stream);
266         }
267         
268         /* set other mime part fields */
269         tny_mime_part_set_filename (result, attachment_filename);
270         tny_mime_part_set_content_id (result, attachment_cid);
271
272         /* copy subparts */
273         parts = tny_simple_list_new ();
274         tny_mime_part_get_parts (part, parts);
275         iterator = tny_list_create_iterator (parts);
276         while (!tny_iterator_is_done (iterator)) {
277                 TnyMimePart *subpart = TNY_MIME_PART (tny_iterator_get_current (iterator));
278                 if (subpart) {
279                         const gchar *subpart_cid;
280                         TnyMimePart *subpart_copy = copy_mime_part (subpart, err);
281                         if (subpart_copy != NULL) {
282                                 subpart_cid = tny_mime_part_get_content_id (subpart);
283                                 tny_mime_part_add_part (result, subpart_copy);
284                                 if (subpart_cid)
285                                         tny_mime_part_set_content_id (result, subpart_cid);
286                                 g_object_unref (subpart_copy);
287                         }
288                         g_object_unref (subpart);
289                 }
290
291                 tny_iterator_next (iterator);
292         }
293         g_object_unref (iterator);
294         g_object_unref (parts);
295         g_object_unref (attachment_stream);
296
297         return result;
298 }
299
300 static void
301 add_attachments (TnyMimePart *part, GList *attachments_list, gboolean add_inline, GError **err)
302 {
303         GList *pos;
304         TnyMimePart *attachment_part, *old_attachment;
305         gint ret;
306
307         for (pos = (GList *)attachments_list; pos; pos = pos->next) {
308
309                 old_attachment = pos->data;
310                 if (!tny_mime_part_is_purged (old_attachment)) {
311                         const gchar *old_cid;
312                         old_cid = tny_mime_part_get_content_id (old_attachment);
313                         attachment_part = copy_mime_part (old_attachment, err);
314                         if (attachment_part != NULL) {
315                                 if (add_inline) {
316                                         tny_mime_part_set_header_pair (attachment_part, "Content-Disposition",
317                                                                        "inline");
318                                 } else {
319                                         const gchar *filename;
320                                         filename = tny_mime_part_get_filename (old_attachment);
321                                         if (filename)
322                                                 tny_mime_part_set_filename (attachment_part, filename);
323                                         else
324                                                 tny_mime_part_set_header_pair (attachment_part, "Content-Disposition",
325                                                                                "attachment");
326                                 }
327                                 tny_mime_part_set_transfer_encoding (TNY_MIME_PART (attachment_part), "base64");
328                                 ret = tny_mime_part_add_part (TNY_MIME_PART (part), attachment_part);
329                                 if (old_cid)
330                                         tny_mime_part_set_content_id (attachment_part, old_cid);
331                                 g_object_unref (attachment_part);
332                         }
333                 }
334         }
335 }
336
337 static void
338 add_images (TnyMsg *msg, GList *images_list, GError **err)
339 {
340         TnyMimePart *related_part = NULL;
341         const gchar *content_type;
342
343         content_type = tny_mime_part_get_content_type (TNY_MIME_PART (msg));
344
345         if ((content_type != NULL) && !strcasecmp (content_type, "multipart/related")) {
346                 related_part = g_object_ref (msg);
347         } else if ((content_type != NULL) && !strcasecmp (content_type, "multipart/mixed")) {
348                 TnyList *parts = TNY_LIST (tny_simple_list_new ());
349                 TnyIterator *iter = NULL;
350                 tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
351                 iter = tny_list_create_iterator (parts);
352
353                 while (!tny_iterator_is_done (iter)) {
354                         TnyMimePart *part = TNY_MIME_PART (tny_iterator_get_current (iter));
355                         if (part && !g_strcasecmp (tny_mime_part_get_content_type (part), "multipart/related")) {
356                                 related_part = part;
357                                 break;
358                         } else {
359                                 g_object_unref (part);
360                         }
361                         tny_iterator_next (iter);
362                 }
363                 g_object_unref (iter);
364                 g_object_unref (parts);
365         }
366
367         if (related_part != NULL) {
368                 /* TODO: attach images in their proper place */
369                 add_attachments (related_part, images_list, TRUE, err);
370                 g_object_unref (related_part);
371         }
372 }
373
374
375 gchar * 
376 modest_tny_msg_get_body (TnyMsg *msg, gboolean want_html, gboolean *is_html)
377 {
378         TnyStream *stream;
379         TnyMimePart *body;
380         GtkTextBuffer *buf;
381         GtkTextIter start, end;
382         gchar *to_quote;
383         gboolean result_was_html = TRUE;
384
385         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
386         
387         body = modest_tny_msg_find_body_part(msg, want_html);
388         if (!body)
389                 return NULL;
390
391         buf = gtk_text_buffer_new (NULL);
392         stream = TNY_STREAM (tny_gtk_text_buffer_stream_new (buf));
393         tny_stream_reset (stream);
394         tny_mime_part_decode_to_stream (body, stream, NULL);
395         tny_stream_reset (stream);
396         
397         gtk_text_buffer_get_bounds (buf, &start, &end);
398         to_quote = gtk_text_buffer_get_text (buf, &start, &end, FALSE);
399         if (tny_mime_part_content_type_is (body, "text/plain")) {
400                 gchar *to_quote_converted = modest_text_utils_convert_to_html (to_quote);
401                 g_free (to_quote);
402                 to_quote = to_quote_converted;
403                 result_was_html = FALSE;
404         }
405
406         g_object_unref (buf);
407         g_object_unref (G_OBJECT(stream));
408         g_object_unref (G_OBJECT(body));
409
410         if (is_html != NULL)
411                 *is_html = result_was_html;
412
413         return to_quote;
414 }
415
416
417 TnyMimePart*
418 modest_tny_msg_find_body_part_from_mime_part (TnyMimePart *msg, gboolean want_html)
419 {
420         const gchar *desired_mime_type = want_html ? "text/html" : "text/plain";
421         TnyMimePart *part = NULL;
422         TnyList *parts = NULL;
423         TnyIterator *iter = NULL;
424         gchar *header_content_type;
425         gchar *header_content_type_lower = NULL;
426         
427         if (!msg)
428                 return NULL;
429
430         /* If it's an application multipart, then we don't get into as we don't
431          * support them (for example application/sml or wap messages */
432         header_content_type = modest_tny_mime_part_get_header_value (msg, "Content-Type");
433         if (header_content_type) {
434                 header_content_type = g_strstrip (header_content_type);
435                 header_content_type_lower = g_ascii_strdown (header_content_type, -1);
436         }
437         if (header_content_type_lower && 
438             g_str_has_prefix (header_content_type_lower, "multipart/") &&
439             !g_str_has_prefix (header_content_type_lower, "multipart/signed") &&
440             strstr (header_content_type_lower, "application/")) {
441                 g_free (header_content_type_lower);
442                 g_free (header_content_type);
443                 return NULL;
444         }       
445         g_free (header_content_type_lower);
446         g_free (header_content_type);
447
448         parts = TNY_LIST (tny_simple_list_new());
449         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
450
451         iter  = tny_list_create_iterator(parts);
452
453         /* no parts? assume it's single-part message */
454         if (tny_iterator_is_done(iter)) {
455                 gchar *content_type;
456                 gchar *content_type_lower;
457                 gboolean is_text_part;
458                 g_object_unref (G_OBJECT(iter));
459                 content_type = g_strdup (tny_mime_part_get_content_type (msg));
460                 if (content_type == NULL)
461                         return NULL;
462                 content_type = g_strstrip (content_type);
463                 content_type_lower = g_ascii_strdown (content_type, -1);
464                 g_free (content_type);
465                 is_text_part = 
466                         g_str_has_prefix (content_type_lower, "text/") ||
467                         g_str_has_prefix (content_type_lower, "message/rfc822");
468                 g_free (content_type_lower);
469                 /* if this part cannot be a supported body return NULL */
470                 if (!is_text_part) {
471                         return NULL;
472                 } else {
473                         return TNY_MIME_PART (g_object_ref(G_OBJECT(msg)));
474                 }
475         } else {
476                 do {
477                         gchar *tmp, *content_type = NULL;
478                         gboolean has_content_disp_name = FALSE;
479
480                         part = TNY_MIME_PART(tny_iterator_get_current (iter));
481
482                         if (!part) {
483                                 g_warning ("%s: not a valid mime part", __FUNCTION__);
484                                 continue;
485                         }
486
487                         /* it's a message --> ignore */
488                         if (part && TNY_IS_MSG (part)) {
489                                 g_object_unref (part);
490                                 tny_iterator_next (iter);
491                                 continue;
492                         }                       
493
494                         /* we need to strdown the content type, because
495                          * tny_mime_part_has_content_type does not do it...
496                          */
497                         content_type = g_ascii_strdown (tny_mime_part_get_content_type (part), -1);
498                         
499                         /* mime-parts with a content-disposition header (either 'inline' or 'attachment')
500                          * and a 'name=' thingy cannot be body parts
501                          */
502                                 
503                         tmp = modest_tny_mime_part_get_header_value (part, "Content-Disposition");
504                         if (tmp) {
505                                 gchar *content_disp = g_ascii_strdown(tmp, -1);
506                                 g_free (tmp);
507                                 has_content_disp_name = g_strstr_len (content_disp, strlen(content_disp), "name=") != NULL;
508                                 g_free (content_disp);
509                         }
510                         
511                         if (g_str_has_prefix (content_type, desired_mime_type) && 
512                             !has_content_disp_name &&
513                             !modest_tny_mime_part_is_attachment_for_modest (part)) {
514                                 /* we found the desired mime-type! */
515                                 g_free (content_type);
516                                 break;
517
518                         } else  if (g_str_has_prefix(content_type, "multipart")) {
519
520                                 /* multipart? recurse! */
521                                 g_object_unref (part);
522                                 g_free (content_type);
523                                 part = modest_tny_msg_find_body_part_from_mime_part (part, want_html);
524                                 if (part)
525                                         break;
526                         } else
527                                 g_free (content_type);
528                         
529                         if (part) {
530                                 g_object_unref (G_OBJECT(part));
531                                 part = NULL;
532                         }
533                         
534                         tny_iterator_next (iter);
535                         
536                 } while (!tny_iterator_is_done(iter));
537         }
538         
539         g_object_unref (G_OBJECT(iter));
540         g_object_unref (G_OBJECT(parts));
541
542         /* if were trying to find an HTML part and couldn't find it,
543          * try to find a text/plain part instead
544          */
545         if (!part && want_html) 
546                 return modest_tny_msg_find_body_part_from_mime_part (msg, FALSE);
547         else
548                 return part; /* this maybe NULL, this is not an error; some message just don't have a body
549                               * part */
550 }
551
552
553 TnyMimePart*
554 modest_tny_msg_find_body_part (TnyMsg *msg, gboolean want_html)
555 {
556         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
557         
558         return modest_tny_msg_find_body_part_from_mime_part (TNY_MIME_PART(msg),
559                                                              want_html);
560 }
561
562
563 #define MODEST_TNY_MSG_PARENT_UID "parent-uid"
564
565 static TnyMsg *
566 create_reply_forward_mail (TnyMsg *msg, TnyHeader *header, const gchar *from,
567                            const gchar *signature, gboolean is_reply,
568                            guint type /*ignored*/, GList *attachments)
569 {
570         TnyMsg *new_msg;
571         TnyHeader *new_header;
572         gchar *old_subject;
573         gchar *new_subject;
574         TnyMimePart *body = NULL;
575         ModestFormatter *formatter;
576         gchar *subject_prefix;
577         gboolean no_text_part;
578         
579         if (header)
580                 g_object_ref (header);
581         else
582                 header = tny_msg_get_header (msg);
583
584         /* Get body from original msg. Always look for the text/plain
585            part of the message to create the reply/forwarded mail */
586         if (msg != NULL)
587                 body   = modest_tny_msg_find_body_part (msg, FALSE);
588         
589         if (modest_conf_get_bool (modest_runtime_get_conf (), MODEST_CONF_PREFER_FORMATTED_TEXT,
590                                   NULL))
591                 formatter = modest_formatter_new ("text/html", signature);
592         else
593                 formatter = modest_formatter_new ("text/plain", signature);
594         
595
596         /* if we don't have a text-part */
597         no_text_part = (!body) || (strcmp (tny_mime_part_get_content_type (body), "text/html")==0);
598         
599         /* when we're reply, include the text part if we have it, or nothing otherwise. */
600         if (is_reply)
601                 new_msg = modest_formatter_quote  (formatter, no_text_part ? NULL: body, header,
602                                                     attachments);
603         else {
604                 /* for attachements; inline if there is a text part, and include the
605                  * full old mail if there was none */
606                 if (no_text_part) {
607                         new_msg = modest_formatter_attach (formatter, msg, header);
608                 } else { 
609                         new_msg = modest_formatter_inline  (formatter, body, header,
610                                                             attachments);
611                 }
612         }
613         
614         g_object_unref (G_OBJECT(formatter));
615         if (body)
616                 g_object_unref (G_OBJECT(body));
617         
618         /* Fill the header */
619         new_header = tny_msg_get_header (new_msg);      
620         tny_header_set_from (new_header, from);
621         tny_header_set_replyto (new_header, from);
622
623         /* Change the subject */
624         if (is_reply)
625                 subject_prefix = g_strconcat (_("mail_va_re"), ":", NULL);
626         else
627                 subject_prefix = g_strconcat (_("mail_va_fw"), ":", NULL);
628         old_subject = tny_header_dup_subject (header);
629         new_subject =
630                 (gchar *) modest_text_utils_derived_subject (old_subject,
631                                                              subject_prefix);
632         g_free (old_subject);
633         g_free (subject_prefix);
634         tny_header_set_subject (new_header, (const gchar *) new_subject);
635         g_free (new_subject);
636         
637         /* get the parent uid, and set it as a gobject property on the new msg */
638         if (new_msg) {
639                 gchar* parent_uid = modest_tny_folder_get_header_unique_id (header);
640                 g_object_set_data_full (G_OBJECT(new_msg), MODEST_TNY_MSG_PARENT_UID,
641                                         parent_uid, g_free);
642         }
643
644         /* set modest as the X-Mailer
645          * we could this in the platform factory, but then the header
646          * would show up before all the others.
647          */
648         tny_mime_part_set_header_pair (TNY_MIME_PART (msg), "X-Mailer", "Modest "
649                                        VERSION);
650
651         /* Clean */
652         g_object_unref (G_OBJECT (new_header));
653         g_object_unref (G_OBJECT (header));
654         /* ugly to unref it here instead of in the calling func */
655
656         if (!is_reply & !no_text_part) {
657                 add_attachments (TNY_MIME_PART (new_msg), attachments, FALSE, NULL);
658         }
659
660         return new_msg;
661 }
662
663 const gchar*
664 modest_tny_msg_get_parent_uid (TnyMsg *msg)
665 {
666         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
667         
668         return g_object_get_data (G_OBJECT(msg), MODEST_TNY_MSG_PARENT_UID);
669 }
670
671
672
673 static void
674 add_if_attachment (gpointer data, gpointer user_data)
675 {
676         TnyMimePart *part;
677         GList **attachments_list;
678
679         part = TNY_MIME_PART (data);
680         attachments_list = ((GList **) user_data);
681
682         if ((tny_mime_part_is_attachment (part))||(TNY_IS_MSG (part))) {
683                 *attachments_list = g_list_prepend (*attachments_list, part);
684                 g_object_ref (part);
685         }
686 }
687
688 TnyMsg* 
689 modest_tny_msg_create_forward_msg (TnyMsg *msg, 
690                                    const gchar *from,
691                                    const gchar *signature,
692                                    ModestTnyMsgForwardType forward_type)
693 {
694         TnyMsg *new_msg;
695         TnyList *parts = NULL;
696         GList *attachments_list = NULL;
697
698         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
699         
700         /* Add attachments */
701         parts = TNY_LIST (tny_simple_list_new());
702         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
703         tny_list_foreach (parts, add_if_attachment, &attachments_list);
704
705         new_msg = create_reply_forward_mail (msg, NULL, from, signature, FALSE, forward_type,
706                                              attachments_list);
707
708         /* Clean */
709         if (attachments_list) {
710                 g_list_foreach (attachments_list, (GFunc) g_object_unref, NULL);
711                 g_list_free (attachments_list);
712         }
713         g_object_unref (G_OBJECT (parts));
714
715         return new_msg;
716 }
717
718
719
720 static gint
721 count_addresses (const gchar* addresses)
722 {
723         gint count = 1;
724
725         if (!addresses)
726                 return 0;
727         
728         while (*addresses) {
729                 if (*addresses == ',' || *addresses == ';')
730                         ++count;
731                 ++addresses;
732         }
733         
734         return count;
735 }
736
737
738 /* get the new To:, based on the old header,
739  * result is newly allocated or NULL in case of error
740  * */
741 static gchar*
742 get_new_to (TnyMsg *msg, TnyHeader *header, const gchar* from,
743             ModestTnyMsgReplyMode reply_mode)
744 {
745         const gchar* old_reply_to;
746         gchar* old_from;
747         gchar* new_to;
748         
749         /* according to RFC2369 (http://www.faqs.org/rfcs/rfc2369.html), we
750          * can identify Mailing-List posts by the List-Help header.
751          * for mailing lists, both the Reply-To: and From: should be included
752          * in the new To:; for now, we're ignoring List-Post
753          */
754         gchar* list_help = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
755                                                                   "List-Help");
756         gboolean is_mailing_list = (list_help != NULL);
757         g_free (list_help);
758
759
760         /* reply to sender, use ReplyTo or From */
761         //old_reply_to = tny_header_get_replyto (header);
762         old_reply_to = modest_tny_mime_part_get_header_value (TNY_MIME_PART(msg), 
763                                                               "Reply-To"); 
764         old_from     = tny_header_dup_from (header);
765         
766         if (!old_from &&  !old_reply_to) {
767                 g_warning ("%s: failed to get either Reply-To: or From: from header",
768                            __FUNCTION__);
769                 return NULL;
770         }
771         
772         /* for mailing lists, use both Reply-To and From if we did a
773          * 'Reply All:'
774          * */
775         if (is_mailing_list && reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL &&
776             old_reply_to && old_from && strcmp (old_from, old_reply_to) != 0)
777                 new_to = g_strjoin (",", old_reply_to, old_from, NULL);
778         else
779                 /* otherwise use either Reply-To: (preferred) or From: */
780                 new_to = g_strdup (old_reply_to ? old_reply_to : old_from);
781         g_free (old_from);
782
783         /* in case of ReplyAll, we need to add the Recipients in the old To: */
784         if (reply_mode == MODEST_TNY_MSG_REPLY_MODE_ALL) {
785                 gchar *old_to = tny_header_dup_to (header);
786                 if (!old_to) 
787                         g_warning ("%s: no To: address found in source mail",
788                                    __FUNCTION__);
789                 else {
790                         /* append the old To: */
791                         gchar *tmp = g_strjoin (",", new_to, old_to, NULL);
792                         g_free (new_to);
793                         new_to = tmp;
794                         g_free (old_to);
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         gchar *old_cc;
821         gchar *result;
822
823         old_cc = tny_header_dup_cc (header);
824         if (!old_cc)
825                 return NULL;
826
827         /* remove me (the new From:) from the Cc: list */
828         result =  modest_text_utils_remove_address (old_cc, from);
829         g_free (old_cc);
830         return result;
831 }
832
833
834 TnyMsg* 
835 modest_tny_msg_create_reply_msg (TnyMsg *msg,
836                                  TnyHeader *header,
837                                  const gchar *from,
838                                  const gchar *signature,
839                                  ModestTnyMsgReplyType reply_type,
840                                  ModestTnyMsgReplyMode reply_mode)
841 {
842         TnyMsg *new_msg = NULL;
843         TnyHeader *new_header;
844         gchar *new_to = NULL;
845         TnyList *parts = NULL;
846         GList *attachments_list = NULL;
847
848         g_return_val_if_fail (msg && TNY_IS_MSG(msg), NULL);
849         
850         parts = TNY_LIST (tny_simple_list_new());
851         tny_mime_part_get_parts (TNY_MIME_PART (msg), parts);
852         tny_list_foreach (parts, add_if_attachment, &attachments_list);
853
854         new_msg = create_reply_forward_mail (msg, header, from, signature, TRUE, reply_type,
855                                              attachments_list);
856         if (attachments_list != NULL) {
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 }
925
926 guint64
927 modest_tny_msg_estimate_size (const gchar *plain_body, const gchar *html_body,
928                               guint64 parts_count,
929                               guint64 parts_size)
930 {
931         guint64 result;
932
933         /* estimation of headers size */
934         result = 1024;
935
936         /* We add a 20% of size due to the increase in 7bit encoding */
937         if (plain_body) {
938                 result += strlen (plain_body) * 120 / 100;
939         }
940         if (html_body) {
941                 result += strlen (html_body) * 120 / 100;
942         }
943
944         /* 256 bytes per additional part because of their headers */
945         result += parts_count * 256;
946
947         /* 150% of increase per encoding */
948         result += parts_size * 3 / 2;
949
950         return result;
951 }