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