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