Do not change text color if color dialog is closed
[modest] / src / modest-text-utils.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
31
32 #ifndef _GNU_SOURCE
33 #define _GNU_SOURCE
34 #endif /*_GNU_SOURCE*/
35 #include <string.h> /* for strcasestr */
36
37
38 #include <glib.h>
39 #include <stdlib.h>
40 #include <glib/gi18n.h>
41 #include <regex.h>
42 #include <modest-tny-platform-factory.h>
43 #include <modest-text-utils.h>
44 #include <modest-runtime.h>
45 #include <ctype.h>
46
47 #ifdef HAVE_CONFIG_H
48 #include <config.h>
49 #endif /*HAVE_CONFIG_H */
50
51 /* defines */
52 #define FORWARD_STRING _("mcen_ia_editor_original_message")
53 #define FROM_STRING _("mail_va_from")
54 #define SENT_STRING _("mcen_fi_message_properties_sent")
55 #define TO_STRING _("mail_va_to")
56 #define SUBJECT_STRING _("mail_va_subject")
57 #define EMPTY_STRING ""
58
59 /*
60  * do the hyperlinkification only for texts < 50 Kb,
61  * as it's quite slow. Without this, e.g. mail with
62  * an uuencoded part (which is not recognized as attachment,
63  * will hang modest
64  */
65 #define HYPERLINKIFY_MAX_LENGTH (1024*50)
66
67 /*
68  * we need these regexps to find URLs in plain text e-mails
69  */
70 typedef struct _url_match_pattern_t url_match_pattern_t;
71 struct _url_match_pattern_t {
72         gchar   *regex;
73         regex_t *preg;
74         gchar   *prefix;
75 };
76
77 typedef struct _url_match_t url_match_t;
78 struct _url_match_t {
79         guint offset;
80         guint len;
81         const gchar* prefix;
82 };
83
84
85 /*
86  * we mark the ampersand with \007 when converting text->html
87  * because after text->html we do hyperlink detecting, which
88  * could be screwed up by the ampersand.
89  * ie. 1<3 ==> 1\007lt;3
90  */
91 #define MARK_AMP '\007'
92 #define MARK_AMP_STR "\007"
93
94 /* mark &amp; separately, because they are parts of urls.
95  * ie. a&b => a\006amp;b, but a>b => a\007gt;b
96  *
97  * we need to handle '&' separately, because it can be part of URIs
98  * (as in href="http://foo.bar?a=1&b=1"), so inside those URIs
99  * we need to re-replace \006amp; with '&' again, while outside uri's
100  * it will be '&amp;'
101  * 
102  * yes, it's messy, but a consequence of doing text->html first, then hyperlinkify
103  */
104 #define MARK_AMP_URI '\006'
105 #define MARK_AMP_URI_STR "\006"
106
107
108 /* note: match MARK_AMP_URI_STR as well, because after txt->html, a '&' will look like $(MARK_AMP_URI_STR)"amp;" */
109 #define MAIL_VIEWER_URL_MATCH_PATTERNS  {                               \
110         { "(feed:|)(file|rtsp|http|ftp|https|mms|mmsh|webcal|feed|rtsp|rdp|lastfm|sip)://[-a-z0-9_$.+!*(),;:@%=\?/~#&" MARK_AMP_URI_STR \
111                         "]+[-a-z0-9_$%&" MARK_AMP_URI_STR "=?/~#]",     \
112           NULL, NULL },\
113         { "www\\.[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",\
114                         NULL, "http://" },                              \
115         { "ftp\\.[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",\
116           NULL, "ftp://" },\
117         { "(jabberto|voipto|sipto|sip|chatto|skype|xmpp):[-_a-z@0-9.+]+", \
118            NULL, NULL},                                             \
119         { "mailto:[-_a-z0-9.\\+]+@[-_a-z0-9.]+",                    \
120           NULL, NULL},\
121         { "[-_a-z0-9.\\+]+@[-_a-z0-9.]+",\
122           NULL, "mailto:"}\
123         }
124
125 const gchar account_title_forbidden_chars[] = {
126         '\\', '/', ':', '*', '?', '\'', '<', '>', '|', '^'
127 };
128 const gchar folder_name_forbidden_chars[] = {
129         '<', '>', ':', '\'', '/', '\\', '|', '?', '*', '^', '%', '$', '#', '&'
130 };
131 const gchar user_name_forbidden_chars[] = {
132         '<', '>'
133 };
134 const guint ACCOUNT_TITLE_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (account_title_forbidden_chars);
135 const guint FOLDER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (folder_name_forbidden_chars);
136 const guint USER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (user_name_forbidden_chars);
137
138 /* private */
139 static gchar*   cite                    (const time_t sent_date, const gchar *from);
140 static void     hyperlinkify_plain_text (GString *txt, gint offset);
141 static gint     cmp_offsets_reverse     (const url_match_t *match1, const url_match_t *match2);
142 static GSList*  get_url_matches         (GString *txt, gint offset);
143
144 static GString* get_next_line           (const char *b, const gsize blen, const gchar * iter);
145 static int      get_indent_level        (const char *l);
146 static void     unquote_line            (GString * l, const gchar *quote_symbol);
147 static void     append_quoted           (GString * buf, const gchar *quote_symbol,
148                                          const int indent, const GString * str, 
149                                          const int cutpoint);
150 static int      get_breakpoint_utf8     (const gchar * s, const gint indent, const gint limit);
151 static int      get_breakpoint_ascii    (const gchar * s, const gint indent, const gint limit);
152 static int      get_breakpoint          (const gchar * s, const gint indent, const gint limit);
153
154 static gchar*   modest_text_utils_quote_plain_text (const gchar *text, 
155                                                     const gchar *cite, 
156                                                     const gchar *signature,
157                                                     GList *attachments, 
158                                                     int limit);
159
160 static gchar*   modest_text_utils_quote_html       (const gchar *text, 
161                                                     const gchar *cite,
162                                                     const gchar *signature,
163                                                     GList *attachments,
164                                                     int limit);
165 static gchar*   get_email_from_address (const gchar *address);
166 static void     remove_extra_spaces (gchar *string);
167
168
169
170 /* ******************************************************************* */
171 /* ************************* PUBLIC FUNCTIONS ************************ */
172 /* ******************************************************************* */
173
174 gchar *
175 modest_text_utils_quote (const gchar *text, 
176                          const gchar *content_type,
177                          const gchar *signature,
178                          const gchar *from,
179                          const time_t sent_date, 
180                          GList *attachments,
181                          int limit)
182 {
183         gchar *retval, *cited;
184
185         g_return_val_if_fail (text, NULL);
186         g_return_val_if_fail (content_type, NULL);
187
188         cited = cite (sent_date, from);
189         
190         if (content_type && strcmp (content_type, "text/html") == 0)
191                 /* TODO: extract the <body> of the HTML and pass it to
192                    the function */
193                 retval = modest_text_utils_quote_html (text, cited, signature, attachments, limit);
194         else
195                 retval = modest_text_utils_quote_plain_text (text, cited, signature, attachments, limit);
196         
197         g_free (cited);
198         
199         return retval;
200 }
201
202
203 gchar *
204 modest_text_utils_cite (const gchar *text,
205                         const gchar *content_type,
206                         const gchar *signature,
207                         const gchar *from,
208                         time_t sent_date)
209 {
210         gchar *retval;
211         gchar *tmp_sig;
212         
213         g_return_val_if_fail (text, NULL);
214         g_return_val_if_fail (content_type, NULL);
215         
216         if (!signature) {
217                 tmp_sig = g_strdup (text);
218         } else {
219                 tmp_sig = g_strconcat (text, "\n", MODEST_TEXT_UTILS_SIGNATURE_MARKER, "\n", signature, NULL);
220         }
221
222         if (strcmp (content_type, "text/html") == 0) {
223                 retval = modest_text_utils_convert_to_html_body (tmp_sig, -1, TRUE);
224                 g_free (tmp_sig);
225         } else {
226                 retval = tmp_sig;
227         }
228
229         return retval;
230 }
231
232 static gchar *
233 forward_cite (const gchar *from,
234               const gchar *sent,
235               const gchar *to,
236               const gchar *subject)
237 {
238         g_return_val_if_fail (sent, NULL);
239         
240         return g_strdup_printf ("%s\n%s %s\n%s %s\n%s %s\n%s %s\n", 
241                                 FORWARD_STRING, 
242                                 FROM_STRING, (from)?from:"",
243                                 SENT_STRING, sent,
244                                 TO_STRING, (to)?to:"",
245                                 SUBJECT_STRING, (subject)?subject:"");
246 }
247
248 gchar * 
249 modest_text_utils_inline (const gchar *text,
250                           const gchar *content_type,
251                           const gchar *signature,
252                           const gchar *from,
253                           time_t sent_date,
254                           const gchar *to,
255                           const gchar *subject)
256 {
257         gchar sent_str[101];
258         gchar *cited;
259         gchar *retval;
260         
261         g_return_val_if_fail (text, NULL);
262         g_return_val_if_fail (content_type, NULL);
263         
264         modest_text_utils_strftime (sent_str, 100, "%c", sent_date);
265
266         cited = forward_cite (from, sent_str, to, subject);
267         
268         if (content_type && strcmp (content_type, "text/html") == 0)
269                 retval = modest_text_utils_quote_html (text, cited, signature, NULL, 80);
270         else
271                 retval = modest_text_utils_quote_plain_text (text, cited, signature, NULL, 80);
272         
273         g_free (cited);
274         return retval;
275 }
276
277 /* just to prevent warnings:
278  * warning: `%x' yields only last 2 digits of year in some locales
279  */
280 gsize
281 modest_text_utils_strftime(char *s, gsize max, const char *fmt, time_t timet)
282 {
283         struct tm tm;
284
285         /* To prevent possible problems in strftime that could leave
286            garbage in the s variable */
287         if (s)
288                 s[0] = '\0';
289         else
290                 return 0;
291
292         /* does not work on old maemo glib: 
293          *   g_date_set_time_t (&date, timet);
294          */
295         localtime_r (&timet, &tm);
296         return strftime(s, max, fmt, &tm);
297 }
298
299 gchar *
300 modest_text_utils_derived_subject (const gchar *subject, gboolean is_reply)
301 {
302         gchar *tmp, *subject_dup, *retval, *prefix;
303         const gchar *untranslated_prefix;
304         gint prefix_len, untranslated_prefix_len;
305         gboolean translated_found = FALSE;
306         gboolean first_time;
307
308         if (!subject || subject[0] == '\0')
309                 subject = _("mail_va_no_subject");
310
311         subject_dup = g_strdup (subject);
312         tmp = g_strchug (subject_dup);
313
314         prefix = (is_reply) ? _("mail_va_re") : _("mail_va_fw");
315         prefix = g_strconcat (prefix, ":", NULL);
316         prefix_len = g_utf8_strlen (prefix, -1);
317
318         untranslated_prefix =  (is_reply) ? "Re:" : "Fw:";
319         untranslated_prefix_len = 3;
320
321         /* We do not want things like "Re: Re: Re:" or "Fw: Fw:" so
322            delete the previous ones */
323         first_time = TRUE;
324         do {
325                 if (g_str_has_prefix (tmp, prefix)) {
326                         tmp += prefix_len;
327                         tmp = g_strchug (tmp);
328                         /* Do not consider translated prefixes in the
329                            middle of a Re:Re:..Re: like sequence */
330                         if (G_UNLIKELY (first_time))
331                                 translated_found = TRUE;
332                 } else if (g_str_has_prefix (tmp, untranslated_prefix)) {
333                         tmp += untranslated_prefix_len;
334                         tmp = g_strchug (tmp);
335                 } else {
336                         gchar *prefix_down, *tmp_down;
337
338                         /* We need this to properly check the cases of
339                            some clients adding FW: instead of Fw: for
340                            example */
341                         prefix_down = g_utf8_strdown (prefix, -1);
342                         tmp_down = g_utf8_strdown (tmp, -1);
343                         if (g_str_has_prefix (tmp_down, prefix_down)) {
344                                 tmp += prefix_len;
345                                 tmp = g_strchug (tmp);
346                                 g_free (prefix_down);
347                                 g_free (tmp_down);
348                         } else {
349                                 g_free (prefix_down);
350                                 g_free (tmp_down);
351                                 break;
352                         }
353                 }
354                 first_time = FALSE;
355         } while (tmp);
356
357         if (!g_strcmp0 (subject, tmp)) {
358                 /* normal case */
359                 retval = g_strdup_printf ("%s %s", untranslated_prefix, tmp);
360         } else {
361                 if (translated_found) {
362                         /* Found a translated prefix, i.e, "VS:" in Finish */
363                         retval = g_strdup_printf ("%s %s", prefix, tmp);
364                 } else {
365                         retval = g_strdup_printf ("%s %s", untranslated_prefix, tmp);
366                 }
367         }
368         g_free (subject_dup);
369         g_free (prefix);
370
371         return retval;
372 }
373
374
375 /* Performs a case-insensitive strstr for ASCII strings */
376 static const gchar *
377 ascii_stristr(const gchar *haystack, const gchar *needle)
378 {
379         int needle_len;
380         int haystack_len;
381         const gchar *pos;
382         const gchar *max_pos;
383
384         if (haystack == NULL || needle == NULL) {
385                 return haystack;  /* as in strstr */
386         }
387
388         needle_len = strlen(needle);
389
390         if (needle_len == 0) {
391                 return haystack;  /* as in strstr */
392         }
393
394         haystack_len = strlen(haystack);
395         max_pos = haystack + haystack_len - needle_len;
396
397         for (pos = haystack; pos <= max_pos; pos++) {
398                 if (g_ascii_strncasecmp (pos, needle, needle_len) == 0) {
399                         return pos;
400                 }
401         }
402
403         return NULL;
404 }
405
406
407 gchar*
408 modest_text_utils_remove_address (const gchar *address_list, const gchar *address)
409 {
410         gchar *dup, *token, *ptr = NULL, *result;
411         GString *filtered_emails;
412         gchar *email_address;
413
414         g_return_val_if_fail (address_list, NULL);
415
416         if (!address)
417                 return g_strdup (address_list);
418
419         email_address = get_email_from_address (address);
420
421         /* search for substring */
422         if (!ascii_stristr ((const char *) address_list, (const char *) email_address)) {
423                 g_free (email_address);
424                 return g_strdup (address_list);
425         }
426
427         dup = g_strdup (address_list);
428         filtered_emails = g_string_new (NULL);
429
430         token = strtok_r (dup, ",", &ptr);
431
432         while (token != NULL) {
433                 /* Add to list if not found */
434                 if (!ascii_stristr ((const char *) token, (const char *) email_address)) {
435                         if (filtered_emails->len == 0)
436                                 g_string_append_printf (filtered_emails, "%s", g_strstrip (token));
437                         else
438                                 g_string_append_printf (filtered_emails, ",%s", g_strstrip (token));
439                 }
440                 token = strtok_r (NULL, ",", &ptr);
441         }
442         result = filtered_emails->str;
443
444         /* Clean */
445         g_free (email_address);
446         g_free (dup);
447         g_string_free (filtered_emails, FALSE);
448
449         return result;
450 }
451
452
453 gchar*
454 modest_text_utils_remove_duplicate_addresses (const gchar *address_list)
455 {
456         GSList *addresses, *cursor;
457         GHashTable *table;
458         gchar *new_list = NULL;
459         
460         g_return_val_if_fail (address_list, NULL);
461
462         table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
463         addresses = modest_text_utils_split_addresses_list (address_list);
464
465         cursor = addresses;
466         while (cursor) {
467                 const gchar* address = (const gchar*)cursor->data;
468
469                 /* We need only the email to just compare it and not
470                    the full address which would make "a <a@a.com>"
471                    different from "a@a.com" */
472                 const gchar *email = get_email_from_address (address);
473
474                 /* ignore the address if already seen */
475                 if (g_hash_table_lookup (table, email) == 0) {
476                         gchar *tmp;
477
478                         /* Include the full address and not only the
479                            email in the returned list */
480                         if (!new_list) {
481                                 tmp = g_strdup (address);
482                         } else {
483                                 tmp = g_strjoin (",", new_list, address, NULL);
484                                 g_free (new_list);
485                         }
486                         new_list = tmp;
487                         
488                         g_hash_table_insert (table, (gchar*)email, GINT_TO_POINTER(1));
489                 }
490                 cursor = g_slist_next (cursor);
491         }
492
493         g_hash_table_unref (table);
494         g_slist_foreach (addresses, (GFunc)g_free, NULL);
495         g_slist_free (addresses);
496
497         if (new_list == NULL)
498                 new_list = g_strdup ("");
499
500         return new_list;
501 }
502
503
504 static void
505 modest_text_utils_convert_buffer_to_html_start (GString *html, const gchar *data, gssize n)
506 {
507         guint           i;
508         gboolean        space_seen = FALSE;
509         guint           break_dist = 0; /* distance since last break point */
510
511         if (n == -1)
512                 n = strlen (data);
513
514         /* replace with special html chars where needed*/
515         for (i = 0; i != n; ++i)  {
516                 guchar kar = data[i];
517                 
518                 if (space_seen && kar != ' ') {
519                         g_string_append (html, "&#32;");
520                         space_seen = FALSE;
521                 }
522                 
523                 /* we artificially insert a breakpoint (newline)
524                  * after 256, to make sure our lines are not so long
525                  * they will DOS the regexping later
526                  * Also, check that kar is ASCII to make sure that we
527                  * don't break a UTF8 char in two
528                  */
529                 if (++break_dist >= 256 && kar < 127) {
530                         g_string_append_c (html, '\n');
531                         break_dist = 0;
532                 }
533                 
534                 switch (kar) {
535                 case 0:
536                 case MARK_AMP:
537                 case MARK_AMP_URI:      
538                         /* this is a temp place holder for '&'; we can only
539                                 * set the real '&' after hyperlink translation, otherwise
540                                 * we might screw that up */
541                         break; /* ignore embedded \0s and MARK_AMP */   
542                 case '<'  : g_string_append (html, MARK_AMP_STR "lt;");   break;
543                 case '>'  : g_string_append (html, MARK_AMP_STR "gt;");   break;
544                 case '&'  : g_string_append (html, MARK_AMP_URI_STR "amp;");  break; /* special case */
545                 case '"'  : g_string_append (html, MARK_AMP_STR "quot;");  break;
546
547                 /* don't convert &apos; --> wpeditor will try to re-convert it... */    
548                 //case '\'' : g_string_append (html, "&apos;"); break;
549                 case '\n' : g_string_append (html, "<br>\n");break_dist= 0; break;
550                 case '\t' : g_string_append (html, MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp; ");
551                         break_dist=0; break; /* note the space at the end*/
552                 case ' ':
553                         break_dist = 0;
554                         if (space_seen) { /* second space in a row */
555                                 g_string_append (html, "&nbsp; ");
556                         } else
557                                 space_seen = TRUE;
558                         break;
559                 default:
560                         g_string_append_c (html, kar);
561                 }
562         }
563 }
564
565
566 static void
567 modest_text_utils_convert_buffer_to_html_finish (GString *html)
568 {
569         int i;
570         /* replace all our MARK_AMPs with real ones */
571         for (i = 0; i != html->len; ++i)
572                 if ((html->str)[i] == MARK_AMP || (html->str)[i] == MARK_AMP_URI)
573                         (html->str)[i] = '&';
574 }
575
576
577 gchar*
578 modest_text_utils_convert_to_html (const gchar *data)
579 {
580         GString         *html;      
581         gsize           len;
582
583         g_return_val_if_fail (data, NULL);
584         
585         if (!data)
586                 return NULL;
587
588         len = strlen (data);
589         html = g_string_sized_new (1.5 * len);  /* just a  guess... */
590
591         g_string_append_printf (html,
592                                 "<html><head>"
593                                 "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">"
594                                 "</head>"
595                                 "<body>");
596
597         modest_text_utils_convert_buffer_to_html_start (html, data, -1);
598         
599         g_string_append (html, "</body></html>");
600
601         if (len <= HYPERLINKIFY_MAX_LENGTH)
602                 hyperlinkify_plain_text (html, 0);
603
604         modest_text_utils_convert_buffer_to_html_finish (html);
605         
606         return g_string_free (html, FALSE);
607 }
608
609 gchar *
610 modest_text_utils_convert_to_html_body (const gchar *data, gssize n, gboolean hyperlinkify)
611 {
612         GString         *html;      
613
614         g_return_val_if_fail (data, NULL);
615
616         if (!data)
617                 return NULL;
618
619         if (n == -1) 
620                 n = strlen (data);
621         html = g_string_sized_new (1.5 * n);    /* just a  guess... */
622
623         modest_text_utils_convert_buffer_to_html_start (html, data, n);
624
625         if (hyperlinkify && (n < HYPERLINKIFY_MAX_LENGTH))
626                 hyperlinkify_plain_text (html, 0);
627
628         modest_text_utils_convert_buffer_to_html_finish (html);
629         
630         return g_string_free (html, FALSE);
631 }
632
633 void
634 modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes)
635 {
636         GString *str;
637         gchar *start, *cur;
638
639         if (!addresses)
640                 return;
641
642         if (strlen (addresses) == 0)
643                 return;
644
645         str = g_string_new ("");
646         start = (gchar*) addresses;
647         cur = (gchar*) addresses;
648
649         for (cur = start; *cur != '\0'; cur = g_utf8_next_char (cur)) {
650                 if (*cur == ',' || *cur == ';') {
651                         gint *start_index, *end_index;
652                         gchar *next_char = g_utf8_next_char (cur);
653
654                         if (!g_utf8_strchr (start, (cur - start + 1), g_utf8_get_char ("@")) &&
655                             next_char && *next_char != '\n')
656                                 continue;
657
658                         start_index = g_new0 (gint, 1);
659                         end_index = g_new0 (gint, 1);
660                         *start_index = g_utf8_pointer_to_offset (addresses, start);
661                         *end_index = g_utf8_pointer_to_offset (addresses, cur);;
662                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
663                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
664                         start = g_utf8_next_char (cur);
665                 }
666         }
667
668         if (start != cur) {
669                 gint *start_index, *end_index;
670                 start_index = g_new0 (gint, 1);
671                 end_index = g_new0 (gint, 1);
672                 *start_index = g_utf8_pointer_to_offset (addresses, start);
673                 *end_index = g_utf8_pointer_to_offset (addresses, cur);;
674                 *start_indexes = g_slist_prepend (*start_indexes, start_index);
675                 *end_indexes = g_slist_prepend (*end_indexes, end_index);
676         }
677
678         if (*start_indexes)
679                 *start_indexes = g_slist_reverse (*start_indexes);
680         if (*end_indexes)
681                 *end_indexes = g_slist_reverse (*end_indexes);
682 }
683
684
685 GSList *
686 modest_text_utils_split_addresses_list (const gchar *addresses)
687 {
688         GSList *head;
689         const gchar *my_addrs = addresses;
690         const gchar *end;
691         gchar *addr;
692         gboolean after_at = FALSE;
693
694         g_return_val_if_fail (addresses, NULL);
695
696         /* skip any space, ',', ';' '\n' at the start */
697         while (my_addrs && (my_addrs[0] == ' ' || my_addrs[0] == ',' ||
698                             my_addrs[0] == ';' || my_addrs[0] == '\n'))
699                ++my_addrs;
700
701         /* are we at the end of addresses list? */
702         if (!my_addrs[0])
703                 return NULL;
704
705         /* nope, we are at the start of some address
706          * now, let's find the end of the address */
707         end = my_addrs + 1;
708         while (end[0] && end[0] != ';' && !(after_at && end[0] == ',')) {
709                 if (end[0] == '\"') {
710                         while (end[0] && end[0] != '\"')
711                                 ++end;
712                 }
713                 if (end[0] == '@') {
714                         after_at = TRUE;
715                 }
716                 if ((end[0] && end[0] == '>')&&(end[1] && end[1] == ',')) {
717                         ++end;
718                         break;
719                 }
720                 ++end;
721         }
722
723         /* we got the address; copy it and remove trailing whitespace */
724         addr = g_strndup (my_addrs, end - my_addrs);
725         g_strchomp (addr);
726
727         remove_extra_spaces (addr);
728
729         head = g_slist_append (NULL, addr);
730         head->next = modest_text_utils_split_addresses_list (end); /* recurse */
731
732         return head;
733 }
734
735 gchar *
736 modest_text_utils_join_addresses (const gchar *from,
737                                   const gchar *to,
738                                   const gchar *cc,
739                                   const gchar *bcc)
740 {
741         GString *buffer;
742         gboolean add_separator = FALSE;
743
744         buffer = g_string_new ("");
745
746         if (from && strlen (from)) {
747                 buffer = g_string_append (buffer, from);
748                 add_separator = TRUE;
749         }
750         if (to && strlen (to)) {
751                 if (add_separator)
752                         buffer = g_string_append (buffer, "; ");
753                 else
754                         add_separator = TRUE;
755
756                 buffer = g_string_append (buffer, to);
757         }
758         if (cc && strlen (cc)) {
759                 if (add_separator)
760                         buffer = g_string_append (buffer, "; ");
761                 else
762                         add_separator = TRUE;
763
764                 buffer = g_string_append (buffer, cc);
765         }
766         if (bcc && strlen (bcc)) {
767                 if (add_separator)
768                         buffer = g_string_append (buffer, "; ");
769                 else
770                         add_separator = TRUE;
771
772                 buffer = g_string_append (buffer, bcc);
773         }
774
775         return g_string_free (buffer, FALSE);
776 }
777
778 void
779 modest_text_utils_address_range_at_position (const gchar *recipients_list,
780                                              guint position,
781                                              guint *start,
782                                              guint *end)
783 {
784         gchar *current = NULL;
785         gint range_start = 0;
786         gint range_end = 0;
787         gint index;
788         gboolean is_quoted = FALSE;
789
790         g_return_if_fail (recipients_list);
791         g_return_if_fail (position < g_utf8_strlen(recipients_list, -1));
792                 
793         index = 0;
794         for (current = (gchar *) recipients_list; *current != '\0';
795              current = g_utf8_find_next_char (current, NULL)) {
796                 gunichar c = g_utf8_get_char (current);
797
798                 if ((c == ',') && (!is_quoted)) {
799                         if (index < position) {
800                                 range_start = index + 1;
801                         } else {
802                                 break;
803                         }
804                 } else if (c == '\"') {
805                         is_quoted = !is_quoted;
806                 } else if ((c == ' ') &&(range_start == index)) {
807                         range_start ++;
808                 }
809                 index ++;
810                 range_end = index;
811         }
812
813         if (start)
814                 *start = range_start;
815         if (end)
816                 *end = range_end;
817 }
818
819 gchar *
820 modest_text_utils_address_with_standard_length (const gchar *recipients_list)
821 {
822         gchar ** splitted;
823         gchar ** current;
824         GString *buffer = g_string_new ("");
825
826         splitted = g_strsplit (recipients_list, "\n", 0);
827         current = splitted;
828         while (*current) {
829                 gchar *line;
830                 if (current != splitted)
831                         buffer = g_string_append_c (buffer, '\n');
832                 line = g_strndup (*splitted, 1000);
833                 buffer = g_string_append (buffer, line);
834                 g_free (line);
835                 current++;
836         }
837
838         g_strfreev (splitted);
839
840         return g_string_free (buffer, FALSE);
841 }
842
843
844 /* ******************************************************************* */
845 /* ************************* UTILIY FUNCTIONS ************************ */
846 /* ******************************************************************* */
847
848 static GString *
849 get_next_line (const gchar * b, const gsize blen, const gchar * iter)
850 {
851         GString *gs;
852         const gchar *i0;
853         
854         if (iter > b + blen)
855                 return g_string_new("");
856         
857         i0 = iter;
858         while (iter[0]) {
859                 if (iter[0] == '\n')
860                         break;
861                 iter++;
862         }
863         gs = g_string_new_len (i0, iter - i0);
864         return gs;
865 }
866 static int
867 get_indent_level (const char *l)
868 {
869         int indent = 0;
870
871         while (l[0]) {
872                 if (l[0] == '>') {
873                         indent++;
874                         if (l[1] == ' ') {
875                                 l++;
876                         }
877                 } else {
878                         break;
879                 }
880                 l++;
881
882         }
883
884         /*      if we hit the signature marker "-- ", we return -(indent + 1). This
885          *      stops reformatting.
886          */
887         if (strcmp (l, MODEST_TEXT_UTILS_SIGNATURE_MARKER) == 0) {
888                 return -1 - indent;
889         } else {
890                 return indent;
891         }
892 }
893
894 static void
895 unquote_line (GString * l, const gchar *quote_symbol)
896 {
897         gchar *p;
898         gint quote_len;
899
900         p = l->str;
901         quote_len = strlen (quote_symbol);
902         while (p[0]) {
903                 if (g_str_has_prefix (p, quote_symbol)) {
904                         if (p[quote_len] == ' ') {
905                                 p += quote_len;
906                         }
907                 } else {
908                         break;
909                 }
910                 p++;
911         }
912         g_string_erase (l, 0, p - l->str);
913 }
914
915 static void
916 append_quoted (GString * buf, const gchar *quote_symbol,
917                int indent, const GString * str,
918                const int cutpoint)
919 {
920         int i;
921         gchar *quote_concat;
922
923         indent = indent < 0 ? abs (indent) - 1 : indent;
924         quote_concat = g_strconcat (quote_symbol, " ", NULL);
925         for (i = 0; i <= indent; i++) {
926                 g_string_append (buf, quote_concat);
927         }
928         g_free (quote_concat);
929         if (cutpoint > 0) {
930                 g_string_append_len (buf, str->str, cutpoint);
931         } else {
932                 g_string_append (buf, str->str);
933         }
934         g_string_append (buf, "\n");
935 }
936
937 static int
938 get_breakpoint_utf8 (const gchar * s, gint indent, const gint limit)
939 {
940         gint index = 0;
941         const gchar *pos, *last;
942         gunichar *uni;
943
944         indent = indent < 0 ? abs (indent) - 1 : indent;
945
946         last = NULL;
947         pos = s;
948         uni = g_utf8_to_ucs4_fast (s, -1, NULL);
949         while (pos[0]) {
950                 if ((index + 2 * indent > limit) && last) {
951                         g_free (uni);
952                         return last - s;
953                 }
954                 if (g_unichar_isspace (uni[index])) {
955                         last = pos;
956                 }
957                 pos = g_utf8_next_char (pos);
958                 index++;
959         }
960         g_free (uni);
961         return strlen (s);
962 }
963
964 static int
965 get_breakpoint_ascii (const gchar * s, const gint indent, const gint limit)
966 {
967         gint i, last;
968
969         last = strlen (s);
970         if (last + 2 * indent < limit)
971                 return last;
972
973         for (i = strlen (s); i > 0; i--) {
974                 if (s[i] == ' ') {
975                         if (i + 2 * indent <= limit) {
976                                 return i;
977                         } else {
978                                 last = i;
979                         }
980                 }
981         }
982         return last;
983 }
984
985 static int
986 get_breakpoint (const gchar * s, const gint indent, const gint limit)
987 {
988
989         if (g_utf8_validate (s, -1, NULL)) {
990                 return get_breakpoint_utf8 (s, indent, limit);
991         } else {                /* assume ASCII */
992                 //g_warning("invalid UTF-8 in msg");
993                 return get_breakpoint_ascii (s, indent, limit);
994         }
995 }
996
997 static gchar *
998 cite (const time_t sent_date, const gchar *from)
999 {
1000         return g_strdup (_("mcen_ia_editor_original_message"));
1001 }
1002
1003 static gchar *
1004 quoted_attachments (GList *attachments)
1005 {
1006         GList *node = NULL;
1007         GString *result = g_string_new ("");
1008         for (node = attachments; node != NULL; node = g_list_next (node)) {
1009                 gchar *filename = (gchar *) node->data;
1010                 g_string_append_printf ( result, "%s %s\n", _("mcen_ia_editor_attach_filename"), filename);
1011         }
1012
1013         return g_string_free (result, FALSE);
1014
1015 }
1016
1017 static GString *
1018 modest_text_utils_quote_body (GString *output, const gchar *text,
1019                               const gchar *quote_symbol,
1020                               int limit)
1021 {
1022
1023         const gchar *iter;
1024         gsize len;
1025         gint indent, breakpoint, rem_indent = 0;
1026         GString *l, *remaining;
1027
1028         iter = text;
1029         len = strlen(text);
1030         remaining = g_string_new ("");
1031         do {
1032                 l = get_next_line (text, len, iter);
1033                 iter = iter + l->len + 1;
1034                 indent = get_indent_level (l->str);
1035                 unquote_line (l, quote_symbol);
1036
1037                 if (remaining->len) {
1038                         if (l->len && indent == rem_indent) {
1039                                 g_string_prepend (l, " ");
1040                                 g_string_prepend (l, remaining->str);
1041                         } else {
1042                                 do {
1043                                         gunichar remaining_first;
1044                                         breakpoint =
1045                                                 get_breakpoint (remaining->str,
1046                                                                 rem_indent,
1047                                                                 limit);
1048                                         append_quoted (output, quote_symbol, rem_indent,
1049                                                        remaining, breakpoint);
1050                                         g_string_erase (remaining, 0,
1051                                                         breakpoint);
1052                                         remaining_first = g_utf8_get_char_validated (remaining->str, remaining->len);
1053                                         if (remaining_first != ((gunichar) -1)) {
1054                                                 if (g_unichar_isspace (remaining_first)) {
1055                                                         g_string_erase (remaining, 0, g_utf8_next_char (remaining->str) - remaining->str);
1056                                                 }
1057                                         }
1058                                 } while (remaining->len);
1059                         }
1060                 }
1061                 g_string_free (remaining, TRUE);
1062                 breakpoint = get_breakpoint (l->str, indent, limit);
1063                 remaining = g_string_new (l->str + breakpoint);
1064                 if (remaining->str[0] == ' ') {
1065                         g_string_erase (remaining, 0, 1);
1066                 }
1067                 rem_indent = indent;
1068                 append_quoted (output, quote_symbol, indent, l, breakpoint);
1069                 g_string_free (l, TRUE);
1070         } while ((iter < text + len) || (remaining->str[0]));
1071
1072         return output;
1073 }
1074
1075 static gchar *
1076 modest_text_utils_quote_plain_text (const gchar *text, 
1077                                     const gchar *cite, 
1078                                     const gchar *signature,
1079                                     GList *attachments,
1080                                     int limit)
1081 {
1082         GString *q;
1083         gchar *attachments_string = NULL;
1084
1085         q = g_string_new ("");
1086
1087         if (signature != NULL) {
1088                 g_string_append_printf (q, "\n%s\n", MODEST_TEXT_UTILS_SIGNATURE_MARKER);
1089                 q = g_string_append (q, signature);
1090         }
1091
1092         q = g_string_append (q, "\n");
1093         q = g_string_append (q, cite);
1094         q = g_string_append_c (q, '\n');
1095
1096         q = modest_text_utils_quote_body (q, text, ">", limit);
1097
1098         attachments_string = quoted_attachments (attachments);
1099         q = g_string_append (q, attachments_string);
1100         g_free (attachments_string);
1101
1102         return g_string_free (q, FALSE);
1103 }
1104
1105 static void
1106 quote_html_add_to_gstring (GString *string,
1107                            const gchar *text)
1108 {
1109         if (text && strcmp (text, "")) {
1110                 gchar *html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
1111                 g_string_append_printf (string, "%s<br/>", html_text);
1112                 g_free (html_text);
1113         }
1114 }
1115
1116 static gchar*
1117 modest_text_utils_quote_html (const gchar *text, 
1118                               const gchar *cite, 
1119                               const gchar *signature,
1120                               GList *attachments,
1121                               int limit)
1122 {
1123         GString *result_string;
1124
1125         result_string = 
1126                 g_string_new ( \
1127                               "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
1128                               "<html>\n"                                \
1129                               "<body>\n<br/>\n");
1130
1131         if (text || cite || signature) {
1132                 GString *quoted_text;
1133                 g_string_append (result_string, "<pre>\n");
1134                 if (signature) {
1135                         quote_html_add_to_gstring (result_string, MODEST_TEXT_UTILS_SIGNATURE_MARKER);
1136                         quote_html_add_to_gstring (result_string, signature);
1137                 }
1138                 quote_html_add_to_gstring (result_string, cite);
1139                 quoted_text = g_string_new ("");
1140                 quoted_text = modest_text_utils_quote_body (quoted_text, (text) ? text : "", ">", limit);
1141                 quote_html_add_to_gstring (result_string, quoted_text->str);
1142                 g_string_free (quoted_text, TRUE);
1143                 if (attachments) {
1144                         gchar *attachments_string = quoted_attachments (attachments);
1145                         quote_html_add_to_gstring (result_string, attachments_string);
1146                         g_free (attachments_string);
1147                 }
1148                 g_string_append (result_string, "</pre>");
1149         }
1150         g_string_append (result_string, "</body>");
1151         g_string_append (result_string, "</html>");
1152
1153         return g_string_free (result_string, FALSE);
1154 }
1155
1156 static gint 
1157 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
1158 {
1159         return match2->offset - match1->offset;
1160 }
1161
1162 static gint url_matches_block = 0;
1163 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
1164 static GMutex *url_patterns_mutex = NULL;
1165
1166
1167 static gboolean
1168 compile_patterns ()
1169 {
1170         guint i;
1171         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1172         for (i = 0; i != pattern_num; ++i) {
1173                 patterns[i].preg = g_slice_new0 (regex_t);
1174                 
1175                 /* this should not happen */
1176                 if (regcomp (patterns[i].preg, patterns[i].regex,
1177                              REG_ICASE|REG_EXTENDED|REG_NEWLINE) != 0) {
1178                         g_warning ("%s: error in regexp:\n%s\n", __FUNCTION__, patterns[i].regex);
1179                         return FALSE;
1180                 }
1181         }
1182         return TRUE;
1183 }
1184
1185 static void 
1186 free_patterns ()
1187 {
1188         guint i;
1189         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1190         for (i = 0; i != pattern_num; ++i) {
1191                 regfree (patterns[i].preg);
1192                 g_slice_free  (regex_t, patterns[i].preg);
1193         } /* don't free patterns itself -- it's static */
1194 }
1195
1196 void
1197 modest_text_utils_hyperlinkify_begin (void)
1198 {
1199
1200         if (url_patterns_mutex == NULL) {
1201                 url_patterns_mutex = g_mutex_new ();
1202         }
1203         g_mutex_lock (url_patterns_mutex);
1204         if (url_matches_block == 0)
1205                 compile_patterns ();
1206         url_matches_block ++;
1207         g_mutex_unlock (url_patterns_mutex);
1208 }
1209
1210 void
1211 modest_text_utils_hyperlinkify_end (void)
1212 {
1213         g_mutex_lock (url_patterns_mutex);
1214         url_matches_block--;
1215         if (url_matches_block <= 0)
1216                 free_patterns ();
1217         g_mutex_unlock (url_patterns_mutex);
1218 }
1219
1220
1221 static GSList*
1222 get_url_matches (GString *txt, gint offset)
1223 {
1224         regmatch_t rm;
1225         guint rv, i, tmp_offset = 0;
1226         GSList *match_list = NULL;
1227
1228         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1229
1230         /* initalize the regexps */
1231         modest_text_utils_hyperlinkify_begin ();
1232
1233         /* find all the matches */
1234         for (i = 0; i != pattern_num; ++i) {
1235                 tmp_offset     = offset;        
1236                 while (1) {
1237                         url_match_t *match;
1238                         gboolean is_submatch;
1239                         GSList *cursor;
1240                         
1241                         if ((rv = regexec (patterns[i].preg, txt->str + tmp_offset, 1, &rm, 0)) != 0) {
1242                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
1243                                 break; /* try next regexp */ 
1244                         }
1245                         if (rm.rm_so == -1)
1246                                 break;
1247                         
1248                         is_submatch = FALSE;
1249                         /* check  old matches to see if this has already been matched */
1250                         cursor = match_list;
1251                         while (cursor && !is_submatch) {
1252                                 const url_match_t *old_match =
1253                                         (const url_match_t *) cursor->data;
1254                                 guint new_offset = tmp_offset + rm.rm_so;
1255                                 is_submatch = (new_offset >  old_match->offset &&
1256                                                new_offset <  old_match->offset + old_match->len);
1257                                 cursor = g_slist_next (cursor);
1258                         }
1259
1260                         if (!is_submatch) {
1261                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
1262                                 match = g_slice_new (url_match_t);
1263                                 match->offset = tmp_offset + rm.rm_so;
1264                                 match->len    = rm.rm_eo - rm.rm_so;
1265                                 match->prefix = patterns[i].prefix;
1266                                 match_list = g_slist_prepend (match_list, match);
1267                         }               
1268                         tmp_offset += rm.rm_eo;
1269                 }
1270         }
1271
1272         modest_text_utils_hyperlinkify_end ();
1273         
1274         /* now sort the list, so the matches are in reverse order of occurence.
1275          * that way, we can do the replacements starting from the end, so we don't need
1276          * to recalculate the offsets
1277          */
1278         match_list = g_slist_sort (match_list,
1279                                    (GCompareFunc)cmp_offsets_reverse); 
1280         return match_list;      
1281 }
1282
1283
1284
1285 /* replace all occurences of needle in haystack with repl*/
1286 static gchar*
1287 replace_string (const gchar *haystack, const gchar *needle, gchar repl)
1288 {
1289         gchar *str, *cursor;
1290
1291         if (!haystack || !needle || strlen(needle) == 0)
1292                 return haystack ? g_strdup(haystack) : NULL;
1293         
1294         str = g_strdup (haystack);
1295
1296         for (cursor = str; cursor && *cursor; ++cursor) {
1297                 if (g_str_has_prefix (cursor, needle)) {
1298                         cursor[0] = repl;
1299                         memmove (cursor + 1,
1300                                  cursor + strlen (needle),
1301                                  strlen (cursor + strlen (needle)) + 1);
1302                 }
1303         }
1304         
1305         return str;
1306 }
1307
1308 static void
1309 hyperlinkify_plain_text (GString *txt, gint offset)
1310 {
1311         GSList *cursor;
1312         GSList *match_list = get_url_matches (txt, offset);
1313
1314         /* we will work backwards, so the offsets stay valid */
1315         for (cursor = match_list; cursor; cursor = cursor->next) {
1316
1317                 url_match_t *match = (url_match_t*) cursor->data;
1318                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
1319                 gchar *repl = NULL; /* replacement  */
1320
1321                 /* the string still contains $(MARK_AMP_URI_STR)"amp;" for each
1322                  * '&' in the original, because of the text->html conversion.
1323                  * in the href-URL (and only there), we must convert that back to
1324                  * '&'
1325                  */
1326                 gchar *href_url = replace_string (url, MARK_AMP_URI_STR "amp;", '&');
1327                 
1328                 /* the prefix is NULL: use the one that is already there */
1329                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
1330                                         match->prefix ? match->prefix : EMPTY_STRING, 
1331                                         href_url, url);
1332
1333                 /* replace the old thing with our hyperlink
1334                  * replacement thing */
1335                 g_string_erase  (txt, match->offset, match->len);
1336                 g_string_insert (txt, match->offset, repl);
1337                 
1338                 g_free (url);
1339                 g_free (repl);
1340                 g_free (href_url);
1341
1342                 g_slice_free (url_match_t, match);      
1343         }
1344         
1345         g_slist_free (match_list);
1346 }
1347
1348 void
1349 modest_text_utils_hyperlinkify (GString *string_buffer)
1350 {
1351         gchar *after_body;
1352         gint offset = 0;
1353
1354         after_body = strstr (string_buffer->str, "<body>");
1355         if (after_body != NULL)
1356                 offset = after_body - string_buffer->str;
1357         hyperlinkify_plain_text (string_buffer, offset);
1358 }
1359
1360
1361 /* for optimization reasons, we change the string in-place */
1362 void
1363 modest_text_utils_get_display_address (gchar *address)
1364 {
1365         int i;
1366
1367         g_return_if_fail (address);
1368         
1369         if (!address)
1370                 return;
1371         
1372         /* should not be needed, and otherwise, we probably won't screw up the address
1373          * more than it already is :) 
1374          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1375          * */
1376         
1377         /* remove leading whitespace */
1378         if (address[0] == ' ')
1379                 g_strchug (address);
1380                 
1381         for (i = 0; address[i]; ++i) {
1382                 if (address[i] == '<') {
1383                         if (G_UNLIKELY(i == 0)) {
1384                                 break; /* there's nothing else, leave it */
1385                         }else {
1386                                 address[i] = '\0'; /* terminate the string here */
1387                                 break;
1388                         }
1389                 }
1390         }
1391
1392         g_strchomp (address);
1393 }
1394
1395
1396 gchar *
1397 modest_text_utils_get_display_addresses (const gchar *recipients)
1398 {
1399         gchar *addresses;
1400         GSList *recipient_list;
1401
1402         addresses = NULL;
1403         recipient_list = modest_text_utils_split_addresses_list (recipients);
1404         if (recipient_list) {
1405                 GString *add_string = g_string_sized_new (strlen (recipients));
1406                 GSList *iter = recipient_list;
1407                 gboolean first = TRUE;
1408
1409                 while (iter) {
1410                         /* Strings are changed in place */
1411                         modest_text_utils_get_display_address ((gchar *) iter->data);
1412                         if (G_UNLIKELY (first)) {
1413                                 g_string_append_printf (add_string, "%s", (gchar *) iter->data);
1414                                 first = FALSE;
1415                         } else {
1416                                 g_string_append_printf (add_string, ", %s", (gchar *) iter->data);
1417                         }
1418                         iter = g_slist_next (iter);
1419                 }
1420                 g_slist_foreach (recipient_list, (GFunc) g_free, NULL);
1421                 g_slist_free (recipient_list);
1422                 addresses = g_string_free (add_string, FALSE);
1423         }
1424
1425         return addresses;
1426 }
1427
1428
1429 gchar *
1430 modest_text_utils_get_email_address (const gchar *full_address)
1431 {
1432         const gchar *left, *right;
1433
1434         g_return_val_if_fail (full_address, NULL);
1435         
1436         if (!full_address)
1437                 return NULL;
1438         
1439         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1440         
1441         left = g_strrstr_len (full_address, strlen(full_address), "<");
1442         if (left == NULL)
1443                 return g_strdup (full_address);
1444
1445         right = g_strstr_len (left, strlen(left), ">");
1446         if (right == NULL)
1447                 return g_strdup (full_address);
1448
1449         return g_strndup (left + 1, right - left - 1);
1450 }
1451
1452 gint 
1453 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1454 {
1455         gint prefix_len = 0;    
1456
1457         g_return_val_if_fail (sub, 0);
1458
1459         if (!sub)
1460                 return 0;
1461         
1462         /* optimization: "Re", "RE", "re","Fwd", "FWD", "fwd","FW","Fw", "fw" */
1463         if (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')
1464                 return 0;
1465         else if (sub[0] && sub[1] != 'e' && sub[1] != 'E' && sub[1] != 'w' && sub[1] != 'W')
1466                 return 0;
1467
1468         prefix_len = 2;
1469         if (sub[2] == 'd')
1470                 ++prefix_len;
1471
1472         /* skip over a [...] block */
1473         if (sub[prefix_len] == '[') {
1474                 int c = prefix_len + 1;
1475                 while (sub[c] && sub[c] != ']')
1476                         ++c;
1477                 if (!sub[c])
1478                         return 0; /* no end to the ']' found */
1479                 else
1480                         prefix_len = c + 1;
1481         }
1482
1483         /* did we find the ':' ? */
1484         if (sub[prefix_len] == ':') {
1485                 ++prefix_len;
1486                 if (sub[prefix_len] == ' ')
1487                         ++prefix_len;
1488                 prefix_len += modest_text_utils_get_subject_prefix_len (sub + prefix_len);
1489 /*              g_warning ("['%s','%s']", sub, (char*) sub + prefix_len); */
1490                 return prefix_len;
1491         } else
1492                 return 0;
1493 }
1494
1495
1496 gint
1497 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1498 {
1499
1500 /* work even when s1 and/or s2 == NULL */
1501         if (G_UNLIKELY(s1 == s2))
1502                 return 0;
1503         if (G_UNLIKELY(!s1))
1504                 return -1;
1505         if (G_UNLIKELY(!s2))
1506                 return 1;
1507         
1508         /* if it's not case sensitive */
1509         if (!insensitive) {
1510
1511                 /* optimization: shortcut if first char is ascii */ 
1512                 if (((s1[0] & 0x80)== 0) && ((s2[0] & 0x80) == 0) &&
1513                     (s1[0] != s2[0])) 
1514                         return s1[0] - s2[0];
1515                 
1516                 return g_utf8_collate (s1, s2);
1517
1518         } else {
1519                 gint result;
1520                 gchar *n1, *n2;
1521
1522                 /* optimization: shortcut if first char is ascii */ 
1523                 if (((s1[0] & 0x80) == 0) && ((s2[0] & 0x80) == 0) &&
1524                     (tolower(s1[0]) != tolower (s2[0]))) 
1525                         return tolower(s1[0]) - tolower(s2[0]);
1526                 
1527                 n1 = g_utf8_strdown (s1, -1);
1528                 n2 = g_utf8_strdown (s2, -1);
1529                 
1530                 result = g_utf8_collate (n1, n2);
1531                 
1532                 g_free (n1);
1533                 g_free (n2);
1534         
1535                 return result;
1536         }
1537 }
1538
1539
1540 const gchar*
1541 modest_text_utils_get_display_date (time_t date)
1542 {
1543 #define DATE_BUF_SIZE 64 
1544         static gchar date_buf[DATE_BUF_SIZE];
1545         
1546         /* calculate the # of days since epoch for 
1547          * for today and for the date provided 
1548          * based on idea from pvanhoof */
1549         int day      = time(NULL) / (24 * 60 * 60);
1550         int date_day = date       / (24 * 60 * 60);
1551
1552         /* if it's today, show the time, if it's not today, show the date instead */
1553
1554         /* TODO: take into account the system config for 24/12h */
1555 #ifdef MODEST_TOOLKIT_HILDON2
1556         if (day == date_day) /* is the date today? */
1557                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, _HL("wdgt_va_24h_time"), date);
1558         else 
1559                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, _HL("wdgt_va_date"), date); 
1560 #else
1561         if (day == date_day) /* is the date today? */
1562                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1563         else 
1564                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1565 #endif
1566
1567         return date_buf; /* this is a static buffer, don't free! */
1568 }
1569
1570
1571
1572 gboolean
1573 modest_text_utils_validate_folder_name (const gchar *folder_name)
1574 {
1575         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1576          * with some extras */
1577         
1578         guint len;
1579         gint i;
1580         const gchar **cursor = NULL;
1581         const gchar *forbidden_names[] = { /* windows does not like these */
1582                 "CON", "PRN", "AUX", "NUL", ".", "..", "cur", "tmp", "new", 
1583                 NULL /* cur, tmp, new are reserved for Maildir */
1584         };
1585         
1586         /* cannot be NULL */
1587         if (!folder_name) 
1588                 return FALSE;
1589
1590         /* cannot be empty */
1591         len = strlen(folder_name);
1592         if (len == 0)
1593                 return FALSE;
1594         
1595         /* cannot start with a dot, vfat does not seem to like that */
1596         if (folder_name[0] == '.')
1597                 return FALSE;
1598
1599         /* cannot start or end with a space */
1600         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1601                 return FALSE; 
1602
1603         /* cannot contain a forbidden char */   
1604         for (i = 0; i < len; i++)
1605                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1606                         return FALSE;
1607
1608         /* Cannot contain Windows port numbers. I'd like to use GRegex
1609            but it's still not available in Maemo. sergio */
1610         if (!g_ascii_strncasecmp (folder_name, "LPT", 3) ||
1611             !g_ascii_strncasecmp (folder_name, "COM", 3)) {
1612                 glong val;
1613                 gchar *endptr;
1614
1615                 /* We skip the first 3 characters for the
1616                    comparison */
1617                 val = strtol(folder_name+3, &endptr, 10);
1618
1619                 /* If the conversion to long succeeded then the string
1620                    is not valid for us */
1621                 if (*endptr == '\0')
1622                         return FALSE;
1623                 else
1624                         return TRUE;
1625         }
1626         
1627         /* cannot contain a forbidden word */
1628         if (len <= 4) {
1629                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1630                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1631                                 return FALSE;
1632                 }
1633         }
1634
1635         return TRUE; /* it's valid! */
1636 }
1637
1638
1639
1640 gboolean
1641 modest_text_utils_validate_domain_name (const gchar *domain)
1642 {
1643         gboolean valid = FALSE;
1644         regex_t rx;
1645         const gchar* domain_regex = "^([a-z0-9-]*[a-z0-9]\\.)+[a-z0-9-]*[a-z0-9]$";
1646
1647         g_return_val_if_fail (domain, FALSE);
1648         
1649         if (!domain)
1650                 return FALSE;
1651         
1652         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1653                 
1654         /* domain name: all alphanum or '-' or '.',
1655          * but beginning/ending in alphanum */  
1656         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1657                 g_warning ("BUG: error in regexp");
1658                 return FALSE;
1659         }
1660         
1661         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1662         regfree (&rx);
1663                 
1664         return valid;
1665 }
1666
1667
1668
1669 gboolean
1670 modest_text_utils_validate_email_address (const gchar *email_address,
1671                                           const gchar **invalid_char_position)
1672 {
1673         int count = 0;
1674         const gchar *c = NULL, *domain = NULL;
1675         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1676         
1677         if (invalid_char_position)
1678                 *invalid_char_position = NULL;
1679         
1680         g_return_val_if_fail (email_address, FALSE);
1681         
1682         /* check that the email adress contains exactly one @ */
1683         if (!strstr(email_address, "@") || 
1684                         (strstr(email_address, "@") != g_strrstr(email_address, "@"))) 
1685                 return FALSE;
1686         
1687         /* first we validate the name portion (name@domain) */
1688         for (c = email_address;  *c;  c++) {
1689                 if (*c == '\"' && 
1690                     (c == email_address || 
1691                      *(c - 1) == '.' || 
1692                      *(c - 1) == '\"')) {
1693                         while (*++c) {
1694                                 if (*c == '\"') 
1695                                         break;
1696                                 if (*c == '\\' && (*++c == ' ')) 
1697                                         continue;
1698                                 if (*c <= ' ' || *c >= 127) 
1699                                         return FALSE;
1700                         }
1701                         if (!*c++) 
1702                                 return FALSE;
1703                         if (*c == '@') 
1704                                 break;
1705                         if (*c != '.') 
1706                                 return FALSE;
1707                         continue;
1708                 }
1709                 if (*c == '@') 
1710                         break;
1711                 if (*c <= ' ' || *c >= 127) 
1712                         return FALSE;
1713                 if (strchr(rfc822_specials, *c)) {
1714                         if (invalid_char_position)
1715                                 *invalid_char_position = c;
1716                         return FALSE;
1717                 }
1718         }
1719         if (c == email_address || *(c - 1) == '.') 
1720                 return FALSE;
1721
1722         /* next we validate the domain portion (name@domain) */
1723         if (!*(domain = ++c)) 
1724                 return FALSE;
1725         do {
1726                 if (*c == '.') {
1727                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1728                                 return FALSE;
1729                         count++;
1730                 }
1731                 if (*c <= ' ' || *c >= 127) 
1732                         return FALSE;
1733                 if (strchr(rfc822_specials, *c)) {
1734                         if (invalid_char_position)
1735                                 *invalid_char_position = c;
1736                         return FALSE;
1737                 }
1738         } while (*++c);
1739
1740         return (count >= 1) ? TRUE : FALSE;
1741 }
1742
1743 gboolean 
1744 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1745 {
1746         gchar *stripped, *current;
1747         gchar *right_part;
1748         gboolean has_error = FALSE;
1749
1750         if (invalid_char_position)
1751                 *invalid_char_position = NULL;
1752         
1753         g_return_val_if_fail (recipient, FALSE);
1754         
1755         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1756                 return TRUE;
1757
1758         stripped = g_strdup (recipient);
1759         stripped = g_strstrip (stripped);
1760         current = stripped;
1761
1762         if (*current == '\0') {
1763                 g_free (stripped);
1764                 return FALSE;
1765         }
1766
1767         /* quoted string */
1768         if (*current == '\"') {
1769                 gchar *last_quote = NULL;
1770                 current = g_utf8_next_char (current);
1771                 has_error = TRUE;
1772                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1773                         if (*current == '\\') {
1774                                 /* TODO: This causes a warning, which breaks the build, 
1775                                  * because a gchar cannot be < 0.
1776                                  * murrayc. 
1777                                 if (current[1] <0) {
1778                                         has_error = TRUE;
1779                                         break;
1780                                 }
1781                                 */
1782                         } else if (*current == '\"') {
1783                                 has_error = FALSE;
1784                                 current = g_utf8_next_char (current);
1785                                 last_quote = current;
1786                         }
1787                 }
1788                 if (last_quote)
1789                         current = g_utf8_next_char (last_quote);
1790         } else {
1791                 has_error = TRUE;
1792                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1793                         if (*current == '<') {
1794                                 has_error = FALSE;
1795                                 break;
1796                         }
1797                 }
1798         }
1799                 
1800         if (has_error) {
1801                 g_free (stripped);
1802                 return FALSE;
1803         }
1804
1805         right_part = g_strdup (current);
1806         g_free (stripped);
1807         right_part = g_strstrip (right_part);
1808
1809         if (g_str_has_suffix (right_part, ",") || g_str_has_suffix (right_part, ";"))
1810                right_part [(strlen (right_part) - 1)] = '\0';
1811
1812         if (g_str_has_prefix (right_part, "<") &&
1813             g_str_has_suffix (right_part, ">")) {
1814                 gchar *address;
1815                 gboolean valid;
1816
1817                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1818                 g_free (right_part);
1819                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1820                 g_free (address);
1821                 return valid;
1822         } else {
1823                 g_free (right_part);
1824                 return FALSE;
1825         }
1826 }
1827
1828
1829 gchar *
1830 modest_text_utils_get_display_size (guint64 size)
1831 {
1832         const guint KB=1024;
1833         const guint MB=1024 * KB;
1834         const guint GB=1024 * MB;
1835
1836         if (size == 0)
1837                 return g_strdup_printf (_FM("sfil_li_size_kb"), (int) 0);
1838         if (0 <= size && size < KB)
1839                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), (int) 1);
1840         else if (KB <= size && size < 100 * KB)
1841                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), (int) size / KB);
1842         else if (100*KB <= size && size < MB)
1843                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (int) size / KB);
1844         else if (MB <= size && size < 10*MB)
1845                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1846         else if (10*MB <= size && size < GB)
1847                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), (float) size / MB);
1848         else
1849                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB);
1850 }
1851
1852 static gchar *
1853 get_email_from_address (const gchar * address)
1854 {
1855         gchar *left_limit, *right_limit;
1856
1857         left_limit = strstr (address, "<");
1858         right_limit = g_strrstr (address, ">");
1859
1860         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1861                 return g_strdup (address);
1862         else
1863                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1864 }
1865
1866 gchar *
1867 modest_text_utils_get_color_string (GdkColor *color)
1868 {
1869         g_return_val_if_fail (color, NULL);
1870
1871         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1872                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1873                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1874                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1875                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1876                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1877                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1878 }
1879
1880 gchar *
1881 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1882 {
1883         GtkTextIter start, end;
1884         gchar *slice, *current;
1885         GString *result = g_string_new ("");
1886
1887         g_return_val_if_fail (buffer && GTK_IS_TEXT_BUFFER (buffer), NULL);
1888         
1889         gtk_text_buffer_get_start_iter (buffer, &start);
1890         gtk_text_buffer_get_end_iter (buffer, &end);
1891
1892         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1893         current = slice;
1894
1895         while (current && current != '\0') {
1896                 if (g_utf8_get_char (current) == 0xFFFC) {
1897                         result = g_string_append_c (result, ' ');
1898                         current = g_utf8_next_char (current);
1899                 } else {
1900                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1901                         if (next == NULL) {
1902                                 result = g_string_append (result, current);
1903                         } else {
1904                                 result = g_string_append_len (result, current, next - current);
1905                         }
1906                         current = next;
1907                 }
1908         }
1909         g_free (slice);
1910
1911         return g_string_free (result, FALSE);
1912         
1913 }
1914
1915 gboolean
1916 modest_text_utils_is_forbidden_char (const gchar character,
1917                                      ModestTextUtilsForbiddenCharType type)
1918 {
1919         gint i, len;
1920         const gchar *forbidden_chars = NULL;
1921         
1922         /* We need to get the length in the switch because the
1923            compiler needs to know the size at compile time */
1924         switch (type) {
1925         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1926                 forbidden_chars = account_title_forbidden_chars;
1927                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1928                 break;
1929         case FOLDER_NAME_FORBIDDEN_CHARS:
1930                 forbidden_chars = folder_name_forbidden_chars;
1931                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1932                 break;
1933         case USER_NAME_FORBIDDEN_NAMES:
1934                 forbidden_chars = user_name_forbidden_chars;
1935                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1936                 break;
1937         default:
1938                 g_return_val_if_reached (TRUE);
1939         }
1940
1941         for (i = 0; i < len ; i++)
1942                 if (forbidden_chars[i] == character)
1943                         return TRUE;
1944
1945         return FALSE; /* it's valid! */
1946 }
1947
1948 gchar *      
1949 modest_text_utils_label_get_selection (GtkLabel *label)
1950 {
1951         gint start, end;
1952         gchar *selection;
1953
1954         if (gtk_label_get_selection_bounds (GTK_LABEL (label), &start, &end)) {
1955                 const gchar *start_offset;
1956                 const gchar *end_offset;
1957                 start_offset = gtk_label_get_text (GTK_LABEL (label));
1958                 start_offset = g_utf8_offset_to_pointer (start_offset, start);
1959                 end_offset = gtk_label_get_text (GTK_LABEL (label));
1960                 end_offset = g_utf8_offset_to_pointer (end_offset, end);
1961                 selection = g_strndup (start_offset, end_offset - start_offset);
1962                 return selection;
1963         } else {
1964                 return g_strdup ("");
1965         }
1966 }
1967
1968 static gboolean
1969 _forward_search_image_char (gunichar ch,
1970                             gpointer userdata)
1971 {
1972         return (ch == 0xFFFC);
1973 }
1974
1975 gboolean
1976 modest_text_utils_buffer_selection_is_valid (GtkTextBuffer *buffer)
1977 {
1978         gboolean result;
1979         GtkTextIter start, end;
1980
1981         g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), FALSE);
1982
1983         result = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (buffer));
1984
1985         /* check there are no images in selection */
1986         if (result) {
1987                 gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
1988                 if (gtk_text_iter_get_char (&start)== 0xFFFC)
1989                         result = FALSE;
1990                 else {
1991                         gtk_text_iter_backward_char (&end);
1992                         if (gtk_text_iter_forward_find_char (&start, _forward_search_image_char,
1993                                                              NULL, &end))
1994                                 result = FALSE;
1995                 }
1996                                     
1997         }
1998
1999         return result;
2000 }
2001
2002 static void
2003 remove_quotes (gchar **quotes)
2004 {
2005         if (g_str_has_prefix (*quotes, "\"") && g_str_has_suffix (*quotes, "\"")) {
2006                 gchar *result;
2007                 result = g_strndup ((*quotes)+1, strlen (*quotes) - 2);
2008                 g_free (*quotes);
2009                 *quotes = result;
2010         }
2011 }
2012
2013 static void
2014 remove_extra_spaces (gchar *string)
2015 {
2016         gchar *start;
2017
2018         start = string;
2019         while (start && start[0] != '\0') {
2020                 if ((start[0] == ' ') && (start[1] == ' ')) {
2021                         g_strchug (start+1);
2022                 }
2023                 start++;
2024         }
2025 }
2026
2027 gchar *
2028 modest_text_utils_escape_mnemonics (const gchar *text)
2029 {
2030         const gchar *p;
2031         GString *result = NULL;
2032
2033         if (text == NULL)
2034                 return NULL;
2035
2036         result = g_string_new ("");
2037         for (p = text; *p != '\0'; p++) {
2038                 if (*p == '_')
2039                         result = g_string_append (result, "__");
2040                 else
2041                         result = g_string_append_c (result, *p);
2042         }
2043         
2044         return g_string_free (result, FALSE);
2045 }
2046
2047 gchar *
2048 modest_text_utils_simplify_recipients (const gchar *recipients)
2049 {
2050         GSList *addresses, *node;
2051         GString *result;
2052         gboolean is_first = TRUE;
2053
2054         if (recipients == NULL)
2055                 return g_strdup ("");
2056
2057         addresses = modest_text_utils_split_addresses_list (recipients);
2058         result = g_string_new ("");
2059
2060         for (node = addresses; node != NULL; node = g_slist_next (node)) {
2061                 const gchar *address = (const gchar *) node->data;
2062                 gchar *left_limit, *right_limit;
2063
2064                 left_limit = strstr (address, "<");
2065                 right_limit = g_strrstr (address, ">");
2066
2067                 if (is_first)
2068                         is_first = FALSE;
2069                 else
2070                         result = g_string_append (result, ", ");
2071
2072                 if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit)) {
2073                         result = g_string_append (result, address);
2074                 } else {
2075                         gchar *name_side;
2076                         gchar *email_side;
2077                         name_side = g_strndup (address, left_limit - address);
2078                         name_side = g_strstrip (name_side);
2079                         remove_quotes (&name_side);
2080                         email_side = get_email_from_address (address);
2081                         if (name_side && email_side && !strcmp (name_side, email_side)) {
2082                                 result = g_string_append (result, email_side);
2083                         } else {
2084                                 result = g_string_append (result, address);
2085                         }
2086                         g_free (name_side);
2087                         g_free (email_side);
2088                 }
2089
2090         }
2091         g_slist_foreach (addresses, (GFunc)g_free, NULL);
2092         g_slist_free (addresses);
2093
2094         return g_string_free (result, FALSE);
2095
2096 }
2097
2098 GSList *
2099 modest_text_utils_remove_duplicate_addresses_list (GSList *address_list)
2100 {
2101         GSList *new_list, *iter;
2102         GHashTable *table;
2103
2104         g_return_val_if_fail (address_list, NULL);
2105
2106         table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
2107
2108         new_list = address_list;
2109         iter = address_list;
2110         while (iter) {
2111                 const gchar* address = (const gchar*)iter->data;
2112
2113                 /* We need only the email to just compare it and not
2114                    the full address which would make "a <a@a.com>"
2115                    different from "a@a.com" */
2116                 const gchar *email = get_email_from_address (address);
2117
2118                 /* ignore the address if already seen */
2119                 if (g_hash_table_lookup (table, email) == 0) {
2120                         g_hash_table_insert (table, (gchar*)email, GINT_TO_POINTER(1));
2121                         iter = g_slist_next (iter);
2122                 } else {
2123                         GSList *tmp = g_slist_next (iter);
2124                         new_list = g_slist_delete_link (new_list, iter);
2125                         iter = tmp;
2126                 }
2127         }
2128
2129         g_hash_table_unref (table);
2130
2131         return new_list;
2132 }
2133
2134 gchar *
2135 modest_text_utils_get_secure_header (const gchar *value,
2136                                      const gchar *header)
2137 {
2138         const gint max_len = 16384;
2139         gchar *new_value = NULL;
2140         gchar *needle = g_strrstr (value, header);
2141
2142         if (needle && value != needle)
2143                 new_value = g_strdup (needle + strlen (header));
2144
2145         if (!new_value)
2146                 new_value = g_strdup (value);
2147
2148         /* Do a max length check to prevent DoS attacks caused by huge
2149            malformed headers */
2150         if (g_utf8_validate (new_value, -1, NULL)) {
2151                 if (g_utf8_strlen (new_value, -1) > max_len) {
2152                         gchar *tmp = g_malloc0 (max_len * 4);
2153                         g_utf8_strncpy (tmp, (const gchar *) new_value, max_len);
2154                         g_free (new_value);
2155                         new_value = tmp;
2156                 }
2157         } else {
2158                 if (strlen (new_value) > max_len) {
2159                         gchar *tmp = g_malloc0 (max_len);
2160                         strncpy (new_value, tmp, max_len);
2161                         g_free (new_value);
2162                         new_value = tmp;
2163                 }
2164         }
2165
2166         return new_value;
2167 }
2168
2169 static gboolean
2170 is_quoted (const char *start, const gchar *end)
2171 {
2172         gchar *c;
2173
2174         c = (gchar *) start;
2175         while (*c == ' ')
2176                 c = g_utf8_next_char (c);
2177
2178         if (*c == '\0' || *c != '\"')
2179                 return FALSE;
2180
2181         c = (gchar *) end;
2182         while (*c == ' ' && c != start)
2183                 c = g_utf8_prev_char (c);
2184
2185         if (c == start || *c != '\"')
2186                 return FALSE;
2187
2188         return TRUE;
2189 }
2190
2191
2192 static void
2193 quote_name_part (GString **str, gchar **cur, gchar **start)
2194 {
2195         gchar *blank;
2196         gint str_len = *cur - *start;
2197
2198         while (**start == ' ') {
2199                 *start = g_utf8_next_char (*start);
2200                 str_len--;
2201         }
2202
2203         blank = g_utf8_strrchr (*start, str_len, g_utf8_get_char (" "));
2204         if (blank && (blank != *start)) {
2205                 if (is_quoted (*start, blank - 1)) {
2206                         *str = g_string_append_len (*str, *start, str_len);
2207                         *str = g_string_append (*str, ";");
2208                         *start = g_utf8_next_char (*cur);
2209                 } else {
2210                         *str = g_string_append_c (*str, '"');
2211                         *str = g_string_append_len (*str, *start, (blank - *start));
2212                         *str = g_string_append_c (*str, '"');
2213                         *str = g_string_append_len (*str, blank, (*cur - blank));
2214                         *str = g_string_append (*str, ";");
2215                         *start = g_utf8_next_char (*cur);
2216                 }
2217         } else {
2218                 *str = g_string_append_len (*str, *start, str_len);
2219                 *str = g_string_append (*str, ";");
2220                 *start = g_utf8_next_char (*cur);
2221         }
2222 }
2223
2224 gchar *
2225 modest_text_utils_quote_names (const gchar *recipients)
2226 {
2227         GString *str;
2228         gchar *start, *cur;
2229
2230         str = g_string_new ("");
2231         start = (gchar*) recipients;
2232         cur = (gchar*) recipients;
2233
2234         for (cur = start; *cur != '\0'; cur = g_utf8_next_char (cur)) {
2235                 if (*cur == ',' || *cur == ';') {
2236                         if (!g_utf8_strchr (start, (cur - start + 1), g_utf8_get_char ("@")))
2237                                 continue;
2238                         quote_name_part (&str, &cur, &start);
2239                 }
2240         }
2241
2242         quote_name_part (&str, &cur, &start);
2243
2244         return g_string_free (str, FALSE);
2245 }