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