5e24bc649a3604032b603ce15295a23830c02662
[claws.git] / src / common / utils.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2015 Hiroyuki Yamamoto & The Claws Mail Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * The code of the g_utf8_substring function below is owned by
19  * Matthias Clasen <matthiasc@src.gnome.org>/<mclasen@redhat.com>
20  * and is got from GLIB 2.30: https://git.gnome.org/browse/glib/commit/
21  *  ?h=glib-2-30&id=9eb65dd3ed5e1a9638595cbe10699c7606376511
22  *
23  * GLib 2.30 is licensed under GPL v2 or later and:
24  * Copyright (C) 1999 Tom Tromey
25  * Copyright (C) 2000 Red Hat, Inc.
26  *
27  * https://git.gnome.org/browse/glib/tree/glib/gutf8.c
28  *  ?h=glib-2-30&id=9eb65dd3ed5e1a9638595cbe10699c7606376511
29  */
30
31 #ifdef HAVE_CONFIG_H
32 #  include "config.h"
33 #include "claws-features.h"
34 #endif
35
36 #include "defs.h"
37
38 #include <glib.h>
39 #include <gio/gio.h>
40
41 #include <glib/gi18n.h>
42
43 #ifdef USE_PTHREAD
44 #include <pthread.h>
45 #endif
46
47 #include <stdio.h>
48 #include <string.h>
49 #include <ctype.h>
50 #include <errno.h>
51 #include <sys/param.h>
52 #ifndef G_OS_WIN32
53 #include <sys/socket.h>
54 #endif
55
56 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
57 #  include <wchar.h>
58 #  include <wctype.h>
59 #endif
60 #include <stdlib.h>
61 #include <sys/stat.h>
62 #include <unistd.h>
63 #include <stdarg.h>
64 #include <sys/types.h>
65 #if HAVE_SYS_WAIT_H
66 #  include <sys/wait.h>
67 #endif
68 #include <dirent.h>
69 #include <time.h>
70 #include <regex.h>
71
72 #ifdef G_OS_UNIX
73 #include <sys/utsname.h>
74 #endif
75
76 #include <fcntl.h>
77
78 #ifdef G_OS_WIN32
79 #  include <direct.h>
80 #  include <io.h>
81 #  include <w32lib.h>
82 #endif
83
84 #include "utils.h"
85 #include "socket.h"
86 #include "../codeconv.h"
87 #include "tlds.h"
88
89 #define BUFFSIZE        8192
90
91 static gboolean debug_mode = FALSE;
92 #ifdef G_OS_WIN32
93 static GSList *tempfiles=NULL;
94 #endif
95
96 #if !GLIB_CHECK_VERSION(2, 26, 0)
97 guchar *g_base64_decode_wa(const gchar *text, gsize *out_len)
98 {
99         guchar *ret;
100         gsize input_length;
101         gint state = 0;
102         guint save = 0;
103
104         input_length = strlen(text);
105
106         ret = g_malloc0((input_length / 4) * 3 + 1);
107
108         *out_len = g_base64_decode_step(text, input_length, ret, &state, &save);
109
110         return ret;
111 }
112 #endif
113
114 /* Return true if we are running as root.  This function should beused
115    instead of getuid () == 0.  */
116 gboolean superuser_p (void)
117 {
118 #ifdef G_OS_WIN32
119   return w32_is_administrator ();
120 #else
121   return !getuid();
122 #endif  
123 }
124
125 GSList *slist_copy_deep(GSList *list, GCopyFunc func)
126 {
127 #if GLIB_CHECK_VERSION(2, 34, 0)
128         return g_slist_copy_deep(list, func, NULL);
129 #else
130         GSList *res = g_slist_copy(list);
131         GSList *walk = res;
132         while (walk) {
133                 walk->data = func(walk->data, NULL);
134                 walk = walk->next;
135         }
136         return res;
137 #endif
138 }
139
140 void list_free_strings(GList *list)
141 {
142         list = g_list_first(list);
143
144         while (list != NULL) {
145                 g_free(list->data);
146                 list = list->next;
147         }
148 }
149
150 void slist_free_strings(GSList *list)
151 {
152         while (list != NULL) {
153                 g_free(list->data);
154                 list = list->next;
155         }
156 }
157
158 void slist_free_strings_full(GSList *list)
159 {
160 #if GLIB_CHECK_VERSION(2,28,0)
161         g_slist_free_full(list, (GDestroyNotify)g_free);
162 #else
163         g_slist_foreach(list, (GFunc)g_free, NULL);
164         g_slist_free(list);
165 #endif
166 }
167
168 static void hash_free_strings_func(gpointer key, gpointer value, gpointer data)
169 {
170         g_free(key);
171 }
172
173 void hash_free_strings(GHashTable *table)
174 {
175         g_hash_table_foreach(table, hash_free_strings_func, NULL);
176 }
177
178 gint str_case_equal(gconstpointer v, gconstpointer v2)
179 {
180         return g_ascii_strcasecmp((const gchar *)v, (const gchar *)v2) == 0;
181 }
182
183 guint str_case_hash(gconstpointer key)
184 {
185         const gchar *p = key;
186         guint h = *p;
187
188         if (h) {
189                 h = g_ascii_tolower(h);
190                 for (p += 1; *p != '\0'; p++)
191                         h = (h << 5) - h + g_ascii_tolower(*p);
192         }
193
194         return h;
195 }
196
197 void ptr_array_free_strings(GPtrArray *array)
198 {
199         gint i;
200         gchar *str;
201
202         cm_return_if_fail(array != NULL);
203
204         for (i = 0; i < array->len; i++) {
205                 str = g_ptr_array_index(array, i);
206                 g_free(str);
207         }
208 }
209
210 gint to_number(const gchar *nstr)
211 {
212         register const gchar *p;
213
214         if (*nstr == '\0') return -1;
215
216         for (p = nstr; *p != '\0'; p++)
217                 if (!g_ascii_isdigit(*p)) return -1;
218
219         return atoi(nstr);
220 }
221
222 /* convert integer into string,
223    nstr must be not lower than 11 characters length */
224 gchar *itos_buf(gchar *nstr, gint n)
225 {
226         g_snprintf(nstr, 11, "%d", n);
227         return nstr;
228 }
229
230 /* convert integer into string */
231 gchar *itos(gint n)
232 {
233         static gchar nstr[11];
234
235         return itos_buf(nstr, n);
236 }
237
238 #define divide(num,divisor,i,d)         \
239 {                                       \
240         i = num >> divisor;             \
241         d = num & ((1<<divisor)-1);     \
242         d = (d*100) >> divisor;         \
243 }
244
245
246 /*!
247  * \brief Convert a given size in bytes in a human-readable string
248  *
249  * \param size  The size expressed in bytes to convert in string
250  * \return      The string that respresents the size in an human-readable way
251  */
252 gchar *to_human_readable(goffset size)
253 {
254         static gchar str[14];
255         static gchar *b_format = NULL, *kb_format = NULL, 
256                      *mb_format = NULL, *gb_format = NULL;
257         register int t = 0, r = 0;
258         if (b_format == NULL) {
259                 b_format  = _("%dB");
260                 kb_format = _("%d.%02dKB");
261                 mb_format = _("%d.%02dMB");
262                 gb_format = _("%.2fGB");
263         }
264         
265         if (size < (goffset)1024) {
266                 g_snprintf(str, sizeof(str), b_format, (gint)size);
267                 return str;
268         } else if (size >> 10 < (goffset)1024) {
269                 divide(size, 10, t, r);
270                 g_snprintf(str, sizeof(str), kb_format, t, r);
271                 return str;
272         } else if (size >> 20 < (goffset)1024) {
273                 divide(size, 20, t, r);
274                 g_snprintf(str, sizeof(str), mb_format, t, r);
275                 return str;
276         } else {
277                 g_snprintf(str, sizeof(str), gb_format, (gfloat)(size >> 30));
278                 return str;
279         }
280 }
281
282 /* strcmp with NULL-checking */
283 gint strcmp2(const gchar *s1, const gchar *s2)
284 {
285         if (s1 == NULL || s2 == NULL)
286                 return -1;
287         else
288                 return strcmp(s1, s2);
289 }
290 /* strstr with NULL-checking */
291 gchar *strstr2(const gchar *s1, const gchar *s2)
292 {
293         if (s1 == NULL || s2 == NULL)
294                 return NULL;
295         else
296                 return strstr(s1, s2);
297 }
298 /* compare paths */
299 gint path_cmp(const gchar *s1, const gchar *s2)
300 {
301         gint len1, len2;
302         int rc;
303 #ifdef G_OS_WIN32
304         gchar *s1buf, *s2buf;
305 #endif
306
307         if (s1 == NULL || s2 == NULL) return -1;
308         if (*s1 == '\0' || *s2 == '\0') return -1;
309
310 #ifdef G_OS_WIN32
311         s1buf = g_strdup (s1);
312         s2buf = g_strdup (s2);
313         subst_char (s1buf, '/', G_DIR_SEPARATOR);
314         subst_char (s2buf, '/', G_DIR_SEPARATOR);
315         s1 = s1buf;
316         s2 = s2buf;
317 #endif /* !G_OS_WIN32 */
318
319         len1 = strlen(s1);
320         len2 = strlen(s2);
321
322         if (s1[len1 - 1] == G_DIR_SEPARATOR) len1--;
323         if (s2[len2 - 1] == G_DIR_SEPARATOR) len2--;
324
325         rc = strncmp(s1, s2, MAX(len1, len2));
326 #ifdef G_OS_WIN32
327         g_free (s1buf);
328         g_free (s2buf);
329 #endif /* !G_OS_WIN32 */
330         return rc;
331 }
332
333 /* remove trailing return code */
334 gchar *strretchomp(gchar *str)
335 {
336         register gchar *s;
337
338         if (!*str) return str;
339
340         for (s = str + strlen(str) - 1;
341              s >= str && (*s == '\n' || *s == '\r');
342              s--)
343                 *s = '\0';
344
345         return str;
346 }
347
348 /* remove trailing character */
349 gchar *strtailchomp(gchar *str, gchar tail_char)
350 {
351         register gchar *s;
352
353         if (!*str) return str;
354         if (tail_char == '\0') return str;
355
356         for (s = str + strlen(str) - 1; s >= str && *s == tail_char; s--)
357                 *s = '\0';
358
359         return str;
360 }
361
362 /* remove CR (carriage return) */
363 gchar *strcrchomp(gchar *str)
364 {
365         register gchar *s;
366
367         if (!*str) return str;
368
369         s = str + strlen(str) - 1;
370         if (*s == '\n' && s > str && *(s - 1) == '\r') {
371                 *(s - 1) = '\n';
372                 *s = '\0';
373         }
374
375         return str;
376 }
377
378 gint file_strip_crs(const gchar *file)
379 {
380         FILE *fp = NULL, *outfp = NULL;
381         gchar buf[4096];
382         gchar *out = get_tmp_file();
383         if (file == NULL)
384                 goto freeout;
385
386         fp = g_fopen(file, "rb");
387         if (!fp)
388                 goto freeout;
389
390         outfp = g_fopen(out, "wb");
391         if (!outfp) {
392                 fclose(fp);
393                 goto freeout;
394         }
395
396         while (fgets(buf, sizeof (buf), fp) != NULL) {
397                 strcrchomp(buf);
398                 if (fputs(buf, outfp) == EOF) {
399                         fclose(fp);
400                         fclose(outfp);
401                         goto unlinkout;
402                 }
403         }
404
405         fclose(fp);
406         if (fclose(outfp) == EOF) {
407                 goto unlinkout;
408         }
409         
410         if (move_file(out, file, TRUE) < 0)
411                 goto unlinkout;
412         
413         g_free(out);
414         return 0;
415 unlinkout:
416         claws_unlink(out);
417 freeout:
418         g_free(out);
419         return -1;
420 }
421
422 /* Similar to `strstr' but this function ignores the case of both strings.  */
423 gchar *strcasestr(const gchar *haystack, const gchar *needle)
424 {
425         size_t haystack_len = strlen(haystack);
426
427         return strncasestr(haystack, haystack_len, needle);
428 }
429
430 gchar *strncasestr(const gchar *haystack, gint haystack_len, const gchar *needle)
431 {
432         register size_t needle_len;
433
434         needle_len   = strlen(needle);
435
436         if (haystack_len < needle_len || needle_len == 0)
437                 return NULL;
438
439         while (haystack_len >= needle_len) {
440                 if (!g_ascii_strncasecmp(haystack, needle, needle_len))
441                         return (gchar *)haystack;
442                 else {
443                         haystack++;
444                         haystack_len--;
445                 }
446         }
447
448         return NULL;
449 }
450
451 gpointer my_memmem(gconstpointer haystack, size_t haystacklen,
452                    gconstpointer needle, size_t needlelen)
453 {
454         const gchar *haystack_ = (const gchar *)haystack;
455         const gchar *needle_ = (const gchar *)needle;
456         const gchar *haystack_cur = (const gchar *)haystack;
457         size_t haystack_left = haystacklen;
458
459         if (needlelen == 1)
460                 return memchr(haystack_, *needle_, haystacklen);
461
462         while ((haystack_cur = memchr(haystack_cur, *needle_, haystack_left))
463                != NULL) {
464                 if (haystacklen - (haystack_cur - haystack_) < needlelen)
465                         break;
466                 if (memcmp(haystack_cur + 1, needle_ + 1, needlelen - 1) == 0)
467                         return (gpointer)haystack_cur;
468                 else{
469                         haystack_cur++;
470                         haystack_left = haystacklen - (haystack_cur - haystack_);
471                 }
472         }
473
474         return NULL;
475 }
476
477 /* Copy no more than N characters of SRC to DEST, with NULL terminating.  */
478 gchar *strncpy2(gchar *dest, const gchar *src, size_t n)
479 {
480         register const gchar *s = src;
481         register gchar *d = dest;
482
483         while (--n && *s)
484                 *d++ = *s++;
485         *d = '\0';
486
487         return dest;
488 }
489
490
491 /* Examine if next block is non-ASCII string */
492 gboolean is_next_nonascii(const gchar *s)
493 {
494         const gchar *p;
495
496         /* skip head space */
497         for (p = s; *p != '\0' && g_ascii_isspace(*p); p++)
498                 ;
499         for (; *p != '\0' && !g_ascii_isspace(*p); p++) {
500                 if (*(guchar *)p > 127 || *(guchar *)p < 32)
501                         return TRUE;
502         }
503
504         return FALSE;
505 }
506
507 gint get_next_word_len(const gchar *s)
508 {
509         gint len = 0;
510
511         for (; *s != '\0' && !g_ascii_isspace(*s); s++, len++)
512                 ;
513
514         return len;
515 }
516
517 static void trim_subject_for_compare(gchar *str)
518 {
519         gchar *srcp;
520
521         eliminate_parenthesis(str, '[', ']');
522         eliminate_parenthesis(str, '(', ')');
523         g_strstrip(str);
524
525         srcp = str + subject_get_prefix_length(str);
526         if (srcp != str)
527                 memmove(str, srcp, strlen(srcp) + 1);
528 }
529
530 static void trim_subject_for_sort(gchar *str)
531 {
532         gchar *srcp;
533
534         g_strstrip(str);
535
536         srcp = str + subject_get_prefix_length(str);
537         if (srcp != str)
538                 memmove(str, srcp, strlen(srcp) + 1);
539 }
540
541 /* compare subjects */
542 gint subject_compare(const gchar *s1, const gchar *s2)
543 {
544         gchar *str1, *str2;
545
546         if (!s1 || !s2) return -1;
547         if (!*s1 || !*s2) return -1;
548
549         Xstrdup_a(str1, s1, return -1);
550         Xstrdup_a(str2, s2, return -1);
551
552         trim_subject_for_compare(str1);
553         trim_subject_for_compare(str2);
554
555         if (!*str1 || !*str2) return -1;
556
557         return strcmp(str1, str2);
558 }
559
560 gint subject_compare_for_sort(const gchar *s1, const gchar *s2)
561 {
562         gchar *str1, *str2;
563
564         if (!s1 || !s2) return -1;
565
566         Xstrdup_a(str1, s1, return -1);
567         Xstrdup_a(str2, s2, return -1);
568
569         trim_subject_for_sort(str1);
570         trim_subject_for_sort(str2);
571
572         return g_utf8_collate(str1, str2);
573 }
574
575 void trim_subject(gchar *str)
576 {
577         register gchar *srcp;
578         gchar op, cl;
579         gint in_brace;
580
581         g_strstrip(str);
582
583         srcp = str + subject_get_prefix_length(str);
584
585         if (*srcp == '[') {
586                 op = '[';
587                 cl = ']';
588         } else if (*srcp == '(') {
589                 op = '(';
590                 cl = ')';
591         } else
592                 op = 0;
593
594         if (op) {
595                 ++srcp;
596                 in_brace = 1;
597                 while (*srcp) {
598                         if (*srcp == op)
599                                 in_brace++;
600                         else if (*srcp == cl)
601                                 in_brace--;
602                         srcp++;
603                         if (in_brace == 0)
604                                 break;
605                 }
606         }
607         while (g_ascii_isspace(*srcp)) srcp++;
608         memmove(str, srcp, strlen(srcp) + 1);
609 }
610
611 void eliminate_parenthesis(gchar *str, gchar op, gchar cl)
612 {
613         register gchar *srcp, *destp;
614         gint in_brace;
615
616         destp = str;
617
618         while ((destp = strchr(destp, op))) {
619                 in_brace = 1;
620                 srcp = destp + 1;
621                 while (*srcp) {
622                         if (*srcp == op)
623                                 in_brace++;
624                         else if (*srcp == cl)
625                                 in_brace--;
626                         srcp++;
627                         if (in_brace == 0)
628                                 break;
629                 }
630                 while (g_ascii_isspace(*srcp)) srcp++;
631                 memmove(destp, srcp, strlen(srcp) + 1);
632         }
633 }
634
635 void extract_parenthesis(gchar *str, gchar op, gchar cl)
636 {
637         register gchar *srcp, *destp;
638         gint in_brace;
639
640         destp = str;
641
642         while ((srcp = strchr(destp, op))) {
643                 if (destp > str)
644                         *destp++ = ' ';
645                 memmove(destp, srcp + 1, strlen(srcp));
646                 in_brace = 1;
647                 while(*destp) {
648                         if (*destp == op)
649                                 in_brace++;
650                         else if (*destp == cl)
651                                 in_brace--;
652
653                         if (in_brace == 0)
654                                 break;
655
656                         destp++;
657                 }
658         }
659         *destp = '\0';
660 }
661
662 static void extract_parenthesis_with_skip_quote(gchar *str, gchar quote_chr,
663                                          gchar op, gchar cl)
664 {
665         register gchar *srcp, *destp;
666         gint in_brace;
667         gboolean in_quote = FALSE;
668
669         destp = str;
670
671         while ((srcp = strchr_with_skip_quote(destp, quote_chr, op))) {
672                 if (destp > str)
673                         *destp++ = ' ';
674                 memmove(destp, srcp + 1, strlen(srcp));
675                 in_brace = 1;
676                 while(*destp) {
677                         if (*destp == op && !in_quote)
678                                 in_brace++;
679                         else if (*destp == cl && !in_quote)
680                                 in_brace--;
681                         else if (*destp == quote_chr)
682                                 in_quote ^= TRUE;
683
684                         if (in_brace == 0)
685                                 break;
686
687                         destp++;
688                 }
689         }
690         *destp = '\0';
691 }
692
693 void extract_quote(gchar *str, gchar quote_chr)
694 {
695         register gchar *p;
696
697         if ((str = strchr(str, quote_chr))) {
698                 p = str;
699                 while ((p = strchr(p + 1, quote_chr)) && (p[-1] == '\\')) {
700                         memmove(p - 1, p, strlen(p) + 1);
701                         p--;
702                 }
703                 if(p) {
704                         *p = '\0';
705                         memmove(str, str + 1, p - str);
706                 }
707         }
708 }
709
710 /* Returns a newly allocated string with all quote_chr not at the beginning
711    or the end of str escaped with '\' or the given str if not required. */
712 gchar *escape_internal_quotes(gchar *str, gchar quote_chr)
713 {
714         register gchar *p, *q;
715         gchar *qstr;
716         int k = 0, l = 0;
717
718         if (str == NULL || *str == '\0')
719                 return str;
720
721         /* search for unescaped quote_chr */
722         p = str;
723         if (*p == quote_chr)
724                 ++p, ++l;
725         while (*p) {
726                 if (*p == quote_chr && *(p - 1) != '\\' && *(p + 1) != '\0')
727                         ++k;
728                 ++p, ++l;
729         }
730         if (!k) /* nothing to escape */
731                 return str;
732
733         /* unescaped quote_chr found */
734         qstr = g_malloc(l + k + 1);
735         p = str;
736         q = qstr;
737         if (*p == quote_chr) {
738                 *q = quote_chr;
739                 ++p, ++q;
740         }
741         while (*p) {
742                 if (*p == quote_chr && *(p - 1) != '\\' && *(p + 1) != '\0')
743                         *q++ = '\\';
744                 *q++ = *p++;
745         }
746         *q = '\0';
747
748         return qstr;
749 }
750
751 void eliminate_address_comment(gchar *str)
752 {
753         register gchar *srcp, *destp;
754         gint in_brace;
755
756         destp = str;
757
758         while ((destp = strchr(destp, '"'))) {
759                 if ((srcp = strchr(destp + 1, '"'))) {
760                         srcp++;
761                         if (*srcp == '@') {
762                                 destp = srcp + 1;
763                         } else {
764                                 while (g_ascii_isspace(*srcp)) srcp++;
765                                 memmove(destp, srcp, strlen(srcp) + 1);
766                         }
767                 } else {
768                         *destp = '\0';
769                         break;
770                 }
771         }
772
773         destp = str;
774
775         while ((destp = strchr_with_skip_quote(destp, '"', '('))) {
776                 in_brace = 1;
777                 srcp = destp + 1;
778                 while (*srcp) {
779                         if (*srcp == '(')
780                                 in_brace++;
781                         else if (*srcp == ')')
782                                 in_brace--;
783                         srcp++;
784                         if (in_brace == 0)
785                                 break;
786                 }
787                 while (g_ascii_isspace(*srcp)) srcp++;
788                 memmove(destp, srcp, strlen(srcp) + 1);
789         }
790 }
791
792 gchar *strchr_with_skip_quote(const gchar *str, gint quote_chr, gint c)
793 {
794         gboolean in_quote = FALSE;
795
796         while (*str) {
797                 if (*str == c && !in_quote)
798                         return (gchar *)str;
799                 if (*str == quote_chr)
800                         in_quote ^= TRUE;
801                 str++;
802         }
803
804         return NULL;
805 }
806
807 void extract_address(gchar *str)
808 {
809         cm_return_if_fail(str != NULL);
810         eliminate_address_comment(str);
811         if (strchr_with_skip_quote(str, '"', '<'))
812                 extract_parenthesis_with_skip_quote(str, '"', '<', '>');
813         g_strstrip(str);
814 }
815
816 void extract_list_id_str(gchar *str)
817 {
818         if (strchr_with_skip_quote(str, '"', '<'))
819                 extract_parenthesis_with_skip_quote(str, '"', '<', '>');
820         g_strstrip(str);
821 }
822
823 static GSList *address_list_append_real(GSList *addr_list, const gchar *str, gboolean removecomments)
824 {
825         gchar *work;
826         gchar *workp;
827
828         if (!str) return addr_list;
829
830         Xstrdup_a(work, str, return addr_list);
831
832         if (removecomments)
833                 eliminate_address_comment(work);
834         workp = work;
835
836         while (workp && *workp) {
837                 gchar *p, *next;
838
839                 if ((p = strchr_with_skip_quote(workp, '"', ','))) {
840                         *p = '\0';
841                         next = p + 1;
842                 } else
843                         next = NULL;
844
845                 if (removecomments && strchr_with_skip_quote(workp, '"', '<'))
846                         extract_parenthesis_with_skip_quote
847                                 (workp, '"', '<', '>');
848
849                 g_strstrip(workp);
850                 if (*workp)
851                         addr_list = g_slist_append(addr_list, g_strdup(workp));
852
853                 workp = next;
854         }
855
856         return addr_list;
857 }
858
859 GSList *address_list_append(GSList *addr_list, const gchar *str)
860 {
861         return address_list_append_real(addr_list, str, TRUE);
862 }
863
864 GSList *address_list_append_with_comments(GSList *addr_list, const gchar *str)
865 {
866         return address_list_append_real(addr_list, str, FALSE);
867 }
868
869 GSList *references_list_prepend(GSList *msgid_list, const gchar *str)
870 {
871         const gchar *strp;
872
873         if (!str) return msgid_list;
874         strp = str;
875
876         while (strp && *strp) {
877                 const gchar *start, *end;
878                 gchar *msgid;
879
880                 if ((start = strchr(strp, '<')) != NULL) {
881                         end = strchr(start + 1, '>');
882                         if (!end) break;
883                 } else
884                         break;
885
886                 msgid = g_strndup(start + 1, end - start - 1);
887                 g_strstrip(msgid);
888                 if (*msgid)
889                         msgid_list = g_slist_prepend(msgid_list, msgid);
890                 else
891                         g_free(msgid);
892
893                 strp = end + 1;
894         }
895
896         return msgid_list;
897 }
898
899 GSList *references_list_append(GSList *msgid_list, const gchar *str)
900 {
901         GSList *list;
902
903         list = references_list_prepend(NULL, str);
904         list = g_slist_reverse(list);
905         msgid_list = g_slist_concat(msgid_list, list);
906
907         return msgid_list;
908 }
909
910 GSList *newsgroup_list_append(GSList *group_list, const gchar *str)
911 {
912         gchar *work;
913         gchar *workp;
914
915         if (!str) return group_list;
916
917         Xstrdup_a(work, str, return group_list);
918
919         workp = work;
920
921         while (workp && *workp) {
922                 gchar *p, *next;
923
924                 if ((p = strchr_with_skip_quote(workp, '"', ','))) {
925                         *p = '\0';
926                         next = p + 1;
927                 } else
928                         next = NULL;
929
930                 g_strstrip(workp);
931                 if (*workp)
932                         group_list = g_slist_append(group_list,
933                                                     g_strdup(workp));
934
935                 workp = next;
936         }
937
938         return group_list;
939 }
940
941 GList *add_history(GList *list, const gchar *str)
942 {
943         GList *old;
944         gchar *oldstr;
945
946         cm_return_val_if_fail(str != NULL, list);
947
948         old = g_list_find_custom(list, (gpointer)str, (GCompareFunc)strcmp2);
949         if (old) {
950                 oldstr = old->data;
951                 list = g_list_remove(list, old->data);
952                 g_free(oldstr);
953         } else if (g_list_length(list) >= MAX_HISTORY_SIZE) {
954                 GList *last;
955
956                 last = g_list_last(list);
957                 if (last) {
958                         oldstr = last->data;
959                         list = g_list_remove(list, last->data);
960                         g_free(oldstr);
961                 }
962         }
963
964         list = g_list_prepend(list, g_strdup(str));
965
966         return list;
967 }
968
969 void remove_return(gchar *str)
970 {
971         register gchar *p = str;
972
973         while (*p) {
974                 if (*p == '\n' || *p == '\r')
975                         memmove(p, p + 1, strlen(p));
976                 else
977                         p++;
978         }
979 }
980
981 void remove_space(gchar *str)
982 {
983         register gchar *p = str;
984         register gint spc;
985
986         while (*p) {
987                 spc = 0;
988                 while (g_ascii_isspace(*(p + spc)))
989                         spc++;
990                 if (spc)
991                         memmove(p, p + spc, strlen(p + spc) + 1);
992                 else
993                         p++;
994         }
995 }
996
997 void unfold_line(gchar *str)
998 {
999         register gchar *ch;
1000         register gunichar c;
1001         register gint len;
1002
1003         ch = str; /* iterator for source string */
1004
1005         while (*ch != 0) {
1006                 c = g_utf8_get_char_validated(ch, -1);
1007
1008                 if (c < 0) {
1009                         /* non-unicode byte, move past it */
1010                         ch++;
1011                         continue;
1012                 }
1013
1014                 len = g_unichar_to_utf8(c, NULL);
1015
1016                 if (!g_unichar_isdefined(c) || !g_unichar_isprint(c) ||
1017                                 g_unichar_isspace(c)) {
1018                         /* replace anything bad or whitespacey with a single space */
1019                         *ch = ' ';
1020                         ch++;
1021                         if (len > 1) {
1022                                 /* move rest of the string forwards, since we just replaced
1023                                  * a multi-byte sequence with one byte */
1024                                 memmove(ch, ch + len-1, strlen(ch + len-1) + 1);
1025                         }
1026                 } else {
1027                         /* A valid unicode character, copy it. */
1028                         ch += len;
1029                 }
1030         }
1031 }
1032
1033 void subst_char(gchar *str, gchar orig, gchar subst)
1034 {
1035         register gchar *p = str;
1036
1037         while (*p) {
1038                 if (*p == orig)
1039                         *p = subst;
1040                 p++;
1041         }
1042 }
1043
1044 void subst_chars(gchar *str, gchar *orig, gchar subst)
1045 {
1046         register gchar *p = str;
1047
1048         while (*p) {
1049                 if (strchr(orig, *p) != NULL)
1050                         *p = subst;
1051                 p++;
1052         }
1053 }
1054
1055 void subst_for_filename(gchar *str)
1056 {
1057         if (!str)
1058                 return;
1059 #ifdef G_OS_WIN32
1060         subst_chars(str, "\t\r\n\\/*:", '_');
1061 #else
1062         subst_chars(str, "\t\r\n\\/*", '_');
1063 #endif
1064 }
1065
1066 void subst_for_shellsafe_filename(gchar *str)
1067 {
1068         if (!str)
1069                 return;
1070         subst_for_filename(str);
1071         subst_chars(str, " \"'|&;()<>'!{}[]",'_');
1072 }
1073
1074 gboolean is_ascii_str(const gchar *str)
1075 {
1076         const guchar *p = (const guchar *)str;
1077
1078         while (*p != '\0') {
1079                 if (*p != '\t' && *p != ' ' &&
1080                     *p != '\r' && *p != '\n' &&
1081                     (*p < 32 || *p >= 127))
1082                         return FALSE;
1083                 p++;
1084         }
1085
1086         return TRUE;
1087 }
1088
1089 static const gchar * line_has_quote_char_last(const gchar * str, const gchar *quote_chars)
1090 {
1091         gchar * position = NULL;
1092         gchar * tmp_pos = NULL;
1093         int i;
1094
1095         if (quote_chars == NULL)
1096                 return NULL;
1097
1098         for (i = 0; i < strlen(quote_chars); i++) {
1099                 tmp_pos = strrchr (str, quote_chars[i]);
1100                 if(position == NULL
1101                    || (tmp_pos != NULL && position <= tmp_pos) )
1102                         position = tmp_pos;
1103         }
1104         return position;
1105 }
1106
1107 gint get_quote_level(const gchar *str, const gchar *quote_chars)
1108 {
1109         const gchar *first_pos;
1110         const gchar *last_pos;
1111         const gchar *p = str;
1112         gint quote_level = -1;
1113
1114         /* speed up line processing by only searching to the last '>' */
1115         if ((first_pos = line_has_quote_char(str, quote_chars)) != NULL) {
1116                 /* skip a line if it contains a '<' before the initial '>' */
1117                 if (memchr(str, '<', first_pos - str) != NULL)
1118                         return -1;
1119                 last_pos = line_has_quote_char_last(first_pos, quote_chars);
1120         } else
1121                 return -1;
1122
1123         while (p <= last_pos) {
1124                 while (p < last_pos) {
1125                         if (g_ascii_isspace(*p))
1126                                 p++;
1127                         else
1128                                 break;
1129                 }
1130
1131                 if (strchr(quote_chars, *p))
1132                         quote_level++;
1133                 else if (*p != '-' && !g_ascii_isspace(*p) && p <= last_pos) {
1134                         /* any characters are allowed except '-','<' and space */
1135                         while (*p != '-' && *p != '<'
1136                                && !strchr(quote_chars, *p)
1137                                && !g_ascii_isspace(*p)
1138                                && p < last_pos)
1139                                 p++;
1140                         if (strchr(quote_chars, *p))
1141                                 quote_level++;
1142                         else
1143                                 break;
1144                 }
1145
1146                 p++;
1147         }
1148
1149         return quote_level;
1150 }
1151
1152 gint check_line_length(const gchar *str, gint max_chars, gint *line)
1153 {
1154         const gchar *p = str, *q;
1155         gint cur_line = 0, len;
1156
1157         while ((q = strchr(p, '\n')) != NULL) {
1158                 len = q - p + 1;
1159                 if (len > max_chars) {
1160                         if (line)
1161                                 *line = cur_line;
1162                         return -1;
1163                 }
1164                 p = q + 1;
1165                 ++cur_line;
1166         }
1167
1168         len = strlen(p);
1169         if (len > max_chars) {
1170                 if (line)
1171                         *line = cur_line;
1172                 return -1;
1173         }
1174
1175         return 0;
1176 }
1177
1178 const gchar * line_has_quote_char(const gchar * str, const gchar *quote_chars)
1179 {
1180         gchar * position = NULL;
1181         gchar * tmp_pos = NULL;
1182         int i;
1183
1184         if (quote_chars == NULL)
1185                 return FALSE;
1186
1187         for (i = 0; i < strlen(quote_chars); i++) {
1188                 tmp_pos = strchr (str,  quote_chars[i]);
1189                 if(position == NULL
1190                    || (tmp_pos != NULL && position >= tmp_pos) )
1191                         position = tmp_pos;
1192         }
1193         return position;
1194 }
1195
1196 static gchar *strstr_with_skip_quote(const gchar *haystack, const gchar *needle)
1197 {
1198         register guint haystack_len, needle_len;
1199         gboolean in_squote = FALSE, in_dquote = FALSE;
1200
1201         haystack_len = strlen(haystack);
1202         needle_len   = strlen(needle);
1203
1204         if (haystack_len < needle_len || needle_len == 0)
1205                 return NULL;
1206
1207         while (haystack_len >= needle_len) {
1208                 if (!in_squote && !in_dquote &&
1209                     !strncmp(haystack, needle, needle_len))
1210                         return (gchar *)haystack;
1211
1212                 /* 'foo"bar"' -> foo"bar"
1213                    "foo'bar'" -> foo'bar' */
1214                 if (*haystack == '\'') {
1215                         if (in_squote)
1216                                 in_squote = FALSE;
1217                         else if (!in_dquote)
1218                                 in_squote = TRUE;
1219                 } else if (*haystack == '\"') {
1220                         if (in_dquote)
1221                                 in_dquote = FALSE;
1222                         else if (!in_squote)
1223                                 in_dquote = TRUE;
1224                 } else if (*haystack == '\\') {
1225                         haystack++;
1226                         haystack_len--;
1227                 }
1228
1229                 haystack++;
1230                 haystack_len--;
1231         }
1232
1233         return NULL;
1234 }
1235
1236 gchar **strsplit_with_quote(const gchar *str, const gchar *delim,
1237                             gint max_tokens)
1238 {
1239         GSList *string_list = NULL, *slist;
1240         gchar **str_array, *s, *new_str;
1241         guint i, n = 1, len;
1242
1243         cm_return_val_if_fail(str != NULL, NULL);
1244         cm_return_val_if_fail(delim != NULL, NULL);
1245
1246         if (max_tokens < 1)
1247                 max_tokens = G_MAXINT;
1248
1249         s = strstr_with_skip_quote(str, delim);
1250         if (s) {
1251                 guint delimiter_len = strlen(delim);
1252
1253                 do {
1254                         len = s - str;
1255                         new_str = g_strndup(str, len);
1256
1257                         if (new_str[0] == '\'' || new_str[0] == '\"') {
1258                                 if (new_str[len - 1] == new_str[0]) {
1259                                         new_str[len - 1] = '\0';
1260                                         memmove(new_str, new_str + 1, len - 1);
1261                                 }
1262                         }
1263                         string_list = g_slist_prepend(string_list, new_str);
1264                         n++;
1265                         str = s + delimiter_len;
1266                         s = strstr_with_skip_quote(str, delim);
1267                 } while (--max_tokens && s);
1268         }
1269
1270         if (*str) {
1271                 new_str = g_strdup(str);
1272                 if (new_str[0] == '\'' || new_str[0] == '\"') {
1273                         len = strlen(str);
1274                         if (new_str[len - 1] == new_str[0]) {
1275                                 new_str[len - 1] = '\0';
1276                                 memmove(new_str, new_str + 1, len - 1);
1277                         }
1278                 }
1279                 string_list = g_slist_prepend(string_list, new_str);
1280                 n++;
1281         }
1282
1283         str_array = g_new(gchar*, n);
1284
1285         i = n - 1;
1286
1287         str_array[i--] = NULL;
1288         for (slist = string_list; slist; slist = slist->next)
1289                 str_array[i--] = slist->data;
1290
1291         g_slist_free(string_list);
1292
1293         return str_array;
1294 }
1295
1296 gchar *get_abbrev_newsgroup_name(const gchar *group, gint len)
1297 {
1298         gchar *abbrev_group;
1299         gchar *ap;
1300         const gchar *p = group;
1301         const gchar *last;
1302
1303         cm_return_val_if_fail(group != NULL, NULL);
1304
1305         last = group + strlen(group);
1306         abbrev_group = ap = g_malloc(strlen(group) + 1);
1307
1308         while (*p) {
1309                 while (*p == '.')
1310                         *ap++ = *p++;
1311                 if ((ap - abbrev_group) + (last - p) > len && strchr(p, '.')) {
1312                         *ap++ = *p++;
1313                         while (*p != '.') p++;
1314                 } else {
1315                         strcpy(ap, p);
1316                         return abbrev_group;
1317                 }
1318         }
1319
1320         *ap = '\0';
1321         return abbrev_group;
1322 }
1323
1324 gchar *trim_string(const gchar *str, gint len)
1325 {
1326         const gchar *p = str;
1327         gint mb_len;
1328         gchar *new_str;
1329         gint new_len = 0;
1330
1331         if (!str) return NULL;
1332         if (strlen(str) <= len)
1333                 return g_strdup(str);
1334         if (g_utf8_validate(str, -1, NULL) == FALSE)
1335                 return g_strdup(str);
1336
1337         while (*p != '\0') {
1338                 mb_len = g_utf8_skip[*(guchar *)p];
1339                 if (mb_len == 0)
1340                         break;
1341                 else if (new_len + mb_len > len)
1342                         break;
1343
1344                 new_len += mb_len;
1345                 p += mb_len;
1346         }
1347
1348         Xstrndup_a(new_str, str, new_len, return g_strdup(str));
1349         return g_strconcat(new_str, "...", NULL);
1350 }
1351
1352 GList *uri_list_extract_filenames(const gchar *uri_list)
1353 {
1354         GList *result = NULL;
1355         const gchar *p, *q;
1356         gchar *escaped_utf8uri;
1357
1358         p = uri_list;
1359
1360         while (p) {
1361                 if (*p != '#') {
1362                         while (g_ascii_isspace(*p)) p++;
1363                         if (!strncmp(p, "file:", 5)) {
1364                                 q = p;
1365                                 q += 5;
1366                                 while (*q && *q != '\n' && *q != '\r') q++;
1367
1368                                 if (q > p) {
1369                                         gchar *file, *locale_file = NULL;
1370                                         q--;
1371                                         while (q > p && g_ascii_isspace(*q))
1372                                                 q--;
1373                                         Xalloca(escaped_utf8uri, q - p + 2,
1374                                                 return result);
1375                                         Xalloca(file, q - p + 2,
1376                                                 return result);
1377                                         *file = '\0';
1378                                         strncpy(escaped_utf8uri, p, q - p + 1);
1379                                         escaped_utf8uri[q - p + 1] = '\0';
1380                                         decode_uri(file, escaped_utf8uri);
1381                     /*
1382                      * g_filename_from_uri() rejects escaped/locale encoded uri
1383                      * string which come from Nautilus.
1384                      */
1385 #ifndef G_OS_WIN32
1386                                         if (g_utf8_validate(file, -1, NULL))
1387                                                 locale_file
1388                                                         = conv_codeset_strdup(
1389                                                                 file + 5,
1390                                                                 CS_UTF_8,
1391                                                                 conv_get_locale_charset_str());
1392                                         if (!locale_file)
1393                                                 locale_file = g_strdup(file + 5);
1394 #else
1395                                         locale_file = g_filename_from_uri(escaped_utf8uri, NULL, NULL);
1396 #endif
1397                                         result = g_list_append(result, locale_file);
1398                                 }
1399                         }
1400                 }
1401                 p = strchr(p, '\n');
1402                 if (p) p++;
1403         }
1404
1405         return result;
1406 }
1407
1408 /* Converts two-digit hexadecimal to decimal.  Used for unescaping escaped
1409  * characters
1410  */
1411 static gint axtoi(const gchar *hexstr)
1412 {
1413         gint hi, lo, result;
1414
1415         hi = hexstr[0];
1416         if ('0' <= hi && hi <= '9') {
1417                 hi -= '0';
1418         } else
1419                 if ('a' <= hi && hi <= 'f') {
1420                         hi -= ('a' - 10);
1421                 } else
1422                         if ('A' <= hi && hi <= 'F') {
1423                                 hi -= ('A' - 10);
1424                         }
1425
1426         lo = hexstr[1];
1427         if ('0' <= lo && lo <= '9') {
1428                 lo -= '0';
1429         } else
1430                 if ('a' <= lo && lo <= 'f') {
1431                         lo -= ('a'-10);
1432                 } else
1433                         if ('A' <= lo && lo <= 'F') {
1434                                 lo -= ('A' - 10);
1435                         }
1436         result = lo + (16 * hi);
1437         return result;
1438 }
1439
1440 gboolean is_uri_string(const gchar *str)
1441 {
1442         while (str && *str && g_ascii_isspace(*str))
1443                 str++;
1444         return (g_ascii_strncasecmp(str, "http://", 7) == 0 ||
1445                 g_ascii_strncasecmp(str, "https://", 8) == 0 ||
1446                 g_ascii_strncasecmp(str, "ftp://", 6) == 0 ||
1447                 g_ascii_strncasecmp(str, "www.", 4) == 0);
1448 }
1449
1450 gchar *get_uri_path(const gchar *uri)
1451 {
1452         while (uri && *uri && g_ascii_isspace(*uri))
1453                 uri++;
1454         if (g_ascii_strncasecmp(uri, "http://", 7) == 0)
1455                 return (gchar *)(uri + 7);
1456         else if (g_ascii_strncasecmp(uri, "https://", 8) == 0)
1457                 return (gchar *)(uri + 8);
1458         else if (g_ascii_strncasecmp(uri, "ftp://", 6) == 0)
1459                 return (gchar *)(uri + 6);
1460         else
1461                 return (gchar *)uri;
1462 }
1463
1464 gint get_uri_len(const gchar *str)
1465 {
1466         const gchar *p;
1467
1468         if (is_uri_string(str)) {
1469                 for (p = str; *p != '\0'; p++) {
1470                         if (!g_ascii_isgraph(*p) || strchr("()<>\"", *p))
1471                                 break;
1472                 }
1473                 return p - str;
1474         }
1475
1476         return 0;
1477 }
1478
1479 /* Decodes URL-Encoded strings (i.e. strings in which spaces are replaced by
1480  * plusses, and escape characters are used)
1481  */
1482 void decode_uri_with_plus(gchar *decoded_uri, const gchar *encoded_uri, gboolean with_plus)
1483 {
1484         gchar *dec = decoded_uri;
1485         const gchar *enc = encoded_uri;
1486
1487         while (*enc) {
1488                 if (*enc == '%') {
1489                         enc++;
1490                         if (isxdigit((guchar)enc[0]) &&
1491                             isxdigit((guchar)enc[1])) {
1492                                 *dec = axtoi(enc);
1493                                 dec++;
1494                                 enc += 2;
1495                         }
1496                 } else {
1497                         if (with_plus && *enc == '+')
1498                                 *dec = ' ';
1499                         else
1500                                 *dec = *enc;
1501                         dec++;
1502                         enc++;
1503                 }
1504         }
1505
1506         *dec = '\0';
1507 }
1508
1509 void decode_uri(gchar *decoded_uri, const gchar *encoded_uri)
1510 {
1511         decode_uri_with_plus(decoded_uri, encoded_uri, TRUE);
1512 }
1513
1514 static gchar *decode_uri_gdup(const gchar *encoded_uri)
1515 {
1516     gchar *buffer = g_malloc(strlen(encoded_uri)+1);
1517     decode_uri_with_plus(buffer, encoded_uri, FALSE);
1518     return buffer;
1519 }
1520
1521 gint scan_mailto_url(const gchar *mailto, gchar **from, gchar **to, gchar **cc, gchar **bcc,
1522                      gchar **subject, gchar **body, gchar ***attach, gchar **inreplyto)
1523 {
1524         gchar *tmp_mailto;
1525         gchar *p;
1526         const gchar *forbidden_uris[] = { ".gnupg/",
1527                                           "/etc/passwd",
1528                                           "/etc/shadow",
1529                                           ".ssh/",
1530                                           "../",
1531                                           NULL };
1532         gint num_attach = 0;
1533         gchar **my_att = NULL;
1534
1535         Xstrdup_a(tmp_mailto, mailto, return -1);
1536
1537         if (!strncmp(tmp_mailto, "mailto:", 7))
1538                 tmp_mailto += 7;
1539
1540         p = strchr(tmp_mailto, '?');
1541         if (p) {
1542                 *p = '\0';
1543                 p++;
1544         }
1545
1546         if (to && !*to)
1547                 *to = decode_uri_gdup(tmp_mailto);
1548
1549         my_att = g_malloc(sizeof(char *));
1550         my_att[0] = NULL;
1551
1552         while (p) {
1553                 gchar *field, *value;
1554
1555                 field = p;
1556
1557                 p = strchr(p, '=');
1558                 if (!p) break;
1559                 *p = '\0';
1560                 p++;
1561
1562                 value = p;
1563
1564                 p = strchr(p, '&');
1565                 if (p) {
1566                         *p = '\0';
1567                         p++;
1568                 }
1569
1570                 if (*value == '\0') continue;
1571
1572                 if (from && !g_ascii_strcasecmp(field, "from")) {
1573                         if (!*from) {
1574                                 *from = decode_uri_gdup(value);
1575                         } else {
1576                                 gchar *tmp = decode_uri_gdup(value);
1577                                 gchar *new_from = g_strdup_printf("%s, %s", *from, tmp);
1578                                 g_free(*from);
1579                                 *from = new_from;
1580                         }
1581                 } else if (cc && !g_ascii_strcasecmp(field, "cc")) {
1582                         if (!*cc) {
1583                                 *cc = decode_uri_gdup(value);
1584                         } else {
1585                                 gchar *tmp = decode_uri_gdup(value);
1586                                 gchar *new_cc = g_strdup_printf("%s, %s", *cc, tmp);
1587                                 g_free(*cc);
1588                                 *cc = new_cc;
1589                         }
1590                 } else if (bcc && !g_ascii_strcasecmp(field, "bcc")) {
1591                         if (!*bcc) {
1592                                 *bcc = decode_uri_gdup(value);
1593                         } else {
1594                                 gchar *tmp = decode_uri_gdup(value);
1595                                 gchar *new_bcc = g_strdup_printf("%s, %s", *bcc, tmp);
1596                                 g_free(*bcc);
1597                                 *bcc = new_bcc;
1598                         }
1599                 } else if (subject && !*subject &&
1600                            !g_ascii_strcasecmp(field, "subject")) {
1601                         *subject = decode_uri_gdup(value);
1602                 } else if (body && !*body && !g_ascii_strcasecmp(field, "body")) {
1603                         *body = decode_uri_gdup(value);
1604                 } else if (body && !*body && !g_ascii_strcasecmp(field, "insert")) {
1605                         gchar *tmp = decode_uri_gdup(value);
1606                         if (!g_file_get_contents(tmp, body, NULL, NULL)) {
1607                                 g_warning("couldn't set insert file '%s' in body", value);
1608                         }
1609                         g_free(tmp);
1610                         tmp = NULL;
1611                 } else if (attach && !g_ascii_strcasecmp(field, "attach")) {
1612                         int i = 0;
1613                         gchar *tmp = decode_uri_gdup(value);
1614                         for (; forbidden_uris[i]; i++) {
1615                                 if (strstr(tmp, forbidden_uris[i])) {
1616                                         g_print("Refusing to attach '%s', potential private data leak\n",
1617                                                         tmp);
1618                                         g_free(tmp);
1619                                         tmp = NULL;
1620                                         break;
1621                                 }
1622                         }
1623                         if (tmp) {
1624                                 /* attach is correct */
1625                                 num_attach++;
1626                                 my_att = g_realloc(my_att, (sizeof(char *))*(num_attach+1));
1627                                 my_att[num_attach-1] = tmp;
1628                                 my_att[num_attach] = NULL;
1629                         }
1630                 } else if (inreplyto && !*inreplyto &&
1631                            !g_ascii_strcasecmp(field, "in-reply-to")) {
1632                         *inreplyto = decode_uri_gdup(value);
1633                 }
1634         }
1635
1636         if (attach)
1637                 *attach = my_att;
1638         return 0;
1639 }
1640
1641
1642 #ifdef G_OS_WIN32
1643 #include <windows.h>
1644 #ifndef CSIDL_APPDATA
1645 #define CSIDL_APPDATA 0x001a
1646 #endif
1647 #ifndef CSIDL_LOCAL_APPDATA
1648 #define CSIDL_LOCAL_APPDATA 0x001c
1649 #endif
1650 #ifndef CSIDL_FLAG_CREATE
1651 #define CSIDL_FLAG_CREATE 0x8000
1652 #endif
1653 #define DIM(v)               (sizeof(v)/sizeof((v)[0]))
1654
1655 #define RTLD_LAZY 0
1656 const char *
1657 w32_strerror (int w32_errno)
1658 {
1659   static char strerr[256];
1660   int ec = (int)GetLastError ();
1661
1662   if (w32_errno == 0)
1663     w32_errno = ec;
1664   FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM, NULL, w32_errno,
1665                  MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
1666                  strerr, DIM (strerr)-1, NULL);
1667   return strerr;
1668 }
1669
1670 static __inline__ void *
1671 dlopen (const char * name, int flag)
1672 {
1673   void * hd = LoadLibrary (name);
1674   return hd;
1675 }
1676
1677 static __inline__ void *
1678 dlsym (void * hd, const char * sym)
1679 {
1680   if (hd && sym)
1681     {
1682       void * fnc = GetProcAddress (hd, sym);
1683       if (!fnc)
1684         return NULL;
1685       return fnc;
1686     }
1687   return NULL;
1688 }
1689
1690
1691 static __inline__ const char *
1692 dlerror (void)
1693 {
1694   return w32_strerror (0);
1695 }
1696
1697
1698 static __inline__ int
1699 dlclose (void * hd)
1700 {
1701   if (hd)
1702     {
1703       FreeLibrary (hd);
1704       return 0;
1705     }
1706   return -1;
1707 }
1708
1709 static HRESULT
1710 w32_shgetfolderpath (HWND a, int b, HANDLE c, DWORD d, LPSTR e)
1711 {
1712   static int initialized;
1713   static HRESULT (WINAPI * func)(HWND,int,HANDLE,DWORD,LPSTR);
1714
1715   if (!initialized)
1716     {
1717       static char *dllnames[] = { "shell32.dll", "shfolder.dll", NULL };
1718       void *handle;
1719       int i;
1720
1721       initialized = 1;
1722
1723       for (i=0, handle = NULL; !handle && dllnames[i]; i++)
1724         {
1725           handle = dlopen (dllnames[i], RTLD_LAZY);
1726           if (handle)
1727             {
1728               func = dlsym (handle, "SHGetFolderPathW");
1729               if (!func)
1730                 {
1731                   dlclose (handle);
1732                   handle = NULL;
1733                 }
1734             }
1735         }
1736     }
1737
1738   if (func)
1739     return func (a,b,c,d,e);
1740   else
1741     return -1;
1742 }
1743
1744 /* Returns a static string with the directroy from which the module
1745    has been loaded.  Returns an empty string on error. */
1746 static char *w32_get_module_dir(void)
1747 {
1748         static char *moddir;
1749
1750         if (!moddir) {
1751                 char name[MAX_PATH+10];
1752                 char *p;
1753
1754                 if ( !GetModuleFileNameA (0, name, sizeof (name)-10) )
1755                         *name = 0;
1756                 else {
1757                         p = strrchr (name, '\\');
1758                         if (p)
1759                                 *p = 0;
1760                         else
1761                                 *name = 0;
1762                 }
1763                 moddir = g_strdup (name);
1764         }
1765         return moddir;
1766 }
1767 #endif /* G_OS_WIN32 */
1768
1769 /* Return a static string with the locale dir. */
1770 const gchar *get_locale_dir(void)
1771 {
1772         static gchar *loc_dir;
1773
1774 #ifdef G_OS_WIN32
1775         if (!loc_dir)
1776                 loc_dir = g_strconcat(w32_get_module_dir(), G_DIR_SEPARATOR_S,
1777                                       "\\share\\locale", NULL);
1778 #endif
1779         if (!loc_dir)
1780                 loc_dir = LOCALEDIR;
1781         
1782         return loc_dir;
1783 }
1784
1785
1786 const gchar *get_home_dir(void)
1787 {
1788 #ifdef G_OS_WIN32
1789         static char home_dir_utf16[MAX_PATH] = "";
1790         static gchar *home_dir_utf8 = NULL;
1791         if (home_dir_utf16[0] == '\0') {
1792                 if (w32_shgetfolderpath
1793                             (NULL, CSIDL_APPDATA|CSIDL_FLAG_CREATE,
1794                              NULL, 0, home_dir_utf16) < 0)
1795                                 strcpy (home_dir_utf16, "C:\\Sylpheed");
1796                 home_dir_utf8 = g_utf16_to_utf8 ((const gunichar *)home_dir_utf16, -1, NULL, NULL, NULL);
1797         }
1798         return home_dir_utf8;
1799 #else
1800         static const gchar *homeenv = NULL;
1801
1802         if (homeenv)
1803                 return homeenv;
1804
1805         if (!homeenv && g_getenv("HOME") != NULL)
1806                 homeenv = g_strdup(g_getenv("HOME"));
1807         if (!homeenv)
1808                 homeenv = g_get_home_dir();
1809
1810         return homeenv;
1811 #endif
1812 }
1813
1814 static gchar *claws_rc_dir = NULL;
1815 static gboolean rc_dir_alt = FALSE;
1816 const gchar *get_rc_dir(void)
1817 {
1818
1819         if (!claws_rc_dir) {
1820                 claws_rc_dir = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1821                                      RC_DIR, NULL);
1822                 debug_print("using default rc_dir %s\n", claws_rc_dir);
1823         }
1824         return claws_rc_dir;
1825 }
1826
1827 void set_rc_dir(const gchar *dir)
1828 {
1829         gchar *canonical_dir;
1830         if (claws_rc_dir != NULL) {
1831                 g_print("Error: rc_dir already set\n");
1832         } else {
1833                 int err = cm_canonicalize_filename(dir, &canonical_dir);
1834                 int len;
1835
1836                 if (err) {
1837                         g_print("Error looking for %s: %d(%s)\n",
1838                                 dir, -err, g_strerror(-err));
1839                         exit(0);
1840                 }
1841                 rc_dir_alt = TRUE;
1842
1843                 claws_rc_dir = canonical_dir;
1844                 
1845                 len = strlen(claws_rc_dir);
1846                 if (claws_rc_dir[len - 1] == G_DIR_SEPARATOR)
1847                         claws_rc_dir[len - 1] = '\0';
1848                 
1849                 debug_print("set rc_dir to %s\n", claws_rc_dir);
1850                 if (!is_dir_exist(claws_rc_dir)) {
1851                         if (make_dir_hier(claws_rc_dir) != 0) {
1852                                 g_print("Error: can't create %s\n",
1853                                 claws_rc_dir);
1854                                 exit(0);
1855                         }
1856                 }
1857         }
1858 }
1859
1860 gboolean rc_dir_is_alt(void) {
1861         return rc_dir_alt;
1862 }
1863
1864 const gchar *get_mail_base_dir(void)
1865 {
1866         return get_home_dir();
1867 }
1868
1869 const gchar *get_news_cache_dir(void)
1870 {
1871         static gchar *news_cache_dir = NULL;
1872         if (!news_cache_dir)
1873                 news_cache_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1874                                              NEWS_CACHE_DIR, NULL);
1875
1876         return news_cache_dir;
1877 }
1878
1879 const gchar *get_imap_cache_dir(void)
1880 {
1881         static gchar *imap_cache_dir = NULL;
1882
1883         if (!imap_cache_dir)
1884                 imap_cache_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1885                                              IMAP_CACHE_DIR, NULL);
1886
1887         return imap_cache_dir;
1888 }
1889
1890 const gchar *get_mime_tmp_dir(void)
1891 {
1892         static gchar *mime_tmp_dir = NULL;
1893
1894         if (!mime_tmp_dir)
1895                 mime_tmp_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1896                                            MIME_TMP_DIR, NULL);
1897
1898         return mime_tmp_dir;
1899 }
1900
1901 const gchar *get_template_dir(void)
1902 {
1903         static gchar *template_dir = NULL;
1904
1905         if (!template_dir)
1906                 template_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1907                                            TEMPLATE_DIR, NULL);
1908
1909         return template_dir;
1910 }
1911
1912 #ifdef G_OS_WIN32
1913 const gchar *w32_get_cert_file(void)
1914 {
1915         const gchar *cert_file = NULL;
1916         if (!cert_file)
1917                 cert_file = g_strconcat(w32_get_module_dir(),
1918                                  "\\share\\claws-mail\\",
1919                                 "ca-certificates.crt",
1920                                 NULL);  
1921         return cert_file;
1922 }
1923 #endif
1924
1925 /* Return the filepath of the claws-mail.desktop file */
1926 const gchar *get_desktop_file(void)
1927 {
1928 #ifdef DESKTOPFILEPATH
1929   return DESKTOPFILEPATH;
1930 #else
1931   return NULL;
1932 #endif
1933 }
1934
1935 /* Return the default directory for Plugins. */
1936 const gchar *get_plugin_dir(void)
1937 {
1938 #ifdef G_OS_WIN32
1939         static gchar *plugin_dir = NULL;
1940
1941         if (!plugin_dir)
1942                 plugin_dir = g_strconcat(w32_get_module_dir(),
1943                                          "\\lib\\claws-mail\\plugins\\",
1944                                          NULL);
1945         return plugin_dir;
1946 #else
1947         if (is_dir_exist(PLUGINDIR))
1948                 return PLUGINDIR;
1949         else {
1950                 static gchar *plugin_dir = NULL;
1951                 if (!plugin_dir)
1952                         plugin_dir = g_strconcat(get_rc_dir(), 
1953                                 G_DIR_SEPARATOR_S, "plugins", 
1954                                 G_DIR_SEPARATOR_S, NULL);
1955                 return plugin_dir;                      
1956         }
1957 #endif
1958 }
1959
1960
1961 #ifdef G_OS_WIN32
1962 /* Return the default directory for Themes. */
1963 const gchar *w32_get_themes_dir(void)
1964 {
1965         static gchar *themes_dir = NULL;
1966
1967         if (!themes_dir)
1968                 themes_dir = g_strconcat(w32_get_module_dir(),
1969                                          "\\share\\claws-mail\\themes",
1970                                          NULL);
1971         return themes_dir;
1972 }
1973 #endif
1974
1975 const gchar *get_tmp_dir(void)
1976 {
1977         static gchar *tmp_dir = NULL;
1978
1979         if (!tmp_dir)
1980                 tmp_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1981                                       TMP_DIR, NULL);
1982
1983         return tmp_dir;
1984 }
1985
1986 gchar *get_tmp_file(void)
1987 {
1988         gchar *tmp_file;
1989         static guint32 id = 0;
1990
1991         tmp_file = g_strdup_printf("%s%ctmpfile.%08x",
1992                                    get_tmp_dir(), G_DIR_SEPARATOR, id++);
1993
1994         return tmp_file;
1995 }
1996
1997 const gchar *get_domain_name(void)
1998 {
1999 #ifdef G_OS_UNIX
2000         static gchar *domain_name = NULL;
2001         struct addrinfo hints, *res;
2002         char hostname[256];
2003         int s;
2004
2005         if (!domain_name) {
2006                 if (gethostname(hostname, sizeof(hostname)) != 0) {
2007                         perror("gethostname");
2008                         domain_name = "localhost";
2009                 } else {
2010                         memset(&hints, 0, sizeof(struct addrinfo));
2011                         hints.ai_family = AF_UNSPEC;
2012                         hints.ai_socktype = 0;
2013                         hints.ai_flags = AI_CANONNAME;
2014                         hints.ai_protocol = 0;
2015
2016                         s = getaddrinfo(hostname, NULL, &hints, &res);
2017                         if (s != 0) {
2018                                 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
2019                                 domain_name = g_strdup(hostname);
2020                         } else {
2021                                 domain_name = g_strdup(res->ai_canonname);
2022                                 freeaddrinfo(res);
2023                         }
2024                 }
2025                 debug_print("domain name = %s\n", domain_name);
2026         }
2027
2028         return domain_name;
2029 #else
2030         return "localhost";
2031 #endif
2032 }
2033
2034 off_t get_file_size(const gchar *file)
2035 {
2036         GStatBuf s;
2037
2038         if (g_stat(file, &s) < 0) {
2039                 FILE_OP_ERROR(file, "stat");
2040                 return -1;
2041         }
2042
2043         return s.st_size;
2044 }
2045
2046 time_t get_file_mtime(const gchar *file)
2047 {
2048         GStatBuf s;
2049
2050         if (g_stat(file, &s) < 0) {
2051                 FILE_OP_ERROR(file, "stat");
2052                 return -1;
2053         }
2054
2055         return s.st_mtime;
2056 }
2057
2058 off_t get_file_size_as_crlf(const gchar *file)
2059 {
2060         FILE *fp;
2061         off_t size = 0;
2062         gchar buf[BUFFSIZE];
2063
2064         if ((fp = g_fopen(file, "rb")) == NULL) {
2065                 FILE_OP_ERROR(file, "g_fopen");
2066                 return -1;
2067         }
2068
2069         while (fgets(buf, sizeof(buf), fp) != NULL) {
2070                 strretchomp(buf);
2071                 size += strlen(buf) + 2;
2072         }
2073
2074         if (ferror(fp)) {
2075                 FILE_OP_ERROR(file, "fgets");
2076                 size = -1;
2077         }
2078
2079         fclose(fp);
2080
2081         return size;
2082 }
2083
2084 gboolean file_exist(const gchar *file, gboolean allow_fifo)
2085 {
2086         GStatBuf s;
2087
2088         if (file == NULL)
2089                 return FALSE;
2090
2091         if (g_stat(file, &s) < 0) {
2092                 if (ENOENT != errno) FILE_OP_ERROR(file, "stat");
2093                 return FALSE;
2094         }
2095
2096         if (S_ISREG(s.st_mode) || (allow_fifo && S_ISFIFO(s.st_mode)))
2097                 return TRUE;
2098
2099         return FALSE;
2100 }
2101
2102
2103 /* Test on whether FILE is a relative file name. This is
2104  * straightforward for Unix but more complex for Windows. */
2105 gboolean is_relative_filename(const gchar *file)
2106 {
2107         if (!file)
2108                 return TRUE;
2109 #ifdef G_OS_WIN32
2110         if ( *file == '\\' && file[1] == '\\' && strchr (file+2, '\\') )
2111                 return FALSE; /* Prefixed with a hostname - this can't
2112                                * be a relative name. */
2113
2114         if ( ((*file >= 'a' && *file <= 'z')
2115               || (*file >= 'A' && *file <= 'Z'))
2116              && file[1] == ':')
2117                 file += 2;  /* Skip drive letter. */
2118
2119         return !(*file == '\\' || *file == '/');
2120 #else
2121         return !(*file == G_DIR_SEPARATOR);
2122 #endif
2123 }
2124
2125
2126 gboolean is_dir_exist(const gchar *dir)
2127 {
2128         if (dir == NULL)
2129                 return FALSE;
2130
2131         return g_file_test(dir, G_FILE_TEST_IS_DIR);
2132 }
2133
2134 gboolean is_file_entry_exist(const gchar *file)
2135 {
2136         if (file == NULL)
2137                 return FALSE;
2138
2139         return g_file_test(file, G_FILE_TEST_EXISTS);
2140 }
2141
2142 gboolean dirent_is_regular_file(struct dirent *d)
2143 {
2144 #if !defined(G_OS_WIN32) && defined(HAVE_DIRENT_D_TYPE)
2145         if (d->d_type == DT_REG)
2146                 return TRUE;
2147         else if (d->d_type != DT_UNKNOWN)
2148                 return FALSE;
2149 #endif
2150
2151         return g_file_test(d->d_name, G_FILE_TEST_IS_REGULAR);
2152 }
2153
2154 gint change_dir(const gchar *dir)
2155 {
2156         gchar *prevdir = NULL;
2157
2158         if (debug_mode)
2159                 prevdir = g_get_current_dir();
2160
2161         if (g_chdir(dir) < 0) {
2162                 FILE_OP_ERROR(dir, "chdir");
2163                 if (debug_mode) g_free(prevdir);
2164                 return -1;
2165         } else if (debug_mode) {
2166                 gchar *cwd;
2167
2168                 cwd = g_get_current_dir();
2169                 if (strcmp(prevdir, cwd) != 0)
2170                         g_print("current dir: %s\n", cwd);
2171                 g_free(cwd);
2172                 g_free(prevdir);
2173         }
2174
2175         return 0;
2176 }
2177
2178 gint make_dir(const gchar *dir)
2179 {
2180         if (g_mkdir(dir, S_IRWXU) < 0) {
2181                 FILE_OP_ERROR(dir, "mkdir");
2182                 return -1;
2183         }
2184         if (g_chmod(dir, S_IRWXU) < 0)
2185                 FILE_OP_ERROR(dir, "chmod");
2186
2187         return 0;
2188 }
2189
2190 gint make_dir_hier(const gchar *dir)
2191 {
2192         gchar *parent_dir;
2193         const gchar *p;
2194
2195         for (p = dir; (p = strchr(p, G_DIR_SEPARATOR)) != NULL; p++) {
2196                 parent_dir = g_strndup(dir, p - dir);
2197                 if (*parent_dir != '\0') {
2198                         if (!is_dir_exist(parent_dir)) {
2199                                 if (make_dir(parent_dir) < 0) {
2200                                         g_free(parent_dir);
2201                                         return -1;
2202                                 }
2203                         }
2204                 }
2205                 g_free(parent_dir);
2206         }
2207
2208         if (!is_dir_exist(dir)) {
2209                 if (make_dir(dir) < 0)
2210                         return -1;
2211         }
2212
2213         return 0;
2214 }
2215
2216 gint remove_all_files(const gchar *dir)
2217 {
2218         GDir *dp;
2219         const gchar *file_name;
2220         gchar *tmp;
2221
2222         if ((dp = g_dir_open(dir, 0, NULL)) == NULL) {
2223                 g_warning("failed to open directory: %s", dir);
2224                 return -1;
2225         }
2226
2227         while ((file_name = g_dir_read_name(dp)) != NULL) {
2228                 tmp = g_strconcat(dir, G_DIR_SEPARATOR_S, file_name, NULL);
2229                 if (claws_unlink(tmp) < 0)
2230                         FILE_OP_ERROR(tmp, "unlink");
2231                 g_free(tmp);
2232         }
2233
2234         g_dir_close(dp);
2235
2236         return 0;
2237 }
2238
2239 gint remove_numbered_files(const gchar *dir, guint first, guint last)
2240 {
2241         GDir *dp;
2242         const gchar *dir_name;
2243         gchar *prev_dir;
2244         gint file_no;
2245
2246         if (first == last) {
2247                 /* Skip all the dir reading part. */
2248                 gchar *filename = g_strdup_printf("%s%s%u", dir, G_DIR_SEPARATOR_S, first);
2249                 if (is_dir_exist(filename)) {
2250                         /* a numbered directory with this name exists,
2251                          * remove the dot-file instead */
2252                         g_free(filename);
2253                         filename = g_strdup_printf("%s%s.%u", dir, G_DIR_SEPARATOR_S, first);
2254                 }
2255                 if (claws_unlink(filename) < 0) {
2256                         FILE_OP_ERROR(filename, "unlink");
2257                         g_free(filename);
2258                         return -1;
2259                 }
2260                 g_free(filename);
2261                 return 0;
2262         }
2263
2264         prev_dir = g_get_current_dir();
2265
2266         if (g_chdir(dir) < 0) {
2267                 FILE_OP_ERROR(dir, "chdir");
2268                 g_free(prev_dir);
2269                 return -1;
2270         }
2271
2272         if ((dp = g_dir_open(".", 0, NULL)) == NULL) {
2273                 g_warning("failed to open directory: %s", dir);
2274                 g_free(prev_dir);
2275                 return -1;
2276         }
2277
2278         while ((dir_name = g_dir_read_name(dp)) != NULL) {
2279                 file_no = to_number(dir_name);
2280                 if (file_no > 0 && first <= file_no && file_no <= last) {
2281                         if (is_dir_exist(dir_name)) {
2282                                 gchar *dot_file = g_strdup_printf(".%s", dir_name);
2283                                 if (is_file_exist(dot_file) && claws_unlink(dot_file) < 0) {
2284                                         FILE_OP_ERROR(dot_file, "unlink");
2285                                 }
2286                                 g_free(dot_file);
2287                                 continue;
2288                         }
2289                         if (claws_unlink(dir_name) < 0)
2290                                 FILE_OP_ERROR(dir_name, "unlink");
2291                 }
2292         }
2293
2294         g_dir_close(dp);
2295
2296         if (g_chdir(prev_dir) < 0) {
2297                 FILE_OP_ERROR(prev_dir, "chdir");
2298                 g_free(prev_dir);
2299                 return -1;
2300         }
2301
2302         g_free(prev_dir);
2303
2304         return 0;
2305 }
2306
2307 gint remove_numbered_files_not_in_list(const gchar *dir, GSList *numberlist)
2308 {
2309         GDir *dp;
2310         const gchar *dir_name;
2311         gchar *prev_dir;
2312         gint file_no;
2313         GHashTable *wanted_files;
2314         GSList *cur;
2315         GError *error = NULL;
2316
2317         if (numberlist == NULL)
2318             return 0;
2319
2320         prev_dir = g_get_current_dir();
2321
2322         if (g_chdir(dir) < 0) {
2323                 FILE_OP_ERROR(dir, "chdir");
2324                 g_free(prev_dir);
2325                 return -1;
2326         }
2327
2328         if ((dp = g_dir_open(".", 0, &error)) == NULL) {
2329                 g_message("Couldn't open current directory: %s (%d).\n",
2330                                 error->message, error->code);
2331                 g_error_free(error);
2332                 g_free(prev_dir);
2333                 return -1;
2334         }
2335
2336         wanted_files = g_hash_table_new(g_direct_hash, g_direct_equal);
2337         for (cur = numberlist; cur != NULL; cur = cur->next) {
2338                 /* numberlist->data is expected to be GINT_TO_POINTER */
2339                 g_hash_table_insert(wanted_files, cur->data, GINT_TO_POINTER(1));
2340         }
2341
2342         while ((dir_name = g_dir_read_name(dp)) != NULL) {
2343                 file_no = to_number(dir_name);
2344                 if (is_dir_exist(dir_name))
2345                         continue;
2346                 if (file_no > 0 && g_hash_table_lookup(wanted_files, GINT_TO_POINTER(file_no)) == NULL) {
2347                         debug_print("removing unwanted file %d from %s\n", file_no, dir);
2348                         if (is_dir_exist(dir_name)) {
2349                                 gchar *dot_file = g_strdup_printf(".%s", dir_name);
2350                                 if (is_file_exist(dot_file) && claws_unlink(dot_file) < 0) {
2351                                         FILE_OP_ERROR(dot_file, "unlink");
2352                                 }
2353                                 g_free(dot_file);
2354                                 continue;
2355                         }
2356                         if (claws_unlink(dir_name) < 0)
2357                                 FILE_OP_ERROR(dir_name, "unlink");
2358                 }
2359         }
2360
2361         g_dir_close(dp);
2362         g_hash_table_destroy(wanted_files);
2363
2364         if (g_chdir(prev_dir) < 0) {
2365                 FILE_OP_ERROR(prev_dir, "chdir");
2366                 g_free(prev_dir);
2367                 return -1;
2368         }
2369
2370         g_free(prev_dir);
2371
2372         return 0;
2373 }
2374
2375 gint remove_all_numbered_files(const gchar *dir)
2376 {
2377         return remove_numbered_files(dir, 0, UINT_MAX);
2378 }
2379
2380 gint remove_dir_recursive(const gchar *dir)
2381 {
2382         GStatBuf s;
2383         GDir *dp;
2384         const gchar *dir_name;
2385         gchar *prev_dir;
2386
2387         if (g_stat(dir, &s) < 0) {
2388                 FILE_OP_ERROR(dir, "stat");
2389                 if (ENOENT == errno) return 0;
2390                 return -(errno);
2391         }
2392
2393         if (!S_ISDIR(s.st_mode)) {
2394                 if (claws_unlink(dir) < 0) {
2395                         FILE_OP_ERROR(dir, "unlink");
2396                         return -(errno);
2397                 }
2398
2399                 return 0;
2400         }
2401
2402         prev_dir = g_get_current_dir();
2403         /* g_print("prev_dir = %s\n", prev_dir); */
2404
2405         if (!path_cmp(prev_dir, dir)) {
2406                 g_free(prev_dir);
2407                 if (g_chdir("..") < 0) {
2408                         FILE_OP_ERROR(dir, "chdir");
2409                         return -(errno);
2410                 }
2411                 prev_dir = g_get_current_dir();
2412         }
2413
2414         if (g_chdir(dir) < 0) {
2415                 FILE_OP_ERROR(dir, "chdir");
2416                 g_free(prev_dir);
2417                 return -(errno);
2418         }
2419
2420         if ((dp = g_dir_open(".", 0, NULL)) == NULL) {
2421                 g_warning("failed to open directory: %s", dir);
2422                 g_chdir(prev_dir);
2423                 g_free(prev_dir);
2424                 return -(errno);
2425         }
2426
2427         /* remove all files in the directory */
2428         while ((dir_name = g_dir_read_name(dp)) != NULL) {
2429                 /* g_print("removing %s\n", dir_name); */
2430
2431                 if (is_dir_exist(dir_name)) {
2432                         gint ret;
2433
2434                         if ((ret = remove_dir_recursive(dir_name)) < 0) {
2435                                 g_warning("can't remove directory: %s", dir_name);
2436                                 return ret;
2437                         }
2438                 } else {
2439                         if (claws_unlink(dir_name) < 0)
2440                                 FILE_OP_ERROR(dir_name, "unlink");
2441                 }
2442         }
2443
2444         g_dir_close(dp);
2445
2446         if (g_chdir(prev_dir) < 0) {
2447                 FILE_OP_ERROR(prev_dir, "chdir");
2448                 g_free(prev_dir);
2449                 return -(errno);
2450         }
2451
2452         g_free(prev_dir);
2453
2454         if (g_rmdir(dir) < 0) {
2455                 FILE_OP_ERROR(dir, "rmdir");
2456                 return -(errno);
2457         }
2458
2459         return 0;
2460 }
2461
2462 gint rename_force(const gchar *oldpath, const gchar *newpath)
2463 {
2464 #ifndef G_OS_UNIX
2465         if (!is_file_entry_exist(oldpath)) {
2466                 errno = ENOENT;
2467                 return -1;
2468         }
2469         if (is_file_exist(newpath)) {
2470                 if (claws_unlink(newpath) < 0)
2471                         FILE_OP_ERROR(newpath, "unlink");
2472         }
2473 #endif
2474         return g_rename(oldpath, newpath);
2475 }
2476
2477 /*
2478  * Append src file body to the tail of dest file.
2479  * Now keep_backup has no effects.
2480  */
2481 gint append_file(const gchar *src, const gchar *dest, gboolean keep_backup)
2482 {
2483         FILE *src_fp, *dest_fp;
2484         gint n_read;
2485         gchar buf[BUFSIZ];
2486
2487         gboolean err = FALSE;
2488
2489         if ((src_fp = g_fopen(src, "rb")) == NULL) {
2490                 FILE_OP_ERROR(src, "g_fopen");
2491                 return -1;
2492         }
2493
2494         if ((dest_fp = g_fopen(dest, "ab")) == NULL) {
2495                 FILE_OP_ERROR(dest, "g_fopen");
2496                 fclose(src_fp);
2497                 return -1;
2498         }
2499
2500         if (change_file_mode_rw(dest_fp, dest) < 0) {
2501                 FILE_OP_ERROR(dest, "chmod");
2502                 g_warning("can't change file mode: %s", dest);
2503         }
2504
2505         while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), src_fp)) > 0) {
2506                 if (n_read < sizeof(buf) && ferror(src_fp))
2507                         break;
2508                 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2509                         g_warning("writing to %s failed.", dest);
2510                         fclose(dest_fp);
2511                         fclose(src_fp);
2512                         claws_unlink(dest);
2513                         return -1;
2514                 }
2515         }
2516
2517         if (ferror(src_fp)) {
2518                 FILE_OP_ERROR(src, "fread");
2519                 err = TRUE;
2520         }
2521         fclose(src_fp);
2522         if (fclose(dest_fp) == EOF) {
2523                 FILE_OP_ERROR(dest, "fclose");
2524                 err = TRUE;
2525         }
2526
2527         if (err) {
2528                 claws_unlink(dest);
2529                 return -1;
2530         }
2531
2532         return 0;
2533 }
2534
2535 gint copy_file(const gchar *src, const gchar *dest, gboolean keep_backup)
2536 {
2537         FILE *src_fp, *dest_fp;
2538         gint n_read;
2539         gchar buf[BUFSIZ];
2540         gchar *dest_bak = NULL;
2541         gboolean err = FALSE;
2542
2543         if ((src_fp = g_fopen(src, "rb")) == NULL) {
2544                 FILE_OP_ERROR(src, "g_fopen");
2545                 return -1;
2546         }
2547         if (is_file_exist(dest)) {
2548                 dest_bak = g_strconcat(dest, ".bak", NULL);
2549                 if (rename_force(dest, dest_bak) < 0) {
2550                         FILE_OP_ERROR(dest, "rename");
2551                         fclose(src_fp);
2552                         g_free(dest_bak);
2553                         return -1;
2554                 }
2555         }
2556
2557         if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2558                 FILE_OP_ERROR(dest, "g_fopen");
2559                 fclose(src_fp);
2560                 if (dest_bak) {
2561                         if (rename_force(dest_bak, dest) < 0)
2562                                 FILE_OP_ERROR(dest_bak, "rename");
2563                         g_free(dest_bak);
2564                 }
2565                 return -1;
2566         }
2567
2568         if (change_file_mode_rw(dest_fp, dest) < 0) {
2569                 FILE_OP_ERROR(dest, "chmod");
2570                 g_warning("can't change file mode: %s", dest);
2571         }
2572
2573         while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), src_fp)) > 0) {
2574                 if (n_read < sizeof(buf) && ferror(src_fp))
2575                         break;
2576                 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2577                         g_warning("writing to %s failed.", dest);
2578                         fclose(dest_fp);
2579                         fclose(src_fp);
2580                         claws_unlink(dest);
2581                         if (dest_bak) {
2582                                 if (rename_force(dest_bak, dest) < 0)
2583                                         FILE_OP_ERROR(dest_bak, "rename");
2584                                 g_free(dest_bak);
2585                         }
2586                         return -1;
2587                 }
2588         }
2589
2590         if (ferror(src_fp)) {
2591                 FILE_OP_ERROR(src, "fread");
2592                 err = TRUE;
2593         }
2594         fclose(src_fp);
2595         if (fclose(dest_fp) == EOF) {
2596                 FILE_OP_ERROR(dest, "fclose");
2597                 err = TRUE;
2598         }
2599
2600         if (err) {
2601                 claws_unlink(dest);
2602                 if (dest_bak) {
2603                         if (rename_force(dest_bak, dest) < 0)
2604                                 FILE_OP_ERROR(dest_bak, "rename");
2605                         g_free(dest_bak);
2606                 }
2607                 return -1;
2608         }
2609
2610         if (keep_backup == FALSE && dest_bak)
2611                 claws_unlink(dest_bak);
2612
2613         g_free(dest_bak);
2614
2615         return 0;
2616 }
2617
2618 gint move_file(const gchar *src, const gchar *dest, gboolean overwrite)
2619 {
2620         if (overwrite == FALSE && is_file_exist(dest)) {
2621                 g_warning("move_file(): file %s already exists.", dest);
2622                 return -1;
2623         }
2624
2625         if (rename_force(src, dest) == 0) return 0;
2626
2627         if (EXDEV != errno) {
2628                 FILE_OP_ERROR(src, "rename");
2629                 return -1;
2630         }
2631
2632         if (copy_file(src, dest, FALSE) < 0) return -1;
2633
2634         claws_unlink(src);
2635
2636         return 0;
2637 }
2638
2639 gint copy_file_part_to_fp(FILE *fp, off_t offset, size_t length, FILE *dest_fp)
2640 {
2641         gint n_read;
2642         gint bytes_left, to_read;
2643         gchar buf[BUFSIZ];
2644
2645         if (fseek(fp, offset, SEEK_SET) < 0) {
2646                 perror("fseek");
2647                 return -1;
2648         }
2649
2650         bytes_left = length;
2651         to_read = MIN(bytes_left, sizeof(buf));
2652
2653         while ((n_read = fread(buf, sizeof(gchar), to_read, fp)) > 0) {
2654                 if (n_read < to_read && ferror(fp))
2655                         break;
2656                 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2657                         return -1;
2658                 }
2659                 bytes_left -= n_read;
2660                 if (bytes_left == 0)
2661                         break;
2662                 to_read = MIN(bytes_left, sizeof(buf));
2663         }
2664
2665         if (ferror(fp)) {
2666                 perror("fread");
2667                 return -1;
2668         }
2669
2670         return 0;
2671 }
2672
2673 gint copy_file_part(FILE *fp, off_t offset, size_t length, const gchar *dest)
2674 {
2675         FILE *dest_fp;
2676         gboolean err = FALSE;
2677
2678         if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2679                 FILE_OP_ERROR(dest, "g_fopen");
2680                 return -1;
2681         }
2682
2683         if (change_file_mode_rw(dest_fp, dest) < 0) {
2684                 FILE_OP_ERROR(dest, "chmod");
2685                 g_warning("can't change file mode: %s", dest);
2686         }
2687
2688         if (copy_file_part_to_fp(fp, offset, length, dest_fp) < 0)
2689                 err = TRUE;
2690
2691         if (!err && fclose(dest_fp) == EOF) {
2692                 FILE_OP_ERROR(dest, "fclose");
2693                 err = TRUE;
2694         }
2695
2696         if (err) {
2697                 g_warning("writing to %s failed.", dest);
2698                 claws_unlink(dest);
2699                 return -1;
2700         }
2701
2702         return 0;
2703 }
2704
2705 /* convert line endings into CRLF. If the last line doesn't end with
2706  * linebreak, add it.
2707  */
2708 gchar *canonicalize_str(const gchar *str)
2709 {
2710         const gchar *p;
2711         guint new_len = 0;
2712         gchar *out, *outp;
2713
2714         for (p = str; *p != '\0'; ++p) {
2715                 if (*p != '\r') {
2716                         ++new_len;
2717                         if (*p == '\n')
2718                                 ++new_len;
2719                 }
2720         }
2721         if (p == str || *(p - 1) != '\n')
2722                 new_len += 2;
2723
2724         out = outp = g_malloc(new_len + 1);
2725         for (p = str; *p != '\0'; ++p) {
2726                 if (*p != '\r') {
2727                         if (*p == '\n')
2728                                 *outp++ = '\r';
2729                         *outp++ = *p;
2730                 }
2731         }
2732         if (p == str || *(p - 1) != '\n') {
2733                 *outp++ = '\r';
2734                 *outp++ = '\n';
2735         }
2736         *outp = '\0';
2737
2738         return out;
2739 }
2740
2741 gint canonicalize_file(const gchar *src, const gchar *dest)
2742 {
2743         FILE *src_fp, *dest_fp;
2744         gchar buf[BUFFSIZE];
2745         gint len;
2746         gboolean err = FALSE;
2747         gboolean last_linebreak = FALSE;
2748
2749         if (src == NULL || dest == NULL)
2750                 return -1;
2751
2752         if ((src_fp = g_fopen(src, "rb")) == NULL) {
2753                 FILE_OP_ERROR(src, "g_fopen");
2754                 return -1;
2755         }
2756
2757         if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2758                 FILE_OP_ERROR(dest, "g_fopen");
2759                 fclose(src_fp);
2760                 return -1;
2761         }
2762
2763         if (change_file_mode_rw(dest_fp, dest) < 0) {
2764                 FILE_OP_ERROR(dest, "chmod");
2765                 g_warning("can't change file mode: %s", dest);
2766         }
2767
2768         while (fgets(buf, sizeof(buf), src_fp) != NULL) {
2769                 gint r = 0;
2770
2771                 len = strlen(buf);
2772                 if (len == 0) break;
2773                 last_linebreak = FALSE;
2774
2775                 if (buf[len - 1] != '\n') {
2776                         last_linebreak = TRUE;
2777                         r = fputs(buf, dest_fp);
2778                 } else if (len > 1 && buf[len - 1] == '\n' && buf[len - 2] == '\r') {
2779                         r = fputs(buf, dest_fp);
2780                 } else {
2781                         if (len > 1) {
2782                                 r = fwrite(buf, 1, len - 1, dest_fp);
2783                                 if (r != (len -1))
2784                                         r = EOF;
2785                         }
2786                         if (r != EOF)
2787                                 r = fputs("\r\n", dest_fp);
2788                 }
2789
2790                 if (r == EOF) {
2791                         g_warning("writing to %s failed.", dest);
2792                         fclose(dest_fp);
2793                         fclose(src_fp);
2794                         claws_unlink(dest);
2795                         return -1;
2796                 }
2797         }
2798
2799         if (last_linebreak == TRUE) {
2800                 if (fputs("\r\n", dest_fp) == EOF)
2801                         err = TRUE;
2802         }
2803
2804         if (ferror(src_fp)) {
2805                 FILE_OP_ERROR(src, "fgets");
2806                 err = TRUE;
2807         }
2808         fclose(src_fp);
2809         if (fclose(dest_fp) == EOF) {
2810                 FILE_OP_ERROR(dest, "fclose");
2811                 err = TRUE;
2812         }
2813
2814         if (err) {
2815                 claws_unlink(dest);
2816                 return -1;
2817         }
2818
2819         return 0;
2820 }
2821
2822 gint canonicalize_file_replace(const gchar *file)
2823 {
2824         gchar *tmp_file;
2825
2826         tmp_file = get_tmp_file();
2827
2828         if (canonicalize_file(file, tmp_file) < 0) {
2829                 g_free(tmp_file);
2830                 return -1;
2831         }
2832
2833         if (move_file(tmp_file, file, TRUE) < 0) {
2834                 g_warning("can't replace file: %s", file);
2835                 claws_unlink(tmp_file);
2836                 g_free(tmp_file);
2837                 return -1;
2838         }
2839
2840         g_free(tmp_file);
2841         return 0;
2842 }
2843
2844 gchar *normalize_newlines(const gchar *str)
2845 {
2846         const gchar *p;
2847         gchar *out, *outp;
2848
2849         out = outp = g_malloc(strlen(str) + 1);
2850         for (p = str; *p != '\0'; ++p) {
2851                 if (*p == '\r') {
2852                         if (*(p + 1) != '\n')
2853                                 *outp++ = '\n';
2854                 } else
2855                         *outp++ = *p;
2856         }
2857
2858         *outp = '\0';
2859
2860         return out;
2861 }
2862
2863 gchar *get_outgoing_rfc2822_str(FILE *fp)
2864 {
2865         gchar buf[BUFFSIZE];
2866         GString *str;
2867         gchar *ret;
2868
2869         str = g_string_new(NULL);
2870
2871         /* output header part */
2872         while (fgets(buf, sizeof(buf), fp) != NULL) {
2873                 strretchomp(buf);
2874                 if (!g_ascii_strncasecmp(buf, "Bcc:", 4)) {
2875                         gint next;
2876
2877                         for (;;) {
2878                                 next = fgetc(fp);
2879                                 if (next == EOF)
2880                                         break;
2881                                 else if (next != ' ' && next != '\t') {
2882                                         ungetc(next, fp);
2883                                         break;
2884                                 }
2885                                 if (fgets(buf, sizeof(buf), fp) == NULL)
2886                                         break;
2887                         }
2888                 } else {
2889                         g_string_append(str, buf);
2890                         g_string_append(str, "\r\n");
2891                         if (buf[0] == '\0')
2892                                 break;
2893                 }
2894         }
2895
2896         /* output body part */
2897         while (fgets(buf, sizeof(buf), fp) != NULL) {
2898                 strretchomp(buf);
2899                 if (buf[0] == '.')
2900                         g_string_append_c(str, '.');
2901                 g_string_append(str, buf);
2902                 g_string_append(str, "\r\n");
2903         }
2904
2905         ret = str->str;
2906         g_string_free(str, FALSE);
2907
2908         return ret;
2909 }
2910
2911 /*
2912  * Create a new boundary in a way that it is very unlikely that this
2913  * will occur in the following text.  It would be easy to ensure
2914  * uniqueness if everything is either quoted-printable or base64
2915  * encoded (note that conversion is allowed), but because MIME bodies
2916  * may be nested, it may happen that the same boundary has already
2917  * been used.
2918  *
2919  *   boundary := 0*69<bchars> bcharsnospace
2920  *   bchars := bcharsnospace / " "
2921  *   bcharsnospace := DIGIT / ALPHA / "'" / "(" / ")" /
2922  *                  "+" / "_" / "," / "-" / "." /
2923  *                  "/" / ":" / "=" / "?"
2924  *
2925  * some special characters removed because of buggy MTAs
2926  */
2927
2928 gchar *generate_mime_boundary(const gchar *prefix)
2929 {
2930         static gchar tbl[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2931                              "abcdefghijklmnopqrstuvwxyz"
2932                              "1234567890+_./=";
2933         gchar buf_uniq[24];
2934         gint i;
2935
2936         for (i = 0; i < sizeof(buf_uniq) - 1; i++)
2937                 buf_uniq[i] = tbl[g_random_int_range(0, sizeof(tbl) - 1)];
2938         buf_uniq[i] = '\0';
2939
2940         return g_strdup_printf("%s_/%s", prefix ? prefix : "MP",
2941                                buf_uniq);
2942 }
2943
2944 gint change_file_mode_rw(FILE *fp, const gchar *file)
2945 {
2946 #if HAVE_FCHMOD
2947         return fchmod(fileno(fp), S_IRUSR|S_IWUSR);
2948 #else
2949         return g_chmod(file, S_IRUSR|S_IWUSR);
2950 #endif
2951 }
2952
2953 FILE *my_tmpfile(void)
2954 {
2955         const gchar suffix[] = ".XXXXXX";
2956         const gchar *tmpdir;
2957         guint tmplen;
2958         const gchar *progname;
2959         guint proglen;
2960         gchar *fname;
2961         gint fd;
2962         FILE *fp;
2963 #ifndef G_OS_WIN32
2964         gchar buf[2]="\0";
2965 #endif
2966
2967         tmpdir = get_tmp_dir();
2968         tmplen = strlen(tmpdir);
2969         progname = g_get_prgname();
2970         if (progname == NULL)
2971                 progname = "claws-mail";
2972         proglen = strlen(progname);
2973         Xalloca(fname, tmplen + 1 + proglen + sizeof(suffix),
2974                 return tmpfile());
2975
2976         memcpy(fname, tmpdir, tmplen);
2977         fname[tmplen] = G_DIR_SEPARATOR;
2978         memcpy(fname + tmplen + 1, progname, proglen);
2979         memcpy(fname + tmplen + 1 + proglen, suffix, sizeof(suffix));
2980
2981         fd = g_mkstemp(fname);
2982         if (fd < 0)
2983                 return tmpfile();
2984
2985 #ifndef G_OS_WIN32
2986         claws_unlink(fname);
2987         
2988         /* verify that we can write in the file after unlinking */
2989         if (write(fd, buf, 1) < 0) {
2990                 close(fd);
2991                 return tmpfile();
2992         }
2993         
2994 #endif
2995
2996         fp = fdopen(fd, "w+b");
2997         if (!fp)
2998                 close(fd);
2999         else {
3000                 rewind(fp);
3001                 return fp;
3002         }
3003
3004         return tmpfile();
3005 }
3006
3007 FILE *get_tmpfile_in_dir(const gchar *dir, gchar **filename)
3008 {
3009         int fd;
3010         *filename = g_strdup_printf("%s%cclaws.XXXXXX", dir, G_DIR_SEPARATOR);
3011         fd = g_mkstemp(*filename);
3012         if (fd < 0)
3013                 return NULL;
3014         return fdopen(fd, "w+");
3015 }
3016
3017 FILE *str_open_as_stream(const gchar *str)
3018 {
3019         FILE *fp;
3020         size_t len;
3021
3022         cm_return_val_if_fail(str != NULL, NULL);
3023
3024         fp = my_tmpfile();
3025         if (!fp) {
3026                 FILE_OP_ERROR("str_open_as_stream", "my_tmpfile");
3027                 return NULL;
3028         }
3029
3030         len = strlen(str);
3031         if (len == 0) return fp;
3032
3033         if (fwrite(str, 1, len, fp) != len) {
3034                 FILE_OP_ERROR("str_open_as_stream", "fwrite");
3035                 fclose(fp);
3036                 return NULL;
3037         }
3038
3039         rewind(fp);
3040         return fp;
3041 }
3042
3043 gint str_write_to_file(const gchar *str, const gchar *file)
3044 {
3045         FILE *fp;
3046         size_t len;
3047
3048         cm_return_val_if_fail(str != NULL, -1);
3049         cm_return_val_if_fail(file != NULL, -1);
3050
3051         if ((fp = g_fopen(file, "wb")) == NULL) {
3052                 FILE_OP_ERROR(file, "g_fopen");
3053                 return -1;
3054         }
3055
3056         len = strlen(str);
3057         if (len == 0) {
3058                 fclose(fp);
3059                 return 0;
3060         }
3061
3062         if (fwrite(str, 1, len, fp) != len) {
3063                 FILE_OP_ERROR(file, "fwrite");
3064                 fclose(fp);
3065                 claws_unlink(file);
3066                 return -1;
3067         }
3068
3069         if (fclose(fp) == EOF) {
3070                 FILE_OP_ERROR(file, "fclose");
3071                 claws_unlink(file);
3072                 return -1;
3073         }
3074
3075         return 0;
3076 }
3077
3078 static gchar *file_read_stream_to_str_full(FILE *fp, gboolean recode)
3079 {
3080         GByteArray *array;
3081         guchar buf[BUFSIZ];
3082         gint n_read;
3083         gchar *str;
3084
3085         cm_return_val_if_fail(fp != NULL, NULL);
3086
3087         array = g_byte_array_new();
3088
3089         while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
3090                 if (n_read < sizeof(buf) && ferror(fp))
3091                         break;
3092                 g_byte_array_append(array, buf, n_read);
3093         }
3094
3095         if (ferror(fp)) {
3096                 FILE_OP_ERROR("file stream", "fread");
3097                 g_byte_array_free(array, TRUE);
3098                 return NULL;
3099         }
3100
3101         buf[0] = '\0';
3102         g_byte_array_append(array, buf, 1);
3103         str = (gchar *)array->data;
3104         g_byte_array_free(array, FALSE);
3105
3106         if (recode && !g_utf8_validate(str, -1, NULL)) {
3107                 const gchar *src_codeset, *dest_codeset;
3108                 gchar *tmp = NULL;
3109                 src_codeset = conv_get_locale_charset_str();
3110                 dest_codeset = CS_UTF_8;
3111                 tmp = conv_codeset_strdup(str, src_codeset, dest_codeset);
3112                 g_free(str);
3113                 str = tmp;
3114         }
3115
3116         return str;
3117 }
3118
3119 static gchar *file_read_to_str_full(const gchar *file, gboolean recode)
3120 {
3121         FILE *fp;
3122         gchar *str;
3123         GStatBuf s;
3124 #ifndef G_OS_WIN32
3125         gint fd, err;
3126         struct timeval timeout = {1, 0};
3127         fd_set fds;
3128         int fflags = 0;
3129 #endif
3130
3131         cm_return_val_if_fail(file != NULL, NULL);
3132
3133         if (g_stat(file, &s) != 0) {
3134                 FILE_OP_ERROR(file, "stat");
3135                 return NULL;
3136         }
3137         if (S_ISDIR(s.st_mode)) {
3138                 g_warning("%s: is a directory", file);
3139                 return NULL;
3140         }
3141
3142 #ifdef G_OS_WIN32
3143         fp = g_fopen (file, "rb");
3144         if (fp == NULL) {
3145                 FILE_OP_ERROR(file, "open");
3146                 return NULL;
3147         }
3148 #else     
3149         /* test whether the file is readable without blocking */
3150         fd = g_open(file, O_RDONLY | O_NONBLOCK, 0);
3151         if (fd == -1) {
3152                 FILE_OP_ERROR(file, "open");
3153                 return NULL;
3154         }
3155
3156         FD_ZERO(&fds);
3157         FD_SET(fd, &fds);
3158
3159         /* allow for one second */
3160         err = select(fd+1, &fds, NULL, NULL, &timeout);
3161         if (err <= 0 || !FD_ISSET(fd, &fds)) {
3162                 if (err < 0) {
3163                         FILE_OP_ERROR(file, "select");
3164                 } else {
3165                         g_warning("%s: doesn't seem readable", file);
3166                 }
3167                 close(fd);
3168                 return NULL;
3169         }
3170         
3171         /* Now clear O_NONBLOCK */
3172         if ((fflags = fcntl(fd, F_GETFL)) < 0) {
3173                 FILE_OP_ERROR(file, "fcntl (F_GETFL)");
3174                 close(fd);
3175                 return NULL;
3176         }
3177         if (fcntl(fd, F_SETFL, (fflags & ~O_NONBLOCK)) < 0) {
3178                 FILE_OP_ERROR(file, "fcntl (F_SETFL)");
3179                 close(fd);
3180                 return NULL;
3181         }
3182         
3183         /* get the FILE pointer */
3184         fp = fdopen(fd, "rb");
3185
3186         if (fp == NULL) {
3187                 FILE_OP_ERROR(file, "fdopen");
3188                 close(fd); /* if fp isn't NULL, we'll use fclose instead! */
3189                 return NULL;
3190         }
3191 #endif
3192
3193         str = file_read_stream_to_str_full(fp, recode);
3194
3195         fclose(fp);
3196
3197         return str;
3198 }
3199
3200 gchar *file_read_to_str(const gchar *file)
3201 {
3202         return file_read_to_str_full(file, TRUE);
3203 }
3204 gchar *file_read_stream_to_str(FILE *fp)
3205 {
3206         return file_read_stream_to_str_full(fp, TRUE);
3207 }
3208
3209 gchar *file_read_to_str_no_recode(const gchar *file)
3210 {
3211         return file_read_to_str_full(file, FALSE);
3212 }
3213 gchar *file_read_stream_to_str_no_recode(FILE *fp)
3214 {
3215         return file_read_stream_to_str_full(fp, FALSE);
3216 }
3217
3218 char *fgets_crlf(char *buf, int size, FILE *stream)
3219 {
3220         gboolean is_cr = FALSE;
3221         gboolean last_was_cr = FALSE;
3222         int c = 0;
3223         char *cs;
3224
3225         cs = buf;
3226         while (--size > 0 && (c = getc(stream)) != EOF)
3227         {
3228                 *cs++ = c;
3229                 is_cr = (c == '\r');
3230                 if (c == '\n') {
3231                         break;
3232                 }
3233                 if (last_was_cr) {
3234                         *(--cs) = '\n';
3235                         cs++;
3236                         ungetc(c, stream);
3237                         break;
3238                 }
3239                 last_was_cr = is_cr;
3240         }
3241         if (c == EOF && cs == buf)
3242                 return NULL;
3243
3244         *cs = '\0';
3245
3246         return buf;     
3247 }
3248
3249 static gint execute_async(gchar *const argv[])
3250 {
3251         cm_return_val_if_fail(argv != NULL && argv[0] != NULL, -1);
3252
3253         if (g_spawn_async(NULL, (gchar **)argv, NULL, G_SPAWN_SEARCH_PATH,
3254                           NULL, NULL, NULL, FALSE) == FALSE) {
3255                 g_warning("couldn't execute command: %s", argv[0]);
3256                 return -1;
3257         }
3258
3259         return 0;
3260 }
3261
3262 static gint execute_sync(gchar *const argv[])
3263 {
3264         gint status;
3265
3266         cm_return_val_if_fail(argv != NULL && argv[0] != NULL, -1);
3267
3268 #ifdef G_OS_UNIX
3269         if (g_spawn_sync(NULL, (gchar **)argv, NULL, G_SPAWN_SEARCH_PATH,
3270                          NULL, NULL, NULL, NULL, &status, NULL) == FALSE) {
3271                 g_warning("couldn't execute command: %s", argv[0]);
3272                 return -1;
3273         }
3274
3275         if (WIFEXITED(status))
3276                 return WEXITSTATUS(status);
3277         else
3278                 return -1;
3279 #else
3280         if (g_spawn_sync(NULL, (gchar **)argv, NULL, G_SPAWN_SEARCH_PATH| 
3281                          G_SPAWN_CHILD_INHERITS_STDIN|G_SPAWN_LEAVE_DESCRIPTORS_OPEN,
3282                          NULL, NULL, NULL, NULL, &status, NULL) == FALSE) {
3283                 g_warning("couldn't execute command: %s", argv[0]);
3284                 return -1;
3285         }
3286
3287         return status;
3288 #endif
3289 }
3290
3291 gint execute_command_line(const gchar *cmdline, gboolean async)
3292 {
3293         gchar **argv;
3294         gint ret;
3295
3296         debug_print("execute_command_line(): executing: %s\n", cmdline?cmdline:"(null)");
3297
3298         argv = strsplit_with_quote(cmdline, " ", 0);
3299
3300         if (async)
3301                 ret = execute_async(argv);
3302         else
3303                 ret = execute_sync(argv);
3304
3305         g_strfreev(argv);
3306
3307         return ret;
3308 }
3309
3310 gchar *get_command_output(const gchar *cmdline)
3311 {
3312         gchar *child_stdout;
3313         gint status;
3314
3315         cm_return_val_if_fail(cmdline != NULL, NULL);
3316
3317         debug_print("get_command_output(): executing: %s\n", cmdline);
3318
3319         if (g_spawn_command_line_sync(cmdline, &child_stdout, NULL, &status,
3320                                       NULL) == FALSE) {
3321                 g_warning("couldn't execute command: %s", cmdline);
3322                 return NULL;
3323         }
3324
3325         return child_stdout;
3326 }
3327
3328 static gint is_unchanged_uri_char(char c)
3329 {
3330         switch (c) {
3331                 case '(':
3332                 case ')':
3333                         return 0;
3334                 default:
3335                         return 1;
3336         }
3337 }
3338
3339 static void encode_uri(gchar *encoded_uri, gint bufsize, const gchar *uri)
3340 {
3341         int i;
3342         int k;
3343
3344         k = 0;
3345         for(i = 0; i < strlen(uri) ; i++) {
3346                 if (is_unchanged_uri_char(uri[i])) {
3347                         if (k + 2 >= bufsize)
3348                                 break;
3349                         encoded_uri[k++] = uri[i];
3350                 }
3351                 else {
3352                         char * hexa = "0123456789ABCDEF";
3353
3354                         if (k + 4 >= bufsize)
3355                                 break;
3356                         encoded_uri[k++] = '%';
3357                         encoded_uri[k++] = hexa[uri[i] / 16];
3358                         encoded_uri[k++] = hexa[uri[i] % 16];
3359                 }
3360         }
3361         encoded_uri[k] = 0;
3362 }
3363
3364 gint open_uri(const gchar *uri, const gchar *cmdline)
3365 {
3366
3367 #ifndef G_OS_WIN32
3368         gchar buf[BUFFSIZE];
3369         gchar *p;
3370         gchar encoded_uri[BUFFSIZE];
3371         cm_return_val_if_fail(uri != NULL, -1);
3372
3373         /* an option to choose whether to use encode_uri or not ? */
3374         encode_uri(encoded_uri, BUFFSIZE, uri);
3375
3376         if (cmdline &&
3377             (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
3378             !strchr(p + 2, '%'))
3379                 g_snprintf(buf, sizeof(buf), cmdline, encoded_uri);
3380         else {
3381                 if (cmdline)
3382                         g_warning("Open URI command-line is invalid "
3383                                   "(there must be only one '%%s'): %s",
3384                                   cmdline);
3385                 g_snprintf(buf, sizeof(buf), DEFAULT_BROWSER_CMD, encoded_uri);
3386         }
3387
3388         execute_command_line(buf, TRUE);
3389 #else
3390         ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOW);
3391 #endif
3392         return 0;
3393 }
3394
3395 gint open_txt_editor(const gchar *filepath, const gchar *cmdline)
3396 {
3397         gchar buf[BUFFSIZE];
3398         gchar *p;
3399
3400         cm_return_val_if_fail(filepath != NULL, -1);
3401
3402         if (cmdline &&
3403             (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
3404             !strchr(p + 2, '%'))
3405                 g_snprintf(buf, sizeof(buf), cmdline, filepath);
3406         else {
3407                 if (cmdline)
3408                         g_warning("Open Text Editor command-line is invalid "
3409                                   "(there must be only one '%%s'): %s",
3410                                   cmdline);
3411                 g_snprintf(buf, sizeof(buf), DEFAULT_EDITOR_CMD, filepath);
3412         }
3413
3414         execute_command_line(buf, TRUE);
3415
3416         return 0;
3417 }
3418
3419 time_t remote_tzoffset_sec(const gchar *zone)
3420 {
3421         static gchar ustzstr[] = "PSTPDTMSTMDTCSTCDTESTEDT";
3422         gchar zone3[4];
3423         gchar *p;
3424         gchar c;
3425         gint iustz;
3426         gint offset;
3427         time_t remoteoffset;
3428
3429         strncpy(zone3, zone, 3);
3430         zone3[3] = '\0';
3431         remoteoffset = 0;
3432
3433         if (sscanf(zone, "%c%d", &c, &offset) == 2 &&
3434             (c == '+' || c == '-')) {
3435                 remoteoffset = ((offset / 100) * 60 + (offset % 100)) * 60;
3436                 if (c == '-')
3437                         remoteoffset = -remoteoffset;
3438         } else if (!strncmp(zone, "UT" , 2) ||
3439                    !strncmp(zone, "GMT", 3)) {
3440                 remoteoffset = 0;
3441         } else if (strlen(zone3) == 3) {
3442                 for (p = ustzstr; *p != '\0'; p += 3) {
3443                         if (!g_ascii_strncasecmp(p, zone3, 3)) {
3444                                 iustz = ((gint)(p - ustzstr) / 3 + 1) / 2 - 8;
3445                                 remoteoffset = iustz * 3600;
3446                                 break;
3447                         }
3448                 }
3449                 if (*p == '\0')
3450                         return -1;
3451         } else if (strlen(zone3) == 1) {
3452                 switch (zone[0]) {
3453                 case 'Z': remoteoffset =   0; break;
3454                 case 'A': remoteoffset =  -1; break;
3455                 case 'B': remoteoffset =  -2; break;
3456                 case 'C': remoteoffset =  -3; break;
3457                 case 'D': remoteoffset =  -4; break;
3458                 case 'E': remoteoffset =  -5; break;
3459                 case 'F': remoteoffset =  -6; break;
3460                 case 'G': remoteoffset =  -7; break;
3461                 case 'H': remoteoffset =  -8; break;
3462                 case 'I': remoteoffset =  -9; break;
3463                 case 'K': remoteoffset = -10; break; /* J is not used */
3464                 case 'L': remoteoffset = -11; break;
3465                 case 'M': remoteoffset = -12; break;
3466                 case 'N': remoteoffset =   1; break;
3467                 case 'O': remoteoffset =   2; break;
3468                 case 'P': remoteoffset =   3; break;
3469                 case 'Q': remoteoffset =   4; break;
3470                 case 'R': remoteoffset =   5; break;
3471                 case 'S': remoteoffset =   6; break;
3472                 case 'T': remoteoffset =   7; break;
3473                 case 'U': remoteoffset =   8; break;
3474                 case 'V': remoteoffset =   9; break;
3475                 case 'W': remoteoffset =  10; break;
3476                 case 'X': remoteoffset =  11; break;
3477                 case 'Y': remoteoffset =  12; break;
3478                 default:  remoteoffset =   0; break;
3479                 }
3480                 remoteoffset = remoteoffset * 3600;
3481         } else
3482                 return -1;
3483
3484         return remoteoffset;
3485 }
3486
3487 time_t tzoffset_sec(time_t *now)
3488 {
3489         struct tm gmt, *lt;
3490         gint off;
3491         struct tm buf1, buf2;
3492 #ifdef G_OS_WIN32
3493         if (now && *now < 0)
3494                 return 0;
3495 #endif  
3496         gmt = *gmtime_r(now, &buf1);
3497         lt = localtime_r(now, &buf2);
3498
3499         off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
3500
3501         if (lt->tm_year < gmt.tm_year)
3502                 off -= 24 * 60;
3503         else if (lt->tm_year > gmt.tm_year)
3504                 off += 24 * 60;
3505         else if (lt->tm_yday < gmt.tm_yday)
3506                 off -= 24 * 60;
3507         else if (lt->tm_yday > gmt.tm_yday)
3508                 off += 24 * 60;
3509
3510         if (off >= 24 * 60)             /* should be impossible */
3511                 off = 23 * 60 + 59;     /* if not, insert silly value */
3512         if (off <= -24 * 60)
3513                 off = -(23 * 60 + 59);
3514
3515         return off * 60;
3516 }
3517
3518 /* calculate timezone offset */
3519 gchar *tzoffset(time_t *now)
3520 {
3521         static gchar offset_string[6];
3522         struct tm gmt, *lt;
3523         gint off;
3524         gchar sign = '+';
3525         struct tm buf1, buf2;
3526 #ifdef G_OS_WIN32
3527         if (now && *now < 0)
3528                 return 0;
3529 #endif
3530         gmt = *gmtime_r(now, &buf1);
3531         lt = localtime_r(now, &buf2);
3532
3533         off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
3534
3535         if (lt->tm_year < gmt.tm_year)
3536                 off -= 24 * 60;
3537         else if (lt->tm_year > gmt.tm_year)
3538                 off += 24 * 60;
3539         else if (lt->tm_yday < gmt.tm_yday)
3540                 off -= 24 * 60;
3541         else if (lt->tm_yday > gmt.tm_yday)
3542                 off += 24 * 60;
3543
3544         if (off < 0) {
3545                 sign = '-';
3546                 off = -off;
3547         }
3548
3549         if (off >= 24 * 60)             /* should be impossible */
3550                 off = 23 * 60 + 59;     /* if not, insert silly value */
3551
3552         sprintf(offset_string, "%c%02d%02d", sign, off / 60, off % 60);
3553
3554         return offset_string;
3555 }
3556
3557 void get_rfc822_date(gchar *buf, gint len)
3558 {
3559         struct tm *lt;
3560         time_t t;
3561         gchar day[4], mon[4];
3562         gint dd, hh, mm, ss, yyyy;
3563         struct tm buf1;
3564         gchar buf2[BUFFSIZE];
3565
3566         t = time(NULL);
3567         lt = localtime_r(&t, &buf1);
3568
3569         sscanf(asctime_r(lt, buf2), "%3s %3s %d %d:%d:%d %d\n",
3570                day, mon, &dd, &hh, &mm, &ss, &yyyy);
3571
3572         g_snprintf(buf, len, "%s, %d %s %d %02d:%02d:%02d %s",
3573                    day, dd, mon, yyyy, hh, mm, ss, tzoffset(&t));
3574 }
3575
3576 void debug_set_mode(gboolean mode)
3577 {
3578         debug_mode = mode;
3579 }
3580
3581 gboolean debug_get_mode(void)
3582 {
3583         return debug_mode;
3584 }
3585
3586 void debug_print_real(const gchar *format, ...)
3587 {
3588         va_list args;
3589         gchar buf[BUFFSIZE];
3590
3591         if (!debug_mode) return;
3592
3593         va_start(args, format);
3594         g_vsnprintf(buf, sizeof(buf), format, args);
3595         va_end(args);
3596
3597         g_print("%s", buf);
3598 }
3599
3600
3601 const char * debug_srcname(const char *file)
3602 {
3603         const char *s = strrchr (file, '/');
3604         return s? s+1:file;
3605 }
3606
3607
3608 void * subject_table_lookup(GHashTable *subject_table, gchar * subject)
3609 {
3610         if (subject == NULL)
3611                 subject = "";
3612         else
3613                 subject += subject_get_prefix_length(subject);
3614
3615         return g_hash_table_lookup(subject_table, subject);
3616 }
3617
3618 void subject_table_insert(GHashTable *subject_table, gchar * subject,
3619                           void * data)
3620 {
3621         if (subject == NULL || *subject == 0)
3622                 return;
3623         subject += subject_get_prefix_length(subject);
3624         g_hash_table_insert(subject_table, subject, data);
3625 }
3626
3627 void subject_table_remove(GHashTable *subject_table, gchar * subject)
3628 {
3629         if (subject == NULL)
3630                 return;
3631
3632         subject += subject_get_prefix_length(subject);
3633         g_hash_table_remove(subject_table, subject);
3634 }
3635
3636 static regex_t u_regex;
3637 static gboolean u_init_;
3638
3639 void utils_free_regex(void)
3640 {
3641         if (u_init_) {
3642                 regfree(&u_regex);
3643                 u_init_ = FALSE;
3644         }
3645 }
3646
3647 /*!
3648  *\brief        Check if a string is prefixed with known (combinations)
3649  *              of prefixes. The function assumes that each prefix
3650  *              is terminated by zero or exactly _one_ space.
3651  *
3652  *\param        str String to check for a prefixes
3653  *
3654  *\return       int Number of chars in the prefix that should be skipped
3655  *              for a "clean" subject line. If no prefix was found, 0
3656  *              is returned.
3657  */
3658 int subject_get_prefix_length(const gchar *subject)
3659 {
3660         /*!< Array with allowable reply prefixes regexps. */
3661         static const gchar * const prefixes[] = {
3662                 "Re\\:",                        /* "Re:" */
3663                 "Re\\[[1-9][0-9]*\\]\\:",       /* "Re[XXX]:" (non-conforming news mail clients) */
3664                 "Antw\\:",                      /* "Antw:" (Dutch / German Outlook) */
3665                 "Aw\\:",                        /* "Aw:"   (German) */
3666                 "Antwort\\:",                   /* "Antwort:" (German Lotus Notes) */
3667                 "Res\\:",                       /* "Res:" (Spanish/Brazilian Outlook) */
3668                 "Fw\\:",                        /* "Fw:" Forward */
3669                 "Fwd\\:",                       /* "Fwd:" Forward */
3670                 "Enc\\:",                       /* "Enc:" Forward (Brazilian Outlook) */
3671                 "Odp\\:",                       /* "Odp:" Re (Polish Outlook) */
3672                 "Rif\\:",                       /* "Rif:" (Italian Outlook) */
3673                 "Sv\\:",                        /* "Sv" (Norwegian) */
3674                 "Vs\\:",                        /* "Vs" (Norwegian) */
3675                 "Ad\\:",                        /* "Ad" (Norwegian) */
3676                 "\347\255\224\345\244\215\\:",  /* "Re" (Chinese, UTF-8) */
3677                 "R\303\251f\\. \\:",            /* "R�f. :" (French Lotus Notes) */
3678                 "Re \\:",                       /* "Re :" (French Yahoo Mail) */
3679                 /* add more */
3680         };
3681         const int PREFIXES = sizeof prefixes / sizeof prefixes[0];
3682         int n;
3683         regmatch_t pos;
3684
3685         if (!subject) return 0;
3686         if (!*subject) return 0;
3687
3688         if (!u_init_) {
3689                 GString *s = g_string_new("");
3690
3691                 for (n = 0; n < PREFIXES; n++)
3692                         /* Terminate each prefix regexpression by a
3693                          * "\ ?" (zero or ONE space), and OR them */
3694                         g_string_append_printf(s, "(%s\\ ?)%s",
3695                                           prefixes[n],
3696                                           n < PREFIXES - 1 ?
3697                                           "|" : "");
3698
3699                 g_string_prepend(s, "(");
3700                 g_string_append(s, ")+");       /* match at least once */
3701                 g_string_prepend(s, "^\\ *");   /* from beginning of line */
3702
3703
3704                 /* We now have something like "^\ *((PREFIX1\ ?)|(PREFIX2\ ?))+"
3705                  * TODO: Should this be       "^\ *(((PREFIX1)|(PREFIX2))\ ?)+" ??? */
3706                 if (regcomp(&u_regex, s->str, REG_EXTENDED | REG_ICASE)) {
3707                         debug_print("Error compiling regexp %s\n", s->str);
3708                         g_string_free(s, TRUE);
3709                         return 0;
3710                 } else {
3711                         u_init_ = TRUE;
3712                         g_string_free(s, TRUE);
3713                 }
3714         }
3715
3716         if (!regexec(&u_regex, subject, 1, &pos, 0) && pos.rm_so != -1)
3717                 return pos.rm_eo;
3718         else
3719                 return 0;
3720 }
3721
3722 static guint g_stricase_hash(gconstpointer gptr)
3723 {
3724         guint hash_result = 0;
3725         const char *str;
3726
3727         for (str = gptr; str && *str; str++) {
3728                 hash_result += toupper(*str);
3729         }
3730
3731         return hash_result;
3732 }
3733
3734 static gint g_stricase_equal(gconstpointer gptr1, gconstpointer gptr2)
3735 {
3736         const char *str1 = gptr1;
3737         const char *str2 = gptr2;
3738
3739         return !strcasecmp(str1, str2);
3740 }
3741
3742 gint g_int_compare(gconstpointer a, gconstpointer b)
3743 {
3744         return GPOINTER_TO_INT(a) - GPOINTER_TO_INT(b);
3745 }
3746
3747 gchar *generate_msgid(gchar *buf, gint len, gchar *user_addr)
3748 {
3749         struct tm *lt;
3750         time_t t;
3751         gchar *addr;
3752         struct tm buft;
3753
3754         t = time(NULL);
3755         lt = localtime_r(&t, &buft);
3756
3757         if (user_addr != NULL)
3758               addr = g_strdup_printf(".%s", user_addr);
3759         else if (strlen(buf) != 0)
3760               addr = g_strdup_printf("@%s", buf);
3761         else
3762               addr = g_strdup_printf("@%s", get_domain_name());
3763
3764         /* Replace all @ but the last one in addr, with underscores.
3765          * RFC 2822 States that msg-id syntax only allows one @.
3766          */
3767         while (strchr(addr, '@') != NULL && strchr(addr, '@') != strrchr(addr, '@'))
3768                 *(strchr(addr, '@')) = '_';
3769
3770         g_snprintf(buf, len, "%04d%02d%02d%02d%02d%02d.%08x%s",
3771                    lt->tm_year + 1900, lt->tm_mon + 1,
3772                    lt->tm_mday, lt->tm_hour,
3773                    lt->tm_min, lt->tm_sec,
3774                    (guint) rand(), addr);
3775
3776         g_free(addr);
3777         return buf;
3778 }
3779
3780 /*
3781    quote_cmd_argument()
3782
3783    return a quoted string safely usable in argument of a command.
3784
3785    code is extracted and adapted from etPan! project -- DINH V. Ho�.
3786 */
3787
3788 gint quote_cmd_argument(gchar * result, guint size,
3789                         const gchar * path)
3790 {
3791         const gchar * p;
3792         gchar * result_p;
3793         guint remaining;
3794
3795         result_p = result;
3796         remaining = size;
3797
3798         for(p = path ; * p != '\0' ; p ++) {
3799
3800                 if (isalnum((guchar)*p) || (* p == '/')) {
3801                         if (remaining > 0) {
3802                                 * result_p = * p;
3803                                 result_p ++;
3804                                 remaining --;
3805                         }
3806                         else {
3807                                 result[size - 1] = '\0';
3808                                 return -1;
3809                         }
3810                 }
3811                 else {
3812                         if (remaining >= 2) {
3813                                 * result_p = '\\';
3814                                 result_p ++;
3815                                 * result_p = * p;
3816                                 result_p ++;
3817                                 remaining -= 2;
3818                         }
3819                         else {
3820                                 result[size - 1] = '\0';
3821                                 return -1;
3822                         }
3823                 }
3824         }
3825         if (remaining > 0) {
3826                 * result_p = '\0';
3827         }
3828         else {
3829                 result[size - 1] = '\0';
3830                 return -1;
3831         }
3832
3833         return 0;
3834 }
3835
3836 typedef struct
3837 {
3838         GNode           *parent;
3839         GNodeMapFunc     func;
3840         gpointer         data;
3841 } GNodeMapData;
3842
3843 static void g_node_map_recursive(GNode *node, gpointer data)
3844 {
3845         GNodeMapData *mapdata = (GNodeMapData *) data;
3846         GNode *newnode;
3847         GNodeMapData newmapdata;
3848         gpointer newdata;
3849
3850         newdata = mapdata->func(node->data, mapdata->data);
3851         if (newdata != NULL) {
3852                 newnode = g_node_new(newdata);
3853                 g_node_append(mapdata->parent, newnode);
3854
3855                 newmapdata.parent = newnode;
3856                 newmapdata.func = mapdata->func;
3857                 newmapdata.data = mapdata->data;
3858
3859                 g_node_children_foreach(node, G_TRAVERSE_ALL, g_node_map_recursive, &newmapdata);
3860         }
3861 }
3862
3863 GNode *g_node_map(GNode *node, GNodeMapFunc func, gpointer data)
3864 {
3865         GNode *root;
3866         GNodeMapData mapdata;
3867
3868         cm_return_val_if_fail(node != NULL, NULL);
3869         cm_return_val_if_fail(func != NULL, NULL);
3870
3871         root = g_node_new(func(node->data, data));
3872
3873         mapdata.parent = root;
3874         mapdata.func = func;
3875         mapdata.data = data;
3876
3877         g_node_children_foreach(node, G_TRAVERSE_ALL, g_node_map_recursive, &mapdata);
3878
3879         return root;
3880 }
3881
3882 #define HEX_TO_INT(val, hex)                    \
3883 {                                               \
3884         gchar c = hex;                          \
3885                                                 \
3886         if ('0' <= c && c <= '9') {             \
3887                 val = c - '0';                  \
3888         } else if ('a' <= c && c <= 'f') {      \
3889                 val = c - 'a' + 10;             \
3890         } else if ('A' <= c && c <= 'F') {      \
3891                 val = c - 'A' + 10;             \
3892         } else {                                \
3893                 val = -1;                       \
3894         }                                       \
3895 }
3896
3897 gboolean get_hex_value(guchar *out, gchar c1, gchar c2)
3898 {
3899         gint hi, lo;
3900
3901         HEX_TO_INT(hi, c1);
3902         HEX_TO_INT(lo, c2);
3903
3904         if (hi == -1 || lo == -1)
3905                 return FALSE;
3906
3907         *out = (hi << 4) + lo;
3908         return TRUE;
3909 }
3910
3911 #define INT_TO_HEX(hex, val)            \
3912 {                                       \
3913         if ((val) < 10)                 \
3914                 hex = '0' + (val);      \
3915         else                            \
3916                 hex = 'A' + (val) - 10; \
3917 }
3918
3919 void get_hex_str(gchar *out, guchar ch)
3920 {
3921         gchar hex;
3922
3923         INT_TO_HEX(hex, ch >> 4);
3924         *out++ = hex;
3925         INT_TO_HEX(hex, ch & 0x0f);
3926         *out   = hex;
3927 }
3928
3929 #undef REF_DEBUG
3930 #ifndef REF_DEBUG
3931 #define G_PRINT_REF 1 == 1 ? (void) 0 : (void)
3932 #else
3933 #define G_PRINT_REF g_print
3934 #endif
3935
3936 /*!
3937  *\brief        Register ref counted pointer. It is based on GBoxed, so should
3938  *              work with anything that uses the GType system. The semantics
3939  *              are similar to a C++ auto pointer, with the exception that
3940  *              C doesn't have automatic closure (calling destructors) when
3941  *              exiting a block scope.
3942  *              Use the \ref G_TYPE_AUTO_POINTER macro instead of calling this
3943  *              function directly.
3944  *
3945  *\return       GType A GType type.
3946  */
3947 GType g_auto_pointer_register(void)
3948 {
3949         static GType auto_pointer_type;
3950         if (!auto_pointer_type)
3951                 auto_pointer_type =
3952                         g_boxed_type_register_static
3953                                 ("G_TYPE_AUTO_POINTER",
3954                                  (GBoxedCopyFunc) g_auto_pointer_copy,
3955                                  (GBoxedFreeFunc) g_auto_pointer_free);
3956         return auto_pointer_type;
3957 }
3958
3959 /*!
3960  *\brief        Structure with g_new() allocated pointer guarded by the
3961  *              auto pointer
3962  */
3963 typedef struct AutoPointerRef {
3964         void          (*free) (gpointer);
3965         gpointer        pointer;
3966         glong           cnt;
3967 } AutoPointerRef;
3968
3969 /*!
3970  *\brief        The auto pointer opaque structure that references the
3971  *              pointer guard block.
3972  */
3973 typedef struct AutoPointer {
3974         AutoPointerRef *ref;
3975         gpointer        ptr; /*!< access to protected pointer */
3976 } AutoPointer;
3977
3978 /*!
3979  *\brief        Creates an auto pointer for a g_new()ed pointer. Example:
3980  *
3981  *\code
3982  *
3983  *              ... tell gtk_list_store it should use a G_TYPE_AUTO_POINTER
3984  *              ... when assigning, copying and freeing storage elements
3985  *
3986  *              gtk_list_store_new(N_S_COLUMNS,
3987  *                                 G_TYPE_AUTO_POINTER,
3988  *                                 -1);
3989  *
3990  *
3991  *              Template *precious_data = g_new0(Template, 1);
3992  *              g_pointer protect = g_auto_pointer_new(precious_data);
3993  *
3994  *              gtk_list_store_set(container, &iter,
3995  *                                 S_DATA, protect,
3996  *                                 -1);
3997  *
3998  *              ... the gtk_list_store has copied the pointer and
3999  *              ... incremented its reference count, we should free
4000  *              ... the auto pointer (in C++ a destructor would do
4001  *              ... this for us when leaving block scope)
4002  *
4003  *              g_auto_pointer_free(protect);
4004  *
4005  *              ... gtk_list_store_set() now manages the data. When
4006  *              ... *explicitly* requesting a pointer from the list
4007  *              ... store, don't forget you get a copy that should be
4008  *              ... freed with g_auto_pointer_free() eventually.
4009  *
4010  *\endcode
4011  *
4012  *\param        pointer Pointer to be guarded.
4013  *
4014  *\return       GAuto * Pointer that should be used in containers with
4015  *              GType support.
4016  */
4017 GAuto *g_auto_pointer_new(gpointer p)
4018 {
4019         AutoPointerRef *ref;
4020         AutoPointer    *ptr;
4021
4022         if (p == NULL)
4023                 return NULL;
4024
4025         ref = g_new0(AutoPointerRef, 1);
4026         ptr = g_new0(AutoPointer, 1);
4027
4028         ref->pointer = p;
4029         ref->free = g_free;
4030         ref->cnt = 1;
4031
4032         ptr->ref = ref;
4033         ptr->ptr = p;
4034
4035 #ifdef REF_DEBUG
4036         G_PRINT_REF ("XXXX ALLOC(%lx)\n", p);
4037 #endif
4038         return ptr;
4039 }
4040
4041 /*!
4042  *\brief        Allocate an autopointer using the passed \a free function to
4043  *              free the guarded pointer
4044  */
4045 GAuto *g_auto_pointer_new_with_free(gpointer p, GFreeFunc free_)
4046 {
4047         AutoPointer *aptr;
4048
4049         if (p == NULL)
4050                 return NULL;
4051
4052         aptr = g_auto_pointer_new(p);
4053         aptr->ref->free = free_;
4054         return aptr;
4055 }
4056
4057 gpointer g_auto_pointer_get_ptr(GAuto *auto_ptr)
4058 {
4059         if (auto_ptr == NULL)
4060                 return NULL;
4061         return ((AutoPointer *) auto_ptr)->ptr;
4062 }
4063
4064 /*!
4065  *\brief        Copies an auto pointer by. It's mostly not necessary
4066  *              to call this function directly, unless you copy/assign
4067  *              the guarded pointer.
4068  *
4069  *\param        auto_ptr Auto pointer returned by previous call to
4070  *              g_auto_pointer_new_XXX()
4071  *
4072  *\return       gpointer An auto pointer
4073  */
4074 GAuto *g_auto_pointer_copy(GAuto *auto_ptr)
4075 {
4076         AutoPointer     *ptr;
4077         AutoPointerRef  *ref;
4078         AutoPointer     *newp;
4079
4080         if (auto_ptr == NULL)
4081                 return NULL;
4082
4083         ptr = auto_ptr;
4084         ref = ptr->ref;
4085         newp = g_new0(AutoPointer, 1);
4086
4087         newp->ref = ref;
4088         newp->ptr = ref->pointer;
4089         ++(ref->cnt);
4090
4091 #ifdef REF_DEBUG
4092         G_PRINT_REF ("XXXX COPY(%lx) -- REF (%d)\n", ref->pointer, ref->cnt);
4093 #endif
4094         return newp;
4095 }
4096
4097 /*!
4098  *\brief        Free an auto pointer
4099  */
4100 void g_auto_pointer_free(GAuto *auto_ptr)
4101 {
4102         AutoPointer     *ptr;
4103         AutoPointerRef  *ref;
4104
4105         if (auto_ptr == NULL)
4106                 return;
4107
4108         ptr = auto_ptr;
4109         ref = ptr->ref;
4110
4111         if (--(ref->cnt) == 0) {
4112 #ifdef REF_DEBUG
4113                 G_PRINT_REF ("XXXX FREE(%lx) -- REF (%d)\n", ref->pointer, ref->cnt);
4114 #endif
4115                 ref->free(ref->pointer);
4116                 g_free(ref);
4117         }
4118 #ifdef REF_DEBUG
4119         else
4120                 G_PRINT_REF ("XXXX DEREF(%lx) -- REF (%d)\n", ref->pointer, ref->cnt);
4121 #endif
4122         g_free(ptr);
4123 }
4124
4125 void replace_returns(gchar *str)
4126 {
4127         if (!str)
4128                 return;
4129
4130         while (strstr(str, "\n")) {
4131                 *strstr(str, "\n") = ' ';
4132         }
4133         while (strstr(str, "\r")) {
4134                 *strstr(str, "\r") = ' ';
4135         }
4136 }
4137
4138 /* get_uri_part() - retrieves a URI starting from scanpos.
4139                     Returns TRUE if succesful */
4140 gboolean get_uri_part(const gchar *start, const gchar *scanpos,
4141                              const gchar **bp, const gchar **ep, gboolean hdr)
4142 {
4143         const gchar *ep_;
4144         gint parenthese_cnt = 0;
4145
4146         cm_return_val_if_fail(start != NULL, FALSE);
4147         cm_return_val_if_fail(scanpos != NULL, FALSE);
4148         cm_return_val_if_fail(bp != NULL, FALSE);
4149         cm_return_val_if_fail(ep != NULL, FALSE);
4150
4151         *bp = scanpos;
4152
4153         /* find end point of URI */
4154         for (ep_ = scanpos; *ep_ != '\0'; ep_++) {
4155                 if (!g_ascii_isgraph(*(const guchar *)ep_) ||
4156                     !IS_ASCII(*(const guchar *)ep_) ||
4157                     strchr("[]{}<>\"", *ep_)) {
4158                         break;
4159                 } else if (strchr("(", *ep_)) {
4160                         parenthese_cnt++;
4161                 } else if (strchr(")", *ep_)) {
4162                         if (parenthese_cnt > 0)
4163                                 parenthese_cnt--;
4164                         else
4165                                 break;
4166                 }
4167         }
4168
4169         /* no punctuation at end of string */
4170
4171         /* FIXME: this stripping of trailing punctuations may bite with other URIs.
4172          * should pass some URI type to this function and decide on that whether
4173          * to perform punctuation stripping */
4174
4175 #define IS_REAL_PUNCT(ch)       (g_ascii_ispunct(ch) && !strchr("/?=-_)", ch))
4176
4177         for (; ep_ - 1 > scanpos + 1 &&
4178                IS_REAL_PUNCT(*(ep_ - 1));
4179              ep_--)
4180                 ;
4181
4182 #undef IS_REAL_PUNCT
4183
4184         *ep = ep_;
4185
4186         return TRUE;
4187 }
4188
4189 gchar *make_uri_string(const gchar *bp, const gchar *ep)
4190 {
4191         while (bp && *bp && g_ascii_isspace(*bp))
4192                 bp++;
4193         return g_strndup(bp, ep - bp);
4194 }
4195
4196 /* valid mail address characters */
4197 #define IS_RFC822_CHAR(ch) \
4198         (IS_ASCII(ch) && \
4199          (ch) > 32   && \
4200          (ch) != 127 && \
4201          !g_ascii_isspace(ch) && \
4202          !strchr("(),;<>\"", (ch)))
4203
4204 /* alphabet and number within 7bit ASCII */
4205 #define IS_ASCII_ALNUM(ch)      (IS_ASCII(ch) && g_ascii_isalnum(ch))
4206 #define IS_QUOTE(ch) ((ch) == '\'' || (ch) == '"')
4207
4208 static GHashTable *create_domain_tab(void)
4209 {
4210         gint n;
4211         GHashTable *htab = g_hash_table_new(g_stricase_hash, g_stricase_equal);
4212
4213         cm_return_val_if_fail(htab, NULL);
4214         for (n = 0; n < sizeof toplvl_domains / sizeof toplvl_domains[0]; n++)
4215                 g_hash_table_insert(htab, (gpointer) toplvl_domains[n], (gpointer) toplvl_domains[n]);
4216         return htab;
4217 }
4218
4219 static gboolean is_toplvl_domain(GHashTable *tab, const gchar *first, const gchar *last)
4220 {
4221         const gint MAX_LVL_DOM_NAME_LEN = 6;
4222         gchar buf[MAX_LVL_DOM_NAME_LEN + 1];
4223         const gchar *m = buf + MAX_LVL_DOM_NAME_LEN + 1;
4224         register gchar *p;
4225
4226         if (last - first > MAX_LVL_DOM_NAME_LEN || first > last)
4227                 return FALSE;
4228
4229         for (p = buf; p < m &&  first < last; *p++ = *first++)
4230                 ;
4231         *p = 0;
4232
4233         return g_hash_table_lookup(tab, buf) != NULL;
4234 }
4235
4236 /* get_email_part() - retrieves an email address. Returns TRUE if succesful */
4237 gboolean get_email_part(const gchar *start, const gchar *scanpos,
4238                                const gchar **bp, const gchar **ep, gboolean hdr)
4239 {
4240         /* more complex than the uri part because we need to scan back and forward starting from
4241          * the scan position. */
4242         gboolean result = FALSE;
4243         const gchar *bp_ = NULL;
4244         const gchar *ep_ = NULL;
4245         static GHashTable *dom_tab;
4246         const gchar *last_dot = NULL;
4247         const gchar *prelast_dot = NULL;
4248         const gchar *last_tld_char = NULL;
4249
4250         /* the informative part of the email address (describing the name
4251          * of the email address owner) may contain quoted parts. the
4252          * closure stack stores the last encountered quotes. */
4253         gchar closure_stack[128];
4254         gchar *ptr = closure_stack;
4255
4256         cm_return_val_if_fail(start != NULL, FALSE);
4257         cm_return_val_if_fail(scanpos != NULL, FALSE);
4258         cm_return_val_if_fail(bp != NULL, FALSE);
4259         cm_return_val_if_fail(ep != NULL, FALSE);
4260
4261         if (hdr) {
4262                 const gchar *start_quote = NULL;
4263                 const gchar *end_quote = NULL;
4264 search_again:
4265                 /* go to the real start */
4266                 if (start[0] == ',')
4267                         start++;
4268                 if (start[0] == ';')
4269                         start++;
4270                 while (start[0] == '\n' || start[0] == '\r')
4271                         start++;
4272                 while (start[0] == ' ' || start[0] == '\t')
4273                         start++;
4274
4275                 *bp = start;
4276                 
4277                 /* check if there are quotes (to skip , in them) */
4278                 if (*start == '"') {
4279                         start_quote = start;
4280                         start++;
4281                         end_quote = strstr(start, "\"");
4282                 } else {
4283                         start_quote = NULL;
4284                         end_quote = NULL;
4285                 }
4286                 
4287                 /* skip anything between quotes */
4288                 if (start_quote && end_quote) {
4289                         start = end_quote;
4290                         
4291                 } 
4292
4293                 /* find end (either , or ; or end of line) */
4294                 if (strstr(start, ",") && strstr(start, ";"))
4295                         *ep = strstr(start,",") < strstr(start, ";")
4296                                 ? strstr(start, ",") : strstr(start, ";");
4297                 else if (strstr(start, ","))
4298                         *ep = strstr(start, ",");
4299                 else if (strstr(start, ";"))
4300                         *ep = strstr(start, ";");
4301                 else
4302                         *ep = start+strlen(start);
4303
4304                 /* go back to real start */
4305                 if (start_quote && end_quote) {
4306                         start = start_quote;
4307                 }
4308
4309                 /* check there's still an @ in that, or search
4310                  * further if possible */
4311                 if (strstr(start, "@") && strstr(start, "@") < *ep)
4312                         return TRUE;
4313                 else if (*ep < start+strlen(start)) {
4314                         start = *ep;
4315                         goto search_again;
4316                 } else if (start_quote && strstr(start, "\"") && strstr(start, "\"") < *ep) {
4317                         *bp = start_quote;
4318                         return TRUE;
4319                 } else
4320                         return FALSE;
4321         }
4322
4323         if (!dom_tab)
4324                 dom_tab = create_domain_tab();
4325         cm_return_val_if_fail(dom_tab, FALSE);
4326
4327         /* scan start of address */
4328         for (bp_ = scanpos - 1;
4329              bp_ >= start && IS_RFC822_CHAR(*(const guchar *)bp_); bp_--)
4330                 ;
4331
4332         /* TODO: should start with an alnum? */
4333         bp_++;
4334         for (; bp_ < scanpos && !IS_ASCII_ALNUM(*(const guchar *)bp_); bp_++)
4335                 ;
4336
4337         if (bp_ != scanpos) {
4338                 /* scan end of address */
4339                 for (ep_ = scanpos + 1;
4340                      *ep_ && IS_RFC822_CHAR(*(const guchar *)ep_); ep_++)
4341                         if (*ep_ == '.') {
4342                                 prelast_dot = last_dot;
4343                                 last_dot = ep_;
4344                                 if (*(last_dot + 1) == '.') {
4345                                         if (prelast_dot == NULL)
4346                                                 return FALSE;
4347                                         last_dot = prelast_dot;
4348                                         break;
4349                                 }
4350                         }
4351
4352                 /* TODO: really should terminate with an alnum? */
4353                 for (; ep_ > scanpos && !IS_ASCII_ALNUM(*(const guchar *)ep_);
4354                      --ep_)
4355                         ;
4356                 ep_++;
4357
4358                 if (last_dot == NULL)
4359                         return FALSE;
4360                 if (last_dot >= ep_)
4361                         last_dot = prelast_dot;
4362                 if (last_dot == NULL || (scanpos + 1 >= last_dot))
4363                         return FALSE;
4364                 last_dot++;
4365
4366                 for (last_tld_char = last_dot; last_tld_char < ep_; last_tld_char++)
4367                         if (*last_tld_char == '?')
4368                                 break;
4369
4370                 if (is_toplvl_domain(dom_tab, last_dot, last_tld_char))
4371                         result = TRUE;
4372
4373                 *ep = ep_;
4374                 *bp = bp_;
4375         }
4376
4377         if (!result) return FALSE;
4378
4379         if (*ep_ && bp_ != start && *(bp_ - 1) == '"' && *(ep_) == '"'
4380         && *(ep_ + 1) == ' ' && *(ep_ + 2) == '<'
4381         && IS_RFC822_CHAR(*(ep_ + 3))) {
4382                 /* this informative part with an @ in it is
4383                  * followed by the email address */
4384                 ep_ += 3;
4385
4386                 /* go to matching '>' (or next non-rfc822 char, like \n) */
4387                 for (; *ep_ != '>' && *ep != '\0' && IS_RFC822_CHAR(*ep_); ep_++)
4388                         ;
4389
4390                 /* include the bracket */
4391                 if (*ep_ == '>') ep_++;
4392
4393                 /* include the leading quote */
4394                 bp_--;
4395
4396                 *ep = ep_;
4397                 *bp = bp_;
4398                 return TRUE;
4399         }
4400
4401         /* skip if it's between quotes "'alfons@proteus.demon.nl'" <alfons@proteus.demon.nl> */
4402         if (bp_ - 1 > start && IS_QUOTE(*(bp_ - 1)) && IS_QUOTE(*ep_))
4403                 return FALSE;
4404
4405         /* see if this is <bracketed>; in this case we also scan for the informative part. */
4406         if (bp_ - 1 <= start || *(bp_ - 1) != '<' || *ep_ != '>')
4407                 return TRUE;
4408
4409 #define FULL_STACK()    ((size_t) (ptr - closure_stack) >= sizeof closure_stack)
4410 #define IN_STACK()      (ptr > closure_stack)
4411 /* has underrun check */
4412 #define POP_STACK()     if(IN_STACK()) --ptr
4413 /* has overrun check */
4414 #define PUSH_STACK(c)   if(!FULL_STACK()) *ptr++ = (c); else return TRUE
4415 /* has underrun check */
4416 #define PEEK_STACK()    (IN_STACK() ? *(ptr - 1) : 0)
4417
4418         ep_++;
4419
4420         /* scan for the informative part. */
4421         for (bp_ -= 2; bp_ >= start; bp_--) {
4422                 /* if closure on the stack keep scanning */
4423                 if (PEEK_STACK() == *bp_) {
4424                         POP_STACK();
4425                         continue;
4426                 }
4427                 if (!IN_STACK() && (*bp_ == '\'' || *bp_ == '"')) {
4428                         PUSH_STACK(*bp_);
4429                         continue;
4430                 }
4431
4432                 /* if nothing in the closure stack, do the special conditions
4433                  * the following if..else expression simply checks whether
4434                  * a token is acceptable. if not acceptable, the clause
4435                  * should terminate the loop with a 'break' */
4436                 if (!PEEK_STACK()) {
4437                         if (*bp_ == '-'
4438                         && (((bp_ - 1) >= start) && isalnum(*(bp_ - 1)))
4439                         && (((bp_ + 1) < ep_)    && isalnum(*(bp_ + 1)))) {
4440                                 /* hyphens are allowed, but only in
4441                                    between alnums */
4442                         } else if (strchr(" \"'", *bp_)) {
4443                                 /* but anything not being a punctiation
4444                                    is ok */
4445                         } else {
4446                                 break; /* anything else is rejected */
4447                         }
4448                 }
4449         }
4450
4451         bp_++;
4452
4453         /* scan forward (should start with an alnum) */
4454         for (; *bp_ != '<' && isspace(*bp_) && *bp_ != '"'; bp_++)
4455                 ;
4456 #undef PEEK_STACK
4457 #undef PUSH_STACK
4458 #undef POP_STACK
4459 #undef IN_STACK
4460 #undef FULL_STACK
4461
4462
4463         *bp = bp_;
4464         *ep = ep_;
4465
4466         return result;
4467 }
4468
4469 #undef IS_QUOTE
4470 #undef IS_ASCII_ALNUM
4471 #undef IS_RFC822_CHAR
4472
4473 gchar *make_email_string(const gchar *bp, const gchar *ep)
4474 {
4475         /* returns a mailto: URI; mailto: is also used to detect the
4476          * uri type later on in the button_pressed signal handler */
4477         gchar *tmp;
4478         gchar *result;
4479         gchar *colon, *at;
4480
4481         tmp = g_strndup(bp, ep - bp);
4482
4483         /* If there is a colon in the username part of the address,
4484          * we're dealing with an URI for some other protocol - do
4485          * not prefix with mailto: in such case. */
4486         colon = strchr(tmp, ':');
4487         at = strchr(tmp, '@');
4488         if (colon != NULL && at != NULL && colon < at) {
4489                 result = tmp;
4490         } else {
4491                 result = g_strconcat("mailto:", tmp, NULL);
4492                 g_free(tmp);
4493         }
4494
4495         return result;
4496 }
4497
4498 gchar *make_http_string(const gchar *bp, const gchar *ep)
4499 {
4500         /* returns an http: URI; */
4501         gchar *tmp;
4502         gchar *result;
4503
4504         while (bp && *bp && g_ascii_isspace(*bp))
4505                 bp++;
4506         tmp = g_strndup(bp, ep - bp);
4507         result = g_strconcat("http://", tmp, NULL);
4508         g_free(tmp);
4509
4510         return result;
4511 }
4512
4513 static gchar *mailcap_get_command_in_file(const gchar *path, const gchar *type, const gchar *file_to_open)
4514 {
4515         FILE *fp = g_fopen(path, "rb");
4516         gchar buf[BUFFSIZE];
4517         gchar *result = NULL;
4518         if (!fp)
4519                 return NULL;
4520         while (fgets(buf, sizeof (buf), fp) != NULL) {
4521                 gchar **parts = g_strsplit(buf, ";", 3);
4522                 gchar *trimmed = parts[0];
4523                 while (trimmed[0] == ' ' || trimmed[0] == '\t')
4524                         trimmed++;
4525                 while (trimmed[strlen(trimmed)-1] == ' ' || trimmed[strlen(trimmed)-1] == '\t')
4526                         trimmed[strlen(trimmed)-1] = '\0';
4527
4528                 if (!strcmp(trimmed, type)) {
4529                         gboolean needsterminal = FALSE;
4530                         if (parts[2] && strstr(parts[2], "needsterminal")) {
4531                                 needsterminal = TRUE;
4532                         }
4533                         if (parts[2] && strstr(parts[2], "test=")) {
4534                                 gchar *orig_testcmd = g_strdup(strstr(parts[2], "test=")+5);
4535                                 gchar *testcmd = orig_testcmd;
4536                                 if (strstr(testcmd,";"))
4537                                         *(strstr(testcmd,";")) = '\0';
4538                                 while (testcmd[0] == ' ' || testcmd[0] == '\t')
4539                                         testcmd++;
4540                                 while (testcmd[strlen(testcmd)-1] == '\n')
4541                                         testcmd[strlen(testcmd)-1] = '\0';
4542                                 while (testcmd[strlen(testcmd)-1] == '\r')
4543                                         testcmd[strlen(testcmd)-1] = '\0';
4544                                 while (testcmd[strlen(testcmd)-1] == ' ' || testcmd[strlen(testcmd)-1] == '\t')
4545                                         testcmd[strlen(testcmd)-1] = '\0';
4546                                         
4547                                 if (strstr(testcmd, "%s")) {
4548                                         gchar *tmp = g_strdup_printf(testcmd, file_to_open);
4549                                         gint res = system(tmp);
4550                                         g_free(tmp);
4551                                         g_free(orig_testcmd);
4552                                         
4553                                         if (res != 0) {
4554                                                 g_strfreev(parts);
4555                                                 continue;
4556                                         }
4557                                 } else {
4558                                         gint res = system(testcmd);
4559                                         g_free(orig_testcmd);
4560                                         
4561                                         if (res != 0) {
4562                                                 g_strfreev(parts);
4563                                                 continue;
4564                                         }
4565                                 }
4566                         }
4567                         
4568                         trimmed = parts[1];
4569                         while (trimmed[0] == ' ' || trimmed[0] == '\t')
4570                                 trimmed++;
4571                         while (trimmed[strlen(trimmed)-1] == '\n')
4572                                 trimmed[strlen(trimmed)-1] = '\0';
4573                         while (trimmed[strlen(trimmed)-1] == '\r')
4574                                 trimmed[strlen(trimmed)-1] = '\0';
4575                         while (trimmed[strlen(trimmed)-1] == ' ' || trimmed[strlen(trimmed)-1] == '\t')
4576                                 trimmed[strlen(trimmed)-1] = '\0';
4577                         result = g_strdup(trimmed);
4578                         g_strfreev(parts);
4579                         fclose(fp);
4580                         if (needsterminal) {
4581                                 gchar *tmp = g_strdup_printf("xterm -e %s", result);
4582                                 g_free(result);
4583                                 result = tmp;
4584                         }
4585                         return result;
4586                 }
4587                 g_strfreev(parts);
4588         }
4589         fclose(fp);
4590         return NULL;
4591 }
4592 gchar *mailcap_get_command_for_type(const gchar *type, const gchar *file_to_open)
4593 {
4594         gchar *result = NULL;
4595         gchar *path = NULL;
4596         if (type == NULL)
4597                 return NULL;
4598         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".mailcap", NULL);
4599         result = mailcap_get_command_in_file(path, type, file_to_open);
4600         g_free(path);
4601         if (result)
4602                 return result;
4603         result = mailcap_get_command_in_file("/etc/mailcap", type, file_to_open);
4604         return result;
4605 }
4606
4607 void mailcap_update_default(const gchar *type, const gchar *command)
4608 {
4609         gchar *path = NULL, *outpath = NULL;
4610         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".mailcap", NULL);
4611         outpath = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".mailcap.new", NULL);
4612         FILE *fp = g_fopen(path, "rb");
4613         FILE *outfp = NULL;
4614         gchar buf[BUFFSIZE];
4615         gboolean err = FALSE;
4616
4617         if (!fp) {
4618                 fp = g_fopen(path, "a");
4619                 if (!fp) {
4620                         g_warning("failed to create file %s", path);
4621                         g_free(path);
4622                         g_free(outpath);
4623                         return;
4624                 }
4625                 fp = g_freopen(path, "rb", fp);
4626                 if (!fp) {
4627                         g_warning("failed to reopen file %s", path);
4628                         g_free(path);
4629                         g_free(outpath);
4630                         return;
4631                 }
4632         }
4633
4634         outfp = g_fopen(outpath, "wb");
4635         if (!outfp) {
4636                 g_warning("failed to create file %s", outpath);
4637                 g_free(path);
4638                 g_free(outpath);
4639                 fclose(fp);
4640                 return;
4641         }
4642         while (fp && fgets(buf, sizeof (buf), fp) != NULL) {
4643                 gchar **parts = g_strsplit(buf, ";", 3);
4644                 gchar *trimmed = parts[0];
4645                 while (trimmed[0] == ' ')
4646                         trimmed++;
4647                 while (trimmed[strlen(trimmed)-1] == ' ')
4648                         trimmed[strlen(trimmed)-1] = '\0';
4649
4650                 if (!strcmp(trimmed, type)) {
4651                         g_strfreev(parts);
4652                         continue;
4653                 }
4654                 else {
4655                         if(fputs(buf, outfp) == EOF) {
4656                                 err = TRUE;
4657                                 break;
4658                         }
4659                 }
4660                 g_strfreev(parts);
4661         }
4662         if (fprintf(outfp, "%s; %s\n", type, command) < 0)
4663                 err = TRUE;
4664
4665         if (fp)
4666                 fclose(fp);
4667
4668         if (fclose(outfp) == EOF)
4669                 err = TRUE;
4670                 
4671         if (!err)
4672                 g_rename(outpath, path);
4673
4674         g_free(path);
4675         g_free(outpath);
4676 }
4677
4678 gint copy_dir(const gchar *src, const gchar *dst)
4679 {
4680         GDir *dir;
4681         const gchar *name;
4682
4683         if ((dir = g_dir_open(src, 0, NULL)) == NULL) {
4684                 g_warning("failed to open directory: %s", src);
4685                 return -1;
4686         }
4687
4688         if (make_dir(dst) < 0)
4689                 return -1;
4690
4691         while ((name = g_dir_read_name(dir)) != NULL) {
4692                 gchar *old_file, *new_file;
4693                 old_file = g_strconcat(src, G_DIR_SEPARATOR_S, name, NULL);
4694                 new_file = g_strconcat(dst, G_DIR_SEPARATOR_S, name, NULL);
4695                 debug_print("copying: %s -> %s\n", old_file, new_file);
4696                 if (g_file_test(old_file, G_FILE_TEST_IS_REGULAR)) {
4697                         gint r = copy_file(old_file, new_file, TRUE);
4698                         if (r < 0) {
4699                                 g_dir_close(dir);
4700                                 return r;
4701                         }
4702                 }
4703 #ifndef G_OS_WIN32
4704                 /* Windows has no symlinks.  Or well, Vista seems to
4705                    have something like this but the semantics might be
4706                    different.  Thus we don't use it under Windows. */
4707                  else if (g_file_test(old_file, G_FILE_TEST_IS_SYMLINK)) {
4708                         GError *error = NULL;
4709                         gint r = 0;
4710                         gchar *target = g_file_read_link(old_file, &error);
4711                         if (target)
4712                                 r = symlink(target, new_file);
4713                         g_free(target);
4714                         if (r < 0) {
4715                                 g_dir_close(dir);
4716                                 return r;
4717                         }
4718                  }
4719 #endif /*G_OS_WIN32*/
4720                 else if (g_file_test(old_file, G_FILE_TEST_IS_DIR)) {
4721                         gint r = copy_dir(old_file, new_file);
4722                         if (r < 0) {
4723                                 g_dir_close(dir);
4724                                 return r;
4725                         }
4726                 }
4727         }
4728         g_dir_close(dir);
4729         return 0;
4730 }
4731
4732 /* crude test to see if a file is an email. */
4733 gboolean file_is_email (const gchar *filename)
4734 {
4735         FILE *fp = NULL;
4736         gchar buffer[2048];
4737         gint i = 0;
4738         gint score = 0;
4739         if (filename == NULL)
4740                 return FALSE;
4741         if ((fp = g_fopen(filename, "rb")) == NULL)
4742                 return FALSE;
4743         while (i < 60 && score < 3
4744                && fgets(buffer, sizeof (buffer), fp) > 0) {
4745                 if (!strncmp(buffer, "From:", strlen("From:")))
4746                         score++;
4747                 else if (!strncmp(buffer, "Date:", strlen("Date:")))
4748                         score++;
4749                 else if (!strncmp(buffer, "Message-ID:", strlen("Message-ID:")))
4750                         score++;
4751                 else if (!strncmp(buffer, "Subject:", strlen("Subject:")))
4752                         score++;
4753                 i++;
4754         }
4755         fclose(fp);
4756         return (score >= 3);
4757 }
4758
4759 gboolean sc_g_list_bigger(GList *list, gint max)
4760 {
4761         GList *cur = list;
4762         int i = 0;
4763         while (cur && i <= max+1) {
4764                 i++;
4765                 cur = cur->next;
4766         }
4767         return (i > max);
4768 }
4769
4770 gboolean sc_g_slist_bigger(GSList *list, gint max)
4771 {
4772         GSList *cur = list;
4773         int i = 0;
4774         while (cur && i <= max+1) {
4775                 i++;
4776                 cur = cur->next;
4777         }
4778         return (i > max);
4779 }
4780
4781 const gchar *daynames[] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
4782 const gchar *monthnames[] = {NULL, NULL, NULL, NULL, NULL, NULL, 
4783                              NULL, NULL, NULL, NULL, NULL, NULL};
4784 const gchar *s_daynames[] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
4785 const gchar *s_monthnames[] = {NULL, NULL, NULL, NULL, NULL, NULL, 
4786                              NULL, NULL, NULL, NULL, NULL, NULL};
4787
4788 gint daynames_len[] =     {0,0,0,0,0,0,0};
4789 gint monthnames_len[] =   {0,0,0,0,0,0,
4790                                  0,0,0,0,0,0};
4791 gint s_daynames_len[] =   {0,0,0,0,0,0,0};
4792 gint s_monthnames_len[] = {0,0,0,0,0,0,
4793                                  0,0,0,0,0,0};
4794 const gchar *s_am_up = NULL;
4795 const gchar *s_pm_up = NULL;
4796 const gchar *s_am_low = NULL;
4797 const gchar *s_pm_low = NULL;
4798
4799 gint s_am_up_len = 0;
4800 gint s_pm_up_len = 0;
4801 gint s_am_low_len = 0;
4802 gint s_pm_low_len = 0;
4803
4804 static gboolean time_names_init_done = FALSE;
4805
4806 static void init_time_names(void)
4807 {
4808         int i = 0;
4809
4810         daynames[0] = C_("Complete day name for use by strftime", "Sunday");
4811         daynames[1] = C_("Complete day name for use by strftime", "Monday");
4812         daynames[2] = C_("Complete day name for use by strftime", "Tuesday");
4813         daynames[3] = C_("Complete day name for use by strftime", "Wednesday");
4814         daynames[4] = C_("Complete day name for use by strftime", "Thursday");
4815         daynames[5] = C_("Complete day name for use by strftime", "Friday");
4816         daynames[6] = C_("Complete day name for use by strftime", "Saturday");
4817
4818         monthnames[0] = C_("Complete month name for use by strftime", "January");
4819         monthnames[1] = C_("Complete month name for use by strftime", "February");
4820         monthnames[2] = C_("Complete month name for use by strftime", "March");
4821         monthnames[3] = C_("Complete month name for use by strftime", "April");
4822         monthnames[4] = C_("Complete month name for use by strftime", "May");
4823         monthnames[5] = C_("Complete month name for use by strftime", "June");
4824         monthnames[6] = C_("Complete month name for use by strftime", "July");
4825         monthnames[7] = C_("Complete month name for use by strftime", "August");
4826         monthnames[8] = C_("Complete month name for use by strftime", "September");
4827         monthnames[9] = C_("Complete month name for use by strftime", "October");
4828         monthnames[10] = C_("Complete month name for use by strftime", "November");
4829         monthnames[11] = C_("Complete month name for use by strftime", "December");
4830
4831         s_daynames[0] = C_("Abbr. day name for use by strftime", "Sun");
4832         s_daynames[1] = C_("Abbr. day name for use by strftime", "Mon");
4833         s_daynames[2] = C_("Abbr. day name for use by strftime", "Tue");
4834         s_daynames[3] = C_("Abbr. day name for use by strftime", "Wed");
4835         s_daynames[4] = C_("Abbr. day name for use by strftime", "Thu");
4836         s_daynames[5] = C_("Abbr. day name for use by strftime", "Fri");
4837         s_daynames[6] = C_("Abbr. day name for use by strftime", "Sat");
4838         
4839         s_monthnames[0] = C_("Abbr. month name for use by strftime", "Jan");
4840         s_monthnames[1] = C_("Abbr. month name for use by strftime", "Feb");
4841         s_monthnames[2] = C_("Abbr. month name for use by strftime", "Mar");
4842         s_monthnames[3] = C_("Abbr. month name for use by strftime", "Apr");
4843         s_monthnames[4] = C_("Abbr. month name for use by strftime", "May");
4844         s_monthnames[5] = C_("Abbr. month name for use by strftime", "Jun");
4845         s_monthnames[6] = C_("Abbr. month name for use by strftime", "Jul");
4846         s_monthnames[7] = C_("Abbr. month name for use by strftime", "Aug");
4847         s_monthnames[8] = C_("Abbr. month name for use by strftime", "Sep");
4848         s_monthnames[9] = C_("Abbr. month name for use by strftime", "Oct");
4849         s_monthnames[10] = C_("Abbr. month name for use by strftime", "Nov");
4850         s_monthnames[11] = C_("Abbr. month name for use by strftime", "Dec");
4851
4852         for (i = 0; i < 7; i++) {
4853                 daynames_len[i] = strlen(daynames[i]);
4854                 s_daynames_len[i] = strlen(s_daynames[i]);
4855         }
4856         for (i = 0; i < 12; i++) {
4857                 monthnames_len[i] = strlen(monthnames[i]);
4858                 s_monthnames_len[i] = strlen(s_monthnames[i]);
4859         }
4860
4861         s_am_up = C_("For use by strftime (morning)", "AM");
4862         s_pm_up = C_("For use by strftime (afternoon)", "PM");
4863         s_am_low = C_("For use by strftime (morning, lowercase)", "am");
4864         s_pm_low = C_("For use by strftime (afternoon, lowercase)", "pm");
4865         
4866         s_am_up_len = strlen(s_am_up);
4867         s_pm_up_len = strlen(s_pm_up);
4868         s_am_low_len = strlen(s_am_low);
4869         s_pm_low_len = strlen(s_pm_low);
4870
4871         time_names_init_done = TRUE;
4872 }
4873
4874 #define CHECK_SIZE() {                  \
4875         total_done += len;              \
4876         if (total_done >= buflen) {     \
4877                 buf[buflen-1] = '\0';   \
4878                 return 0;               \
4879         }                               \
4880 }
4881
4882 size_t fast_strftime(gchar *buf, gint buflen, const gchar *format, struct tm *lt)
4883 {
4884         gchar *curpos = buf;
4885         gint total_done = 0;
4886         gchar subbuf[64], subfmt[64];
4887         static time_t last_tzset = (time_t)0;
4888         
4889         if (!time_names_init_done)
4890                 init_time_names();
4891         
4892         if (format == NULL || lt == NULL)
4893                 return 0;
4894                 
4895         if (last_tzset != time(NULL)) {
4896                 tzset();
4897                 last_tzset = time(NULL);
4898         }
4899         while(*format) {
4900                 if (*format == '%') {
4901                         gint len = 0, tmp = 0;
4902                         format++;
4903                         switch(*format) {
4904                         case '%':
4905                                 len = 1; CHECK_SIZE();
4906                                 *curpos = '%';
4907                                 break;
4908                         case 'a':
4909                                 len = s_daynames_len[lt->tm_wday]; CHECK_SIZE();
4910                                 strncpy2(curpos, s_daynames[lt->tm_wday], buflen - total_done);
4911                                 break;
4912                         case 'A':
4913                                 len = daynames_len[lt->tm_wday]; CHECK_SIZE();
4914                                 strncpy2(curpos, daynames[lt->tm_wday], buflen - total_done);
4915                                 break;
4916                         case 'b':
4917                         case 'h':
4918                                 len = s_monthnames_len[lt->tm_mon]; CHECK_SIZE();
4919                                 strncpy2(curpos, s_monthnames[lt->tm_mon], buflen - total_done);
4920                                 break;
4921                         case 'B':
4922                                 len = monthnames_len[lt->tm_mon]; CHECK_SIZE();
4923                                 strncpy2(curpos, monthnames[lt->tm_mon], buflen - total_done);
4924                                 break;
4925                         case 'c':
4926                                 strftime(subbuf, 64, "%c", lt);
4927                                 len = strlen(subbuf); CHECK_SIZE();
4928                                 strncpy2(curpos, subbuf, buflen - total_done);
4929                                 break;
4930                         case 'C':
4931                                 total_done += 2; CHECK_SIZE();
4932                                 tmp = (lt->tm_year + 1900)/100;
4933                                 *curpos++ = '0'+(tmp / 10);
4934                                 *curpos++ = '0'+(tmp % 10);
4935                                 break;
4936                         case 'd':
4937                                 total_done += 2; CHECK_SIZE();
4938                                 *curpos++ = '0'+(lt->tm_mday / 10);
4939                                 *curpos++ = '0'+(lt->tm_mday % 10);
4940                                 break;
4941                         case 'D':
4942                                 total_done += 8; CHECK_SIZE();
4943                                 *curpos++ = '0'+((lt->tm_mon+1) / 10);
4944                                 *curpos++ = '0'+((lt->tm_mon+1) % 10);
4945                                 *curpos++ = '/';
4946                                 *curpos++ = '0'+(lt->tm_mday / 10);
4947                                 *curpos++ = '0'+(lt->tm_mday % 10);
4948                                 *curpos++ = '/';
4949                                 tmp = lt->tm_year%100;
4950                                 *curpos++ = '0'+(tmp / 10);
4951                                 *curpos++ = '0'+(tmp % 10);
4952                                 break;
4953                         case 'e':
4954                                 len = 2; CHECK_SIZE();
4955                                 snprintf(curpos, buflen - total_done, "%2d", lt->tm_mday);
4956                                 break;
4957                         case 'F':
4958                                 len = 10; CHECK_SIZE();
4959                                 snprintf(curpos, buflen - total_done, "%4d-%02d-%02d", 
4960                                         lt->tm_year + 1900, lt->tm_mon +1, lt->tm_mday);
4961                                 break;
4962                         case 'H':
4963                                 total_done += 2; CHECK_SIZE();
4964                                 *curpos++ = '0'+(lt->tm_hour / 10);
4965                                 *curpos++ = '0'+(lt->tm_hour % 10);
4966                                 break;
4967                         case 'I':
4968                                 total_done += 2; CHECK_SIZE();
4969                                 tmp = lt->tm_hour;
4970                                 if (tmp > 12)
4971                                         tmp -= 12;
4972                                 else if (tmp == 0)
4973                                         tmp = 12;
4974                                 *curpos++ = '0'+(tmp / 10);
4975                                 *curpos++ = '0'+(tmp % 10);
4976                                 break;
4977                         case 'j':
4978                                 len = 3; CHECK_SIZE();
4979                                 snprintf(curpos, buflen - total_done, "%03d", lt->tm_yday+1);
4980                                 break;
4981                         case 'k':
4982                                 len = 2; CHECK_SIZE();
4983                                 snprintf(curpos, buflen - total_done, "%2d", lt->tm_hour);
4984                                 break;
4985                         case 'l':
4986                                 len = 2; CHECK_SIZE();
4987                                 tmp = lt->tm_hour;
4988                                 if (tmp > 12)
4989                                         tmp -= 12;
4990                                 else if (tmp == 0)
4991                                         tmp = 12;
4992                                 snprintf(curpos, buflen - total_done, "%2d", tmp);
4993                                 break;
4994                         case 'm':
4995                                 total_done += 2; CHECK_SIZE();
4996                                 tmp = lt->tm_mon + 1;
4997                                 *curpos++ = '0'+(tmp / 10);
4998                                 *curpos++ = '0'+(tmp % 10);
4999                                 break;
5000                         case 'M':
5001                                 total_done += 2; CHECK_SIZE();
5002                                 *curpos++ = '0'+(lt->tm_min / 10);
5003                                 *curpos++ = '0'+(lt->tm_min % 10);
5004                                 break;
5005                         case 'n':
5006                                 len = 1; CHECK_SIZE();
5007                                 *curpos = '\n';
5008                                 break;
5009                         case 'p':
5010                                 if (lt->tm_hour >= 12) {
5011                                         len = s_pm_up_len; CHECK_SIZE();
5012                                         snprintf(curpos, buflen-total_done, "%s", s_pm_up);
5013                                 } else {
5014                                         len = s_am_up_len; CHECK_SIZE();
5015                                         snprintf(curpos, buflen-total_done, "%s", s_am_up);
5016                                 }
5017                                 break;
5018                         case 'P':
5019                                 if (lt->tm_hour >= 12) {
5020                                         len = s_pm_low_len; CHECK_SIZE();
5021                                         snprintf(curpos, buflen-total_done, "%s", s_pm_low);
5022                                 } else {
5023                                         len = s_am_low_len; CHECK_SIZE();
5024                                         snprintf(curpos, buflen-total_done, "%s", s_am_low);
5025                                 }
5026                                 break;
5027                         case 'r':
5028                                 strftime(subbuf, 64, "%r", lt);
5029                                 len = strlen(subbuf); CHECK_SIZE();
5030                                 strncpy2(curpos, subbuf, buflen - total_done);
5031                                 break;
5032                         case 'R':
5033                                 total_done += 5; CHECK_SIZE();
5034                                 *curpos++ = '0'+(lt->tm_hour / 10);
5035                                 *curpos++ = '0'+(lt->tm_hour % 10);
5036                                 *curpos++ = ':';
5037                                 *curpos++ = '0'+(lt->tm_min / 10);
5038                                 *curpos++ = '0'+(lt->tm_min % 10);
5039                                 break;
5040                         case 's':
5041                                 snprintf(subbuf, 64, "%lld", (long long)mktime(lt));
5042                                 len = strlen(subbuf); CHECK_SIZE();
5043                                 strncpy2(curpos, subbuf, buflen - total_done);
5044                                 break;
5045                         case 'S':
5046                                 total_done += 2; CHECK_SIZE();
5047                                 *curpos++ = '0'+(lt->tm_sec / 10);
5048                                 *curpos++ = '0'+(lt->tm_sec % 10);
5049                                 break;
5050                         case 't':
5051                                 len = 1; CHECK_SIZE();
5052                                 *curpos = '\t';
5053                                 break;
5054                         case 'T':
5055                                 total_done += 8; CHECK_SIZE();
5056                                 *curpos++ = '0'+(lt->tm_hour / 10);
5057                                 *curpos++ = '0'+(lt->tm_hour % 10);
5058                                 *curpos++ = ':';
5059                                 *curpos++ = '0'+(lt->tm_min / 10);
5060                                 *curpos++ = '0'+(lt->tm_min % 10);
5061                                 *curpos++ = ':';
5062                                 *curpos++ = '0'+(lt->tm_sec / 10);
5063                                 *curpos++ = '0'+(lt->tm_sec % 10);
5064                                 break;
5065                         case 'u':
5066                                 len = 1; CHECK_SIZE();
5067                                 snprintf(curpos, buflen - total_done, "%d", lt->tm_wday == 0 ? 7: lt->tm_wday);
5068                                 break;
5069                         case 'w':
5070                                 len = 1; CHECK_SIZE();
5071                                 snprintf(curpos, buflen - total_done, "%d", lt->tm_wday);
5072                                 break;
5073                         case 'x':
5074                                 strftime(subbuf, 64, "%x", lt);
5075                                 len = strlen(subbuf); CHECK_SIZE();
5076                                 strncpy2(curpos, subbuf, buflen - total_done);
5077                                 break;
5078                         case 'X':
5079                                 strftime(subbuf, 64, "%X", lt);
5080                                 len = strlen(subbuf); CHECK_SIZE();
5081                                 strncpy2(curpos, subbuf, buflen - total_done);
5082                                 break;
5083                         case 'y':
5084                                 total_done += 2; CHECK_SIZE();
5085                                 tmp = lt->tm_year%100;
5086                                 *curpos++ = '0'+(tmp / 10);
5087                                 *curpos++ = '0'+(tmp % 10);
5088                                 break;
5089                         case 'Y':
5090                                 len = 4; CHECK_SIZE();
5091                                 snprintf(curpos, buflen - total_done, "%4d", lt->tm_year + 1900);
5092                                 break;
5093                         case 'G':
5094                         case 'g':
5095                         case 'U':
5096                         case 'V':
5097                         case 'W':
5098                         case 'z':
5099                         case 'Z':
5100                         case '+':
5101                                 /* let these complicated ones be done with the libc */
5102                                 snprintf(subfmt, 64, "%%%c", *format);
5103                                 strftime(subbuf, 64, subfmt, lt);
5104                                 len = strlen(subbuf); CHECK_SIZE();
5105                                 strncpy2(curpos, subbuf, buflen - total_done);
5106                                 break;
5107                         case 'E':
5108                         case 'O':
5109                                 /* let these complicated modifiers be done with the libc */
5110                                 snprintf(subfmt, 64, "%%%c%c", *format, *(format+1));
5111                                 strftime(subbuf, 64, subfmt, lt);
5112                                 len = strlen(subbuf); CHECK_SIZE();
5113                                 strncpy2(curpos, subbuf, buflen - total_done);
5114                                 format++;
5115                                 break;
5116                         default:
5117                                 g_warning("format error (%c)", *format);
5118                                 *curpos = '\0';
5119                                 return total_done;
5120                         }
5121                         curpos += len;
5122                         format++;
5123                 } else {
5124                         int len = 1; CHECK_SIZE();
5125                         *curpos++ = *format++; 
5126                 }
5127         }
5128         *curpos = '\0';
5129         return total_done;
5130 }
5131
5132 gboolean prefs_common_get_use_shred(void);
5133
5134
5135 #ifdef G_OS_WIN32
5136 #define WEXITSTATUS(x) (x)
5137 #endif
5138
5139 int claws_unlink(const gchar *filename) 
5140 {
5141         GStatBuf s;
5142         static int found_shred = -1;
5143         static const gchar *args[4];
5144
5145         if (filename == NULL)
5146                 return 0;
5147
5148         if (prefs_common_get_use_shred()) {
5149                 if (found_shred == -1) {
5150                         /* init */
5151                         args[0] = g_find_program_in_path("shred");
5152                         debug_print("found shred: %s\n", args[0]);
5153                         found_shred = (args[0] != NULL) ? 1:0;
5154                         args[1] = "-f";
5155                         args[3] = NULL;
5156                 }
5157                 if (found_shred == 1) {
5158                         if (g_stat(filename, &s) == 0 && S_ISREG(s.st_mode)) {
5159                                 if (s.st_nlink == 1) {
5160                                         gint status=0;
5161                                         args[2] = filename;
5162                                         g_spawn_sync(NULL, (gchar **)args, NULL, 0,
5163                                          NULL, NULL, NULL, NULL, &status, NULL);
5164                                         debug_print("%s %s exited with status %d\n",
5165                                                 args[0], filename, WEXITSTATUS(status));
5166                                         if (truncate(filename, 0) < 0)
5167                                                 g_warning("couln't truncate: %s", filename);
5168                                 }
5169                         }
5170                 }
5171         }
5172         return g_unlink(filename);
5173 }
5174
5175 GMutex *cm_mutex_new(void) {
5176 #if GLIB_CHECK_VERSION(2,32,0)
5177         GMutex *m = g_new0(GMutex, 1);
5178         g_mutex_init(m);
5179         return m;
5180 #else
5181         return g_mutex_new();
5182 #endif
5183 }
5184
5185 void cm_mutex_free(GMutex *mutex) {
5186 #if GLIB_CHECK_VERSION(2,32,0)
5187         g_mutex_clear(mutex);
5188         g_free(mutex);
5189 #else
5190         g_mutex_free(mutex);
5191 #endif
5192 }
5193
5194 static gchar *canonical_list_to_file(GSList *list)
5195 {
5196         GString *result = g_string_new(NULL);
5197         GSList *pathlist = g_slist_reverse(g_slist_copy(list));
5198         GSList *cur;
5199         gchar *str;
5200
5201 #ifndef G_OS_WIN32
5202         result = g_string_append(result, G_DIR_SEPARATOR_S);
5203 #else
5204         if (pathlist->data) {
5205                 const gchar *root = (gchar *)pathlist->data;
5206                 if (root[0] != '\0' && g_ascii_isalpha(root[0]) &&
5207                     root[1] == ':') {
5208                         /* drive - don't prepend dir separator */
5209                 } else {
5210                         result = g_string_append(result, G_DIR_SEPARATOR_S);
5211                 }
5212         }
5213 #endif
5214
5215         for (cur = pathlist; cur; cur = cur->next) {
5216                 result = g_string_append(result, (gchar *)cur->data);
5217                 if (cur->next)
5218                         result = g_string_append(result, G_DIR_SEPARATOR_S);
5219         }
5220         g_slist_free(pathlist);
5221
5222         str = result->str;
5223         g_string_free(result, FALSE);
5224
5225         return str;
5226 }
5227
5228 static GSList *cm_split_path(const gchar *filename, int depth)
5229 {
5230         gchar **path_parts;
5231         GSList *canonical_parts = NULL;
5232         GStatBuf st;
5233         int i;
5234         gboolean follow_symlinks = TRUE;
5235
5236         if (depth > 32) {
5237 #ifndef G_OS_WIN32
5238                 errno = ELOOP;
5239 #else
5240                 errno = EINVAL; /* can't happen, no symlink handling */
5241 #endif
5242                 return NULL;
5243         }
5244
5245         if (!g_path_is_absolute(filename)) {
5246                 errno =EINVAL;
5247                 return NULL;
5248         }
5249
5250         path_parts = g_strsplit(filename, G_DIR_SEPARATOR_S, -1);
5251
5252         for (i = 0; path_parts[i] != NULL; i++) {
5253                 if (!strcmp(path_parts[i], ""))
5254                         continue;
5255                 if (!strcmp(path_parts[i], "."))
5256                         continue;
5257                 else if (!strcmp(path_parts[i], "..")) {
5258                         if (i == 0) {
5259                                 errno =ENOTDIR;
5260                                 return NULL;
5261                         }
5262                         else /* Remove the last inserted element */
5263                                 canonical_parts = 
5264                                         g_slist_delete_link(canonical_parts,
5265                                                             canonical_parts);
5266                 } else {
5267                         gchar *tmp_path;
5268
5269                         canonical_parts = g_slist_prepend(canonical_parts,
5270                                                 g_strdup(path_parts[i]));
5271
5272                         tmp_path = canonical_list_to_file(canonical_parts);
5273
5274                         if(g_stat(tmp_path, &st) < 0) {
5275                                 if (errno == ENOENT) {
5276                                         errno = 0;
5277                                         follow_symlinks = FALSE;
5278                                 }
5279                                 if (errno != 0) {
5280                                         g_free(tmp_path);
5281                                         slist_free_strings_full(canonical_parts);
5282                                         g_strfreev(path_parts);
5283
5284                                         return NULL;
5285                                 }
5286                         }
5287 #ifndef G_OS_WIN32
5288                         if (follow_symlinks && g_file_test(tmp_path, G_FILE_TEST_IS_SYMLINK)) {
5289                                 GError *error = NULL;
5290                                 gchar *target = g_file_read_link(tmp_path, &error);
5291
5292                                 if (!g_path_is_absolute(target)) {
5293                                         /* remove the last inserted element */
5294                                         canonical_parts = 
5295                                                 g_slist_delete_link(canonical_parts,
5296                                                             canonical_parts);
5297                                         /* add the target */
5298                                         canonical_parts = g_slist_prepend(canonical_parts,
5299                                                 g_strdup(target));
5300                                         g_free(target);
5301
5302                                         /* and get the new target */
5303                                         target = canonical_list_to_file(canonical_parts);
5304                                 }
5305
5306                                 /* restart from absolute target */
5307                                 slist_free_strings_full(canonical_parts);
5308                                 canonical_parts = NULL;
5309                                 if (!error)
5310                                         canonical_parts = cm_split_path(target, depth + 1);
5311                                 else
5312                                         g_error_free(error);
5313                                 if (canonical_parts == NULL) {
5314                                         g_free(tmp_path);
5315                                         g_strfreev(path_parts);
5316                                         return NULL;
5317                                 }
5318                                 g_free(target);
5319                         }
5320 #endif
5321                         g_free(tmp_path);
5322                 }
5323         }
5324         g_strfreev(path_parts);
5325         return canonical_parts;
5326 }
5327
5328 /*
5329  * Canonicalize a filename, resolving symlinks along the way.
5330  * Returns a negative errno in case of error.
5331  */
5332 int cm_canonicalize_filename(const gchar *filename, gchar **canonical_name) {
5333         GSList *canonical_parts;
5334         gboolean is_absolute;
5335
5336         if (filename == NULL)
5337                 return -EINVAL;
5338         if (canonical_name == NULL)
5339                 return -EINVAL;
5340         *canonical_name = NULL;
5341
5342         is_absolute = g_path_is_absolute(filename);
5343         if (!is_absolute) {
5344                 /* Always work on absolute filenames. */
5345                 gchar *cur = g_get_current_dir();
5346                 gchar *absolute_filename = g_strconcat(cur, G_DIR_SEPARATOR_S,
5347                                                        filename, NULL);
5348                 
5349                 canonical_parts = cm_split_path(absolute_filename, 0);
5350                 g_free(absolute_filename);
5351                 g_free(cur);
5352         } else
5353                 canonical_parts = cm_split_path(filename, 0);
5354
5355         if (canonical_parts == NULL)
5356                 return -errno;
5357
5358         *canonical_name = canonical_list_to_file(canonical_parts);
5359         slist_free_strings_full(canonical_parts);
5360         return 0;
5361 }
5362
5363 /* Returns a decoded base64 string, guaranteed to be null-terminated. */
5364 guchar *g_base64_decode_zero(const gchar *text, gsize *out_len)
5365 {
5366         gchar *tmp = g_base64_decode(text, out_len);
5367         gchar *out = g_strndup(tmp, *out_len);
5368
5369         g_free(tmp);
5370
5371         if (strlen(out) != *out_len) {
5372                 g_warning ("strlen(out) %zd != *out_len %" G_GSIZE_FORMAT, strlen(out), *out_len);
5373         }
5374
5375         return out;
5376 }
5377
5378 #if !GLIB_CHECK_VERSION(2, 30, 0)
5379 /**
5380  * g_utf8_substring:
5381  * @str: a UTF-8 encoded string
5382  * @start_pos: a character offset within @str
5383  * @end_pos: another character offset within @str
5384  *
5385  * Copies a substring out of a UTF-8 encoded string.
5386  * The substring will contain @end_pos - @start_pos
5387  * characters.
5388  *
5389  * Returns: a newly allocated copy of the requested
5390  *     substring. Free with g_free() when no longer needed.
5391  *
5392  * Since: GLIB 2.30
5393  */
5394 gchar *
5395 g_utf8_substring (const gchar *str,
5396                                   glong            start_pos,
5397                                   glong            end_pos)
5398 {
5399   gchar *start, *end, *out;
5400
5401   start = g_utf8_offset_to_pointer (str, start_pos);
5402   end = g_utf8_offset_to_pointer (start, end_pos - start_pos);
5403
5404   out = g_malloc (end - start + 1);
5405   memcpy (out, start, end - start);
5406   out[end - start] = 0;
5407
5408   return out;
5409 }
5410 #endif