b0f547ddb908cc48ddc85f726be2b3e81fd7b084
[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
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 #define MAIL_VIEWER_URL_MATCH_PATTERNS  {                               \
85         { "(file|rtsp|http|ftp|https)://[-A-Za-z0-9_$.+!*(),;:@%&=?/~#]+[-A-Za-z0-9_$%&=?/~#]",\
86           NULL, NULL },\
87         { "www\\.[-a-z0-9.]+[-a-z0-9](:[0-9]*)?(/[-A-Za-z0-9_$.+!*(),;:@%&=?/~#]*[^]}\\),?!;:\"]?)?",\
88                         NULL, "http://" },                              \
89         { "ftp\\.[-a-z0-9.]+[-a-z0-9](:[0-9]*)?(/[-A-Za-z0-9_$.+!*(),;:@%&=?/~#]*[^]}\\),?!;:\"]?)?",\
90           NULL, "ftp://" },\
91         { "(voipto|callto|chatto|jabberto|xmpp):[-_a-z@0-9.\\+]+", \
92            NULL, NULL},                                             \
93         { "mailto:[-_a-z0-9.\\+]+@[-_a-z0-9.]+",                    \
94           NULL, NULL},\
95         { "[-_a-z0-9.\\+]+@[-_a-z0-9.]+",\
96           NULL, "mailto:"}\
97         }
98
99 const gchar account_title_forbidden_chars[] = {
100         '\\', '/', ':', '*', '?', '\'', '<', '>', '|', '^'
101 };
102 const gchar folder_name_forbidden_chars[] = {
103         '<', '>', ':', '\'', '/', '\\', '|', '?', '*', '^', '%', '$'
104 };
105 const gchar user_name_forbidden_chars[] = {
106         '<', '>'
107 };
108 const guint ACCOUNT_TITLE_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (account_title_forbidden_chars);
109 const guint FOLDER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (folder_name_forbidden_chars);
110 const guint USER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (user_name_forbidden_chars);
111
112 /* private */
113 static gchar*   cite                    (const time_t sent_date, const gchar *from);
114 static void     hyperlinkify_plain_text (GString *txt);
115 static gint     cmp_offsets_reverse     (const url_match_t *match1, const url_match_t *match2);
116 static GSList*  get_url_matches         (GString *txt);
117
118 static GString* get_next_line           (const char *b, const gsize blen, const gchar * iter);
119 static int      get_indent_level        (const char *l);
120 static void     unquote_line            (GString * l);
121 static void     append_quoted           (GString * buf, const int indent, const GString * str, 
122                                          const int cutpoint);
123 static int      get_breakpoint_utf8     (const gchar * s, const gint indent, const gint limit);
124 static int      get_breakpoint_ascii    (const gchar * s, const gint indent, const gint limit);
125 static int      get_breakpoint          (const gchar * s, const gint indent, const gint limit);
126
127 static gchar*   modest_text_utils_quote_plain_text (const gchar *text, 
128                                                     const gchar *cite, 
129                                                     const gchar *signature,
130                                                     GList *attachments, 
131                                                     int limit);
132
133 static gchar*   modest_text_utils_quote_html       (const gchar *text, 
134                                                     const gchar *cite,
135                                                     const gchar *signature,
136                                                     GList *attachments,
137                                                     int limit);
138 static gchar*   get_email_from_address (const gchar *address);
139
140
141 /* ******************************************************************* */
142 /* ************************* PUBLIC FUNCTIONS ************************ */
143 /* ******************************************************************* */
144
145 gchar *
146 modest_text_utils_quote (const gchar *text, 
147                          const gchar *content_type,
148                          const gchar *signature,
149                          const gchar *from,
150                          const time_t sent_date, 
151                          GList *attachments,
152                          int limit)
153 {
154         gchar *retval, *cited;
155
156         g_return_val_if_fail (text, NULL);
157         g_return_val_if_fail (content_type, NULL);
158
159         cited = cite (sent_date, from);
160         
161         if (content_type && strcmp (content_type, "text/html") == 0)
162                 /* TODO: extract the <body> of the HTML and pass it to
163                    the function */
164                 retval = modest_text_utils_quote_html (text, cited, signature, attachments, limit);
165         else
166                 retval = modest_text_utils_quote_plain_text (text, cited, signature, attachments, limit);
167         
168         g_free (cited);
169         
170         return retval;
171 }
172
173
174 gchar *
175 modest_text_utils_cite (const gchar *text,
176                         const gchar *content_type,
177                         const gchar *signature,
178                         const gchar *from,
179                         time_t sent_date)
180 {
181         gchar *retval;
182         gchar *tmp_sig;
183         
184         g_return_val_if_fail (text, NULL);
185         g_return_val_if_fail (content_type, NULL);
186         
187         if (!signature)
188                 retval = g_strdup ("");
189         else if (strcmp(content_type, "text/html") == 0) {
190                 tmp_sig = g_strconcat ("\n", signature, NULL);
191                 retval = modest_text_utils_convert_to_html_body(tmp_sig, -1, TRUE);
192                 g_free (tmp_sig);
193         } else {
194                 retval = g_strconcat (text, "\n", signature, NULL);
195         }
196
197         return retval;
198 }
199
200 static gchar *
201 forward_cite (const gchar *from,
202               const gchar *sent,
203               const gchar *to,
204               const gchar *subject)
205 {
206         return g_strdup_printf ("%s\n%s %s\n%s %s\n%s %s\n%s %s\n", 
207                                 FORWARD_STRING, 
208                                 FROM_STRING, (from)?from:"",
209                                 SENT_STRING, sent,
210                                 TO_STRING, (to)?to:"",
211                                 SUBJECT_STRING, (subject)?subject:"");
212 }
213
214 gchar * 
215 modest_text_utils_inline (const gchar *text,
216                           const gchar *content_type,
217                           const gchar *signature,
218                           const gchar *from,
219                           time_t sent_date,
220                           const gchar *to,
221                           const gchar *subject)
222 {
223         gchar sent_str[101];
224         gchar *cited;
225         gchar *retval;
226         
227         g_return_val_if_fail (text, NULL);
228         g_return_val_if_fail (content_type, NULL);
229         
230         modest_text_utils_strftime (sent_str, 100, "%c", sent_date);
231
232         cited = forward_cite (from, sent_str, to, subject);
233         
234         if (content_type && strcmp (content_type, "text/html") == 0)
235                 retval = modest_text_utils_quote_html (text, cited, signature, NULL, 80);
236         else
237                 retval = modest_text_utils_quote_plain_text (text, cited, signature, NULL, 80);
238         
239         g_free (cited);
240         return retval;
241 }
242
243 /* just to prevent warnings:
244  * warning: `%x' yields only last 2 digits of year in some locales
245  */
246 gsize
247 modest_text_utils_strftime(char *s, gsize max, const char *fmt, time_t timet)
248 {
249         struct tm tm;
250
251         /* does not work on old maemo glib: 
252          *   g_date_set_time_t (&date, timet);
253          */
254         localtime_r (&timet, &tm);
255         return strftime(s, max, fmt, &tm);
256 }
257
258 gchar *
259 modest_text_utils_derived_subject (const gchar *subject, const gchar *prefix)
260 {
261         gchar *tmp;
262
263         g_return_val_if_fail (prefix, NULL);
264
265         if (!subject || subject[0] == '\0')
266                 subject = _("mail_va_no_subject");
267
268         tmp = g_strchug (g_strdup (subject));
269
270         if (!strncmp (tmp, prefix, strlen (prefix))) {
271                 return tmp;
272         } else {
273                 g_free (tmp);
274                 return g_strdup_printf ("%s %s", prefix, subject);
275         }
276 }
277
278 gchar*
279 modest_text_utils_remove_address (const gchar *address_list, const gchar *address)
280 {
281         gchar *dup, *token, *ptr, *result;
282         GString *filtered_emails;
283         gchar *email_address;
284
285         g_return_val_if_fail (address_list, NULL);
286
287         if (!address)
288                 return g_strdup (address_list);
289
290         email_address = get_email_from_address (address);
291         
292         /* search for substring */
293         if (!strstr ((const char *) address_list, (const char *) email_address)) {
294                 g_free (email_address);
295                 return g_strdup (address_list);
296         }
297
298         dup = g_strdup (address_list);
299         filtered_emails = g_string_new (NULL);
300         
301         token = strtok_r (dup, ",", &ptr);
302
303         while (token != NULL) {
304                 /* Add to list if not found */
305                 if (!strstr ((const char *) token, (const char *) email_address)) {
306                         if (filtered_emails->len == 0)
307                                 g_string_append_printf (filtered_emails, "%s", g_strstrip (token));
308                         else
309                                 g_string_append_printf (filtered_emails, ",%s", g_strstrip (token));
310                 }
311                 token = strtok_r (NULL, ",", &ptr);
312         }
313         result = filtered_emails->str;
314
315         /* Clean */
316         g_free (email_address);
317         g_free (dup);
318         g_string_free (filtered_emails, FALSE);
319
320         return result;
321 }
322
323 static void
324 modest_text_utils_convert_buffer_to_html (GString *html, const gchar *data, gssize n)
325 {
326         guint            i;
327         gboolean        space_seen = FALSE;
328         guint           break_dist = 0; /* distance since last break point */
329
330         if (n == -1)
331                 n = strlen (data);
332
333         /* replace with special html chars where needed*/
334         for (i = 0; i != n; ++i)  {
335                 char kar = data[i];
336                 
337                 if (space_seen && kar != ' ') {
338                         g_string_append_c (html, ' ');
339                         space_seen = FALSE;
340                 }
341                 
342                 /* we artificially insert a breakpoint (newline)
343                  * after 256, to make sure our lines are not so long
344                  * they will DOS the regexping later
345                  */
346                 if (++break_dist == 256) {
347                         g_string_append_c (html, '\n');
348                         break_dist = 0;
349                 }
350                 
351                 switch (kar) {
352                 case 0:  break; /* ignore embedded \0s */       
353                 case '<'  : g_string_append (html, "&lt;");   break;
354                 case '>'  : g_string_append (html, "&gt;");   break;
355                 case '&'  : g_string_append (html, "&amp;");  break;
356                 case '"'  : g_string_append (html, "&quot;");  break;
357
358                 /* don't convert &apos; --> wpeditor will try to re-convert it... */    
359                 //case '\'' : g_string_append (html, "&apos;"); break;
360                 case '\n' : g_string_append (html, "<br>\n");              break_dist= 0; break;
361                 case '\t' : g_string_append (html, "&nbsp;&nbsp;&nbsp; "); break_dist=0; break; /* note the space at the end*/
362                 case ' ':
363                         break_dist = 0;
364                         if (space_seen) { /* second space in a row */
365                                 g_string_append (html, "&nbsp; ");
366                                 space_seen = FALSE;
367                         } else
368                                 space_seen = TRUE;
369                         break;
370                 default:
371                         g_string_append_c (html, kar);
372                 }
373         }
374 }
375
376 gchar*
377 modest_text_utils_convert_to_html (const gchar *data)
378 {
379         GString         *html;      
380         gsize           len;
381         
382         if (!data)
383                 return NULL;
384
385         len = strlen (data);
386         html = g_string_sized_new (1.5 * len);  /* just a  guess... */
387
388         g_string_append_printf (html,
389                                 "<html><head>"
390                                 "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">"
391                                 "</head>"
392                                 "<body>");
393
394         modest_text_utils_convert_buffer_to_html (html, data, -1);
395         
396         g_string_append (html, "</body></html>");
397
398         if (len <= HYPERLINKIFY_MAX_LENGTH)
399                 hyperlinkify_plain_text (html);
400
401         return g_string_free (html, FALSE);
402 }
403
404 gchar *
405 modest_text_utils_convert_to_html_body (const gchar *data, gssize n, gboolean hyperlinkify)
406 {
407         GString         *html;      
408         
409         if (!data)
410                 return NULL;
411
412         if (n == -1) 
413                 n = strlen (data);
414         html = g_string_sized_new (1.5 * n);    /* just a  guess... */
415
416         modest_text_utils_convert_buffer_to_html (html, data, n);
417
418         if (hyperlinkify && (n < HYPERLINKIFY_MAX_LENGTH))
419                 hyperlinkify_plain_text (html);
420
421         return g_string_free (html, FALSE);
422 }
423
424 void
425 modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes)
426 {
427         gchar *current, *start, *last_blank;
428         gint start_offset = 0, current_offset = 0;
429
430         g_return_if_fail (start_indexes != NULL);
431         g_return_if_fail (end_indexes != NULL);
432
433         start = (gchar *) addresses;
434         current = start;
435         last_blank = start;
436
437         while (*current != '\0') {
438                 if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) {
439                         start = g_utf8_next_char (start);
440                         start_offset++;
441                         last_blank = current;
442                 } else if ((*current == ',')||(*current == ';')) {
443                         gint *start_index, *end_index;
444                         start_index = g_new0(gint, 1);
445                         end_index = g_new0(gint, 1);
446                         *start_index = start_offset;
447                         *end_index = current_offset;
448                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
449                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
450                         start = g_utf8_next_char (current);
451                         start_offset = current_offset + 1;
452                         last_blank = start;
453                 } else if (*current == '"') {
454                         current = g_utf8_next_char (current);
455                         current_offset ++;
456                         while ((*current != '"')&&(*current != '\0')) {
457                                 current = g_utf8_next_char (current);
458                                 current_offset ++;
459                         }
460                 }
461                                 
462                 current = g_utf8_next_char (current);
463                 current_offset ++;
464         }
465
466         if (start != current) {
467                         gint *start_index, *end_index;
468                         start_index = g_new0(gint, 1);
469                         end_index = g_new0(gint, 1);
470                         *start_index = start_offset;
471                         *end_index = current_offset;
472                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
473                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
474         }
475         
476         *start_indexes = g_slist_reverse (*start_indexes);
477         *end_indexes = g_slist_reverse (*end_indexes);
478
479         return;
480 }
481
482 GSList *
483 modest_text_utils_split_addresses_list (const gchar *addresses)
484 {
485         gchar *current, *start, *last_blank;
486         GSList *result = NULL;
487
488         start = (gchar *) addresses;
489         current = start;
490         last_blank = start;
491
492         while (*current != '\0') {
493                 if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) {
494                         start = g_utf8_next_char (start);
495                         last_blank = current;
496                 } else if ((*current == ',')||(*current == ';')) {
497                         gchar *new_address = NULL;
498                         new_address = g_strndup (start, current - last_blank);
499                         result = g_slist_prepend (result, new_address);
500                         start = g_utf8_next_char (current);
501                         last_blank = start;
502                 } else if (*current == '\"') {
503                         if (current == start) {
504                                 current = g_utf8_next_char (current);
505                                 start = g_utf8_next_char (start);
506                         }
507                         while ((*current != '\"')&&(*current != '\0'))
508                                 current = g_utf8_next_char (current);
509                 }
510                                 
511                 current = g_utf8_next_char (current);
512         }
513
514         if (start != current) {
515                 gchar *new_address = NULL;
516                 new_address = g_strndup (start, current - last_blank);
517                 result = g_slist_prepend (result, new_address);
518         }
519
520         result = g_slist_reverse (result);
521         return result;
522
523 }
524
525 void
526 modest_text_utils_address_range_at_position (const gchar *recipients_list,
527                                              guint position,
528                                              guint *start,
529                                              guint *end)
530 {
531         gchar *current = NULL;
532         gint range_start = 0;
533         gint range_end = 0;
534         gint index;
535         gboolean is_quoted = FALSE;
536
537         g_return_if_fail (recipients_list);
538         g_return_if_fail (position < g_utf8_strlen(recipients_list, -1));
539                 
540         index = 0;
541         for (current = (gchar *) recipients_list; *current != '\0';
542              current = g_utf8_find_next_char (current, NULL)) {
543                 gunichar c = g_utf8_get_char (current);
544
545                 if ((c == ',') && (!is_quoted)) {
546                         if (index < position) {
547                                 range_start = index + 1;
548                         } else {
549                                 break;
550                         }
551                 } else if (c == '\"') {
552                         is_quoted = !is_quoted;
553                 } else if ((c == ' ') &&(range_start == index)) {
554                         range_start ++;
555                 }
556                 index ++;
557                 range_end = index;
558         }
559
560         if (start)
561                 *start = range_start;
562         if (end)
563                 *end = range_end;
564 }
565
566
567 /* ******************************************************************* */
568 /* ************************* UTILIY FUNCTIONS ************************ */
569 /* ******************************************************************* */
570
571 static GString *
572 get_next_line (const gchar * b, const gsize blen, const gchar * iter)
573 {
574         GString *gs;
575         const gchar *i0;
576         
577         if (iter > b + blen)
578                 return g_string_new("");
579         
580         i0 = iter;
581         while (iter[0]) {
582                 if (iter[0] == '\n')
583                         break;
584                 iter++;
585         }
586         gs = g_string_new_len (i0, iter - i0);
587         return gs;
588 }
589 static int
590 get_indent_level (const char *l)
591 {
592         int indent = 0;
593
594         while (l[0]) {
595                 if (l[0] == '>') {
596                         indent++;
597                         if (l[1] == ' ') {
598                                 l++;
599                         }
600                 } else {
601                         break;
602                 }
603                 l++;
604
605         }
606
607         /*      if we hit the signature marker "-- ", we return -(indent + 1). This
608          *      stops reformatting.
609          */
610         if (strcmp (l, "-- ") == 0) {
611                 return -1 - indent;
612         } else {
613                 return indent;
614         }
615 }
616
617 static void
618 unquote_line (GString * l)
619 {
620         gchar *p;
621
622         p = l->str;
623         while (p[0]) {
624                 if (p[0] == '>') {
625                         if (p[1] == ' ') {
626                                 p++;
627                         }
628                 } else {
629                         break;
630                 }
631                 p++;
632         }
633         g_string_erase (l, 0, p - l->str);
634 }
635
636 static void
637 append_quoted (GString * buf, int indent, const GString * str,
638                const int cutpoint)
639 {
640         int i;
641
642         indent = indent < 0 ? abs (indent) - 1 : indent;
643         for (i = 0; i <= indent; i++) {
644                 g_string_append (buf, "> ");
645         }
646         if (cutpoint > 0) {
647                 g_string_append_len (buf, str->str, cutpoint);
648         } else {
649                 g_string_append (buf, str->str);
650         }
651         g_string_append (buf, "\n");
652 }
653
654 static int
655 get_breakpoint_utf8 (const gchar * s, gint indent, const gint limit)
656 {
657         gint index = 0;
658         const gchar *pos, *last;
659         gunichar *uni;
660
661         indent = indent < 0 ? abs (indent) - 1 : indent;
662
663         last = NULL;
664         pos = s;
665         uni = g_utf8_to_ucs4_fast (s, -1, NULL);
666         while (pos[0]) {
667                 if ((index + 2 * indent > limit) && last) {
668                         g_free (uni);
669                         return last - s;
670                 }
671                 if (g_unichar_isspace (uni[index])) {
672                         last = pos;
673                 }
674                 pos = g_utf8_next_char (pos);
675                 index++;
676         }
677         g_free (uni);
678         return strlen (s);
679 }
680
681 static int
682 get_breakpoint_ascii (const gchar * s, const gint indent, const gint limit)
683 {
684         gint i, last;
685
686         last = strlen (s);
687         if (last + 2 * indent < limit)
688                 return last;
689
690         for (i = strlen (s); i > 0; i--) {
691                 if (s[i] == ' ') {
692                         if (i + 2 * indent <= limit) {
693                                 return i;
694                         } else {
695                                 last = i;
696                         }
697                 }
698         }
699         return last;
700 }
701
702 static int
703 get_breakpoint (const gchar * s, const gint indent, const gint limit)
704 {
705
706         if (g_utf8_validate (s, -1, NULL)) {
707                 return get_breakpoint_utf8 (s, indent, limit);
708         } else {                /* assume ASCII */
709                 //g_warning("invalid UTF-8 in msg");
710                 return get_breakpoint_ascii (s, indent, limit);
711         }
712 }
713
714 static gchar *
715 cite (const time_t sent_date, const gchar *from)
716 {
717         return g_strdup (_("mcen_ia_editor_original_message"));
718 }
719
720 static gchar *
721 quoted_attachments (GList *attachments)
722 {
723         GList *node = NULL;
724         GString *result = g_string_new ("");
725         for (node = attachments; node != NULL; node = g_list_next (node)) {
726                 gchar *filename = (gchar *) node->data;
727                 g_string_append_printf ( result, "%s %s\n", _("mcen_ia_editor_attach_filename"), filename);
728         }
729
730         return g_string_free (result, FALSE);
731
732 }
733
734 static gchar *
735 modest_text_utils_quote_plain_text (const gchar *text, 
736                                     const gchar *cite, 
737                                     const gchar *signature,
738                                     GList *attachments,
739                                     int limit)
740 {
741         const gchar *iter;
742         gint indent, breakpoint, rem_indent = 0;
743         GString *q, *l, *remaining;
744         gsize len;
745         gchar *attachments_string = NULL;
746
747         /* remaining will store the rest of the line if we have to break it */
748         q = g_string_new ("\n");
749         q = g_string_append (q, cite);
750         q = g_string_append_c (q, '\n');
751         remaining = g_string_new ("");
752
753         iter = text;
754         len = strlen(text);
755         do {
756                 l = get_next_line (text, len, iter);
757                 iter = iter + l->len + 1;
758                 indent = get_indent_level (l->str);
759                 unquote_line (l);
760
761                 if (remaining->len) {
762                         if (l->len && indent == rem_indent) {
763                                 g_string_prepend (l, " ");
764                                 g_string_prepend (l, remaining->str);
765                         } else {
766                                 do {
767                                         breakpoint =
768                                                 get_breakpoint (remaining->str,
769                                                                 rem_indent,
770                                                                 limit);
771                                         append_quoted (q, rem_indent,
772                                                        remaining, breakpoint);
773                                         g_string_erase (remaining, 0,
774                                                         breakpoint);
775                                         if (remaining->str[0] == ' ') {
776                                                 g_string_erase (remaining, 0,
777                                                                 1);
778                                         }
779                                 } while (remaining->len);
780                         }
781                 }
782                 g_string_free (remaining, TRUE);
783                 breakpoint = get_breakpoint (l->str, indent, limit);
784                 remaining = g_string_new (l->str + breakpoint);
785                 if (remaining->str[0] == ' ') {
786                         g_string_erase (remaining, 0, 1);
787                 }
788                 rem_indent = indent;
789                 append_quoted (q, indent, l, breakpoint);
790                 g_string_free (l, TRUE);
791         } while ((iter < text + len) || (remaining->str[0]));
792
793         attachments_string = quoted_attachments (attachments);
794         q = g_string_append (q, attachments_string);
795         g_free (attachments_string);
796
797         if (signature != NULL) {
798                 q = g_string_append_c (q, '\n');
799                 q = g_string_append (q, signature);
800         }
801
802         return g_string_free (q, FALSE);
803 }
804
805 static gchar*
806 modest_text_utils_quote_html (const gchar *text, 
807                               const gchar *cite, 
808                               const gchar *signature,
809                               GList *attachments,
810                               int limit)
811 {
812         gchar *result = NULL;
813         gchar *signature_result = NULL;
814         const gchar *format = \
815                 "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
816                 "<html>\n" \
817                 "<body>\n" \
818                 "<br/>%s<br/>" \
819                 "<pre>%s<br/>%s<br/>%s</pre>\n" \
820                 "</body>\n" \
821                 "</html>\n";
822         gchar *attachments_string = NULL;
823         gchar *q_attachments_string = NULL;
824         gchar *q_cite = NULL;
825         gchar *html_text = NULL;
826
827         if (signature == NULL)
828                 signature_result = g_strdup ("");
829         else
830                 signature_result = modest_text_utils_convert_to_html_body (signature, -1, TRUE);
831
832         attachments_string = quoted_attachments (attachments);
833         q_attachments_string = modest_text_utils_convert_to_html_body (attachments_string, -1, TRUE);
834         q_cite = modest_text_utils_convert_to_html_body (cite, -1, TRUE);
835         html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
836         result = g_strdup_printf (format, signature_result, q_cite, html_text, q_attachments_string);
837         g_free (q_cite);
838         g_free (html_text);
839         g_free (attachments_string);
840         g_free (q_attachments_string);
841         g_free (signature_result);
842         
843         return result;
844 }
845
846 static gint 
847 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
848 {
849         return match2->offset - match1->offset;
850 }
851
852 static gboolean url_matches_block = 0;
853 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
854
855
856 static gboolean
857 compile_patterns ()
858 {
859         guint i;
860         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
861         for (i = 0; i != pattern_num; ++i) {
862                 patterns[i].preg = g_slice_new0 (regex_t);
863                 
864                 /* this should not happen */
865                 g_return_val_if_fail (regcomp (patterns[i].preg, patterns[i].regex,
866                                                REG_ICASE|REG_EXTENDED|REG_NEWLINE) == 0, FALSE);
867         }
868         return TRUE;
869 }
870
871 static void 
872 free_patterns ()
873 {
874         guint i;
875         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
876         for (i = 0; i != pattern_num; ++i) {
877                 regfree (patterns[i].preg);
878                 g_slice_free  (regex_t, patterns[i].preg);
879         } /* don't free patterns itself -- it's static */
880 }
881
882 void
883 modest_text_utils_hyperlinkify_begin (void)
884 {
885         if (url_matches_block == 0)
886                 compile_patterns ();
887         url_matches_block ++;
888 }
889
890 void
891 modest_text_utils_hyperlinkify_end (void)
892 {
893         url_matches_block--;
894         if (url_matches_block <= 0)
895                 free_patterns ();
896 }
897
898
899 static GSList*
900 get_url_matches (GString *txt)
901 {
902         regmatch_t rm;
903         guint rv, i, offset = 0;
904         GSList *match_list = NULL;
905
906         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
907
908         /* initalize the regexps */
909         modest_text_utils_hyperlinkify_begin ();
910
911         /* find all the matches */
912         for (i = 0; i != pattern_num; ++i) {
913                 offset     = 0; 
914                 while (1) {
915                         url_match_t *match;
916                         gboolean is_submatch;
917                         GSList *cursor;
918                         
919                         if ((rv = regexec (patterns[i].preg, txt->str + offset, 1, &rm, 0)) != 0) {
920                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
921                                 break; /* try next regexp */ 
922                         }
923                         if (rm.rm_so == -1)
924                                 break;
925                         
926                         is_submatch = FALSE;
927                         /* check  old matches to see if this has already been matched */
928                         cursor = match_list;
929                         while (cursor && !is_submatch) {
930                                 const url_match_t *old_match =
931                                         (const url_match_t *) cursor->data;
932                                 guint new_offset = offset + rm.rm_so;
933                                 is_submatch = (new_offset >  old_match->offset &&
934                                                new_offset <  old_match->offset + old_match->len);
935                                 cursor = g_slist_next (cursor);
936                         }
937
938                         if (!is_submatch) {
939                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
940                                 match = g_slice_new (url_match_t);
941                                 match->offset = offset + rm.rm_so;
942                                 match->len    = rm.rm_eo - rm.rm_so;
943                                 match->prefix = patterns[i].prefix;
944                                 match_list = g_slist_prepend (match_list, match);
945                         }
946                                 
947                         offset += rm.rm_eo;
948                 }
949         }
950
951         modest_text_utils_hyperlinkify_end ();
952         
953         /* now sort the list, so the matches are in reverse order of occurence.
954          * that way, we can do the replacements starting from the end, so we don't need
955          * to recalculate the offsets
956          */
957         match_list = g_slist_sort (match_list,
958                                    (GCompareFunc)cmp_offsets_reverse); 
959         return match_list;      
960 }
961
962
963
964 static void
965 hyperlinkify_plain_text (GString *txt)
966 {
967         GSList *cursor;
968         GSList *match_list = get_url_matches (txt);
969
970         /* we will work backwards, so the offsets stay valid */
971         for (cursor = match_list; cursor; cursor = cursor->next) {
972
973                 url_match_t *match = (url_match_t*) cursor->data;
974                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
975                 gchar *repl = NULL; /* replacement  */
976
977                 /* the prefix is NULL: use the one that is already there */
978                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
979                                         match->prefix ? match->prefix : EMPTY_STRING, 
980                                         url, url);
981
982                 /* replace the old thing with our hyperlink
983                  * replacement thing */
984                 g_string_erase  (txt, match->offset, match->len);
985                 g_string_insert (txt, match->offset, repl);
986                 
987                 g_free (url);
988                 g_free (repl);
989
990                 g_slice_free (url_match_t, match);      
991         }
992         
993         g_slist_free (match_list);
994 }
995
996
997 /* for optimization reasons, we change the string in-place */
998 void
999 modest_text_utils_get_display_address (gchar *address)
1000 {
1001         int i;
1002         
1003         if (!address)
1004                 return;
1005         
1006         /* should not be needed, and otherwise, we probably won't screw up the address
1007          * more than it already is :) 
1008          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1009          * */
1010         
1011         /* remove leading whitespace */
1012         if (address[0] == ' ')
1013                 g_strchug (address);
1014                 
1015         for (i = 0; address[i]; ++i) {
1016                 if (address[i] == '<') {
1017                         if (G_UNLIKELY(i == 0))
1018                                 return; /* there's nothing else, leave it */
1019                         else {
1020                                 address[i] = '\0'; /* terminate the string here */
1021                                 return;
1022                         }
1023                 }
1024         }
1025 }
1026
1027
1028
1029
1030
1031 gchar *
1032 modest_text_utils_get_email_address (const gchar *full_address)
1033 {
1034         const gchar *left, *right;
1035         
1036         if (!full_address)
1037                 return NULL;
1038         
1039         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1040         
1041         left = g_strrstr_len (full_address, strlen(full_address), "<");
1042         if (left == NULL)
1043                 return g_strdup (full_address);
1044
1045         right = g_strstr_len (left, strlen(left), ">");
1046         if (right == NULL)
1047                 return g_strdup (full_address);
1048
1049         return g_strndup (left + 1, right - left - 1);
1050 }
1051
1052 gint 
1053 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1054 {
1055         gint i;
1056         static const gchar* prefix[] = {
1057                 "Re:", "RE:", "RV:", "re:"
1058                 "Fwd:", "FWD:", "FW:", "fwd:", "Fw:", "fw:", NULL
1059         };
1060                 
1061         if (!sub || (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')) /* optimization */
1062                 return 0;
1063
1064         i = 0;
1065         
1066         while (prefix[i]) {
1067                 if (g_str_has_prefix(sub, prefix[i])) {
1068                         int prefix_len = strlen(prefix[i]); 
1069                         if (sub[prefix_len] == ' ')
1070                                 ++prefix_len; /* ignore space after prefix as well */
1071                         return prefix_len; 
1072                 }
1073                 ++i;
1074         }
1075         return 0;
1076 }
1077
1078
1079 gint
1080 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1081 {
1082         gint result = 0;
1083         gchar *n1, *n2;
1084
1085         /* work even when s1 and/or s2 == NULL */
1086         if (G_UNLIKELY(s1 == s2))
1087                 return 0;
1088
1089         /* if it's not case sensitive */
1090         if (!insensitive)
1091                 return strcmp (s1 ? s1 : "", s2 ? s2 : "");
1092         
1093         n1 = g_utf8_collate_key (s1 ? s1 : "", -1);
1094         n2 = g_utf8_collate_key (s2 ? s2 : "", -1);
1095         
1096         result = strcmp (n1, n2);
1097
1098         g_free (n1);
1099         g_free (n2);
1100         
1101         return result;
1102 }
1103
1104
1105 const gchar*
1106 modest_text_utils_get_display_date (time_t date)
1107 {
1108 #define DATE_BUF_SIZE 64 
1109         static gchar date_buf[DATE_BUF_SIZE];
1110         
1111         /* calculate the # of days since epoch for 
1112          * for today and for the date provided 
1113          * based on idea from pvanhoof */
1114         int day      = time(NULL) / (24 * 60 * 60);
1115         int date_day = date       / (24 * 60 * 60);
1116
1117         /* if it's today, show the time, if it's not today, show the date instead */
1118
1119         if (day == date_day) /* is the date today? */
1120                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1121         else 
1122                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1123
1124         return date_buf; /* this is a static buffer, don't free! */
1125 }
1126
1127
1128
1129 gboolean
1130 modest_text_utils_validate_folder_name (const gchar *folder_name)
1131 {
1132         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1133          * with some extras */
1134         
1135         guint len;
1136         gint i;
1137         const gchar **cursor = NULL;
1138         const gchar *forbidden_names[] = { /* windows does not like these */
1139                 "CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6",
1140                 "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",
1141                 ".", "..", NULL
1142         };
1143         
1144         /* cannot be NULL */
1145         if (!folder_name) 
1146                 return FALSE;
1147
1148         /* cannot be empty */
1149         len = strlen(folder_name);
1150         if (len == 0)
1151                 return FALSE;
1152         
1153         /* cannot start or end with a space */
1154         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1155                 return FALSE; 
1156
1157         /* cannot contain a forbidden char */   
1158         for (i = 0; i < len; i++)
1159                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1160                         return FALSE;
1161         
1162         /* cannot contain a forbidden word */
1163         if (len <= 4) {
1164                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1165                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1166                                 return FALSE;
1167                 }
1168         }
1169         return TRUE; /* it's valid! */
1170 }
1171
1172
1173
1174 gboolean
1175 modest_text_utils_validate_domain_name (const gchar *domain)
1176 {
1177         gboolean valid = FALSE;
1178         regex_t rx;
1179         const gchar* domain_regex = "^[a-z0-9]([.]?[a-z0-9-])*[a-z0-9]$";
1180
1181         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1182         
1183         if (!domain)
1184                 return FALSE;
1185         
1186         /* domain name: all alphanum or '-' or '.',
1187          * but beginning/ending in alphanum */  
1188         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1189                 g_warning ("BUG: error in regexp");
1190                 return FALSE;
1191         }
1192         
1193         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1194         regfree (&rx);
1195                 
1196         return valid;
1197 }
1198
1199
1200
1201 gboolean
1202 modest_text_utils_validate_email_address (const gchar *email_address, const gchar **invalid_char_position)
1203 {
1204         int count = 0;
1205         const gchar *c = NULL, *domain = NULL;
1206         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1207
1208         if (invalid_char_position != NULL)
1209                 *invalid_char_position = NULL;
1210         
1211         /* check that the email adress contains exactly one @ */
1212         if (!strstr(email_address, "@") || 
1213                         (strstr(email_address, "@") != g_strrstr(email_address, "@")))
1214         {
1215                 return FALSE;
1216         }
1217         
1218         /* first we validate the name portion (name@domain) */
1219         for (c = email_address;  *c;  c++) {
1220                 if (*c == '\"' && 
1221                     (c == email_address || 
1222                      *(c - 1) == '.' || 
1223                      *(c - 1) == '\"')) {
1224                         while (*++c) {
1225                                 if (*c == '\"') 
1226                                         break;
1227                                 if (*c == '\\' && (*++c == ' ')) 
1228                                         continue;
1229                                 if (*c <= ' ' || *c >= 127) 
1230                                         return FALSE;
1231                         }
1232                         if (!*c++) 
1233                                 return FALSE;
1234                         if (*c == '@') 
1235                                 break;
1236                         if (*c != '.') 
1237                                 return FALSE;
1238                         continue;
1239                 }
1240                 if (*c == '@') 
1241                         break;
1242                 if (*c <= ' ' || *c >= 127) 
1243                         return FALSE;
1244                 if (strchr(rfc822_specials, *c)) {
1245                         if (invalid_char_position)
1246                                 *invalid_char_position = c;
1247                         return FALSE;
1248                 }
1249         }
1250         if (c == email_address || *(c - 1) == '.') 
1251                 return FALSE;
1252
1253         /* next we validate the domain portion (name@domain) */
1254         if (!*(domain = ++c)) 
1255                 return FALSE;
1256         do {
1257                 if (*c == '.') {
1258                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1259                                 return FALSE;
1260                         count++;
1261                 }
1262                 if (*c <= ' ' || *c >= 127) 
1263                         return FALSE;
1264                 if (strchr(rfc822_specials, *c)) {
1265                         if (invalid_char_position)
1266                                 *invalid_char_position = c;
1267                         return FALSE;
1268                 }
1269         } while (*++c);
1270
1271         return (count >= 1) ? TRUE : FALSE;
1272 }
1273
1274 gboolean 
1275 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1276 {
1277         gchar *stripped, *current;
1278         gchar *right_part;
1279         gboolean has_error = FALSE;
1280
1281         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1282                 return TRUE;
1283         stripped = g_strdup (recipient);
1284         stripped = g_strstrip (stripped);
1285         current = stripped;
1286
1287         if (*current == '\0') {
1288                 g_free (stripped);
1289                 return FALSE;
1290         }
1291
1292         /* quoted string */
1293         if (*current == '\"') {
1294                 current = g_utf8_next_char (current);
1295                 has_error = TRUE;
1296                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1297                         if (*current == '\\') {
1298                                 /* TODO: This causes a warning, which breaks the build, 
1299                                  * because a gchar cannot be < 0.
1300                                  * murrayc. 
1301                                 if (current[1] <0) {
1302                                         has_error = TRUE;
1303                                         break;
1304                                 }
1305                                 */
1306                         } else if (*current == '\"') {
1307                                 has_error = FALSE;
1308                                 current = g_utf8_next_char (current);
1309                                 break;
1310                         }
1311                 }
1312         } else {
1313                 has_error = TRUE;
1314                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1315                         if (*current == '<') {
1316                                 has_error = FALSE;
1317                                 break;
1318                         }
1319                 }
1320         }
1321                 
1322         if (has_error) {
1323                 g_free (stripped);
1324                 return FALSE;
1325         }
1326
1327         right_part = g_strdup (current);
1328         g_free (stripped);
1329         right_part = g_strstrip (right_part);
1330
1331         if (g_str_has_prefix (right_part, "<") &&
1332             g_str_has_suffix (right_part, ">")) {
1333                 gchar *address;
1334                 gboolean valid;
1335
1336                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1337                 g_free (right_part);
1338                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1339                 g_free (address);
1340                 return valid;
1341         } else {
1342                 g_free (right_part);
1343                 return FALSE;
1344         }
1345 }
1346
1347
1348 gchar *
1349 modest_text_utils_get_display_size (guint64 size)
1350 {
1351         const guint KB=1024;
1352         const guint MB=1024 * KB;
1353         const guint GB=1024 * MB;
1354
1355         if (size == 0)
1356                 return g_strdup_printf(_FM("sfil_li_size_kb"), 0);
1357         if (0 < size && size < KB)
1358                 return g_strdup_printf (_FM("sfil_li_size_kb"), 1);
1359         else if (KB <= size && size < 100 * KB)
1360                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB);
1361         else if (100*KB <= size && size < MB)
1362                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB);
1363         else if (MB <= size && size < 10*MB)
1364                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1365         else if (10*MB <= size && size < GB)
1366                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB);
1367         else
1368                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); 
1369 }
1370
1371 static gchar *
1372 get_email_from_address (const gchar * address)
1373 {
1374         gchar *left_limit, *right_limit;
1375
1376         left_limit = strstr (address, "<");
1377         right_limit = g_strrstr (address, ">");
1378
1379         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1380                 return g_strdup (address);
1381         else
1382                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1383 }
1384
1385 gchar *      
1386 modest_text_utils_get_color_string (GdkColor *color)
1387 {
1388
1389         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1390                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1391                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1392                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1393                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1394                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1395                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1396 }
1397
1398 gchar *
1399 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1400 {
1401         GtkTextIter start, end;
1402         gchar *slice, *current;
1403         GString *result = g_string_new ("");
1404
1405         g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), NULL);
1406
1407         gtk_text_buffer_get_start_iter (buffer, &start);
1408         gtk_text_buffer_get_end_iter (buffer, &end);
1409
1410         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1411         current = slice;
1412
1413         while (current && current != '\0') {
1414                 if (g_utf8_get_char (current) == 0xFFFC) {
1415                         result = g_string_append_c (result, ' ');
1416                         current = g_utf8_next_char (current);
1417                 } else {
1418                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1419                         if (next == NULL) {
1420                                 result = g_string_append (result, current);
1421                         } else {
1422                                 result = g_string_append_len (result, current, next - current);
1423                         }
1424                         current = next;
1425                 }
1426         }
1427         g_free (slice);
1428
1429         return g_string_free (result, FALSE);
1430         
1431 }
1432
1433 gboolean
1434 modest_text_utils_is_forbidden_char (const gchar character,
1435                                      ModestTextUtilsForbiddenCharType type)
1436 {
1437         gint i, len;
1438         const gchar *forbidden_chars = NULL;
1439         
1440         /* We need to get the length in the switch because the
1441            compiler needs to know the size at compile time */
1442         switch (type) {
1443         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1444                 forbidden_chars = account_title_forbidden_chars;
1445                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1446                 break;
1447         case FOLDER_NAME_FORBIDDEN_CHARS:
1448                 forbidden_chars = folder_name_forbidden_chars;
1449                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1450                 break;
1451         case USER_NAME_FORBIDDEN_NAMES:
1452                 forbidden_chars = user_name_forbidden_chars;
1453                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1454                 break;
1455         default:
1456                 g_return_val_if_reached (TRUE);
1457         }
1458
1459         for (i = 0; i < len ; i++)
1460                 if (forbidden_chars[i] == character)
1461                         return TRUE;
1462
1463         return FALSE; /* it's valid! */
1464 }