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