2006-05-26 [colin] 2.2.0cvs59
[claws.git] / src / procheader.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws 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 2 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <glib/gi18n.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <time.h>
30 #include <sys/stat.h>
31
32 #include "procheader.h"
33 #include "procmsg.h"
34 #include "codeconv.h"
35 #include "prefs_common.h"
36 #include "utils.h"
37
38 #define BUFFSIZE        8192
39
40 typedef char *(*getlinefunc) (char *, size_t, void *);
41 typedef int (*peekcharfunc) (void *);
42 typedef int (*getcharfunc) (void *);
43 typedef gint (*get_one_field_func) (gchar *, size_t, void *, HeaderEntry[]);
44
45 static gint string_get_one_field(gchar *buf, size_t len, char **str,
46                                  HeaderEntry hentry[]);
47
48 static char *string_getline(char *buf, size_t len, char **str);
49 static int string_peekchar(char **str);
50 static int file_peekchar(FILE *fp);
51 static gint generic_get_one_field(gchar *buf, size_t len, void *data,
52                                   HeaderEntry hentry[],
53                                   getlinefunc getline, 
54                                   peekcharfunc peekchar,
55                                   gboolean unfold);
56 static MsgInfo *parse_stream(void *data, gboolean isstring, MsgFlags flags,
57                              gboolean full, gboolean decrypted);
58
59
60 gint procheader_get_one_field(gchar *buf, size_t len, FILE *fp,
61                               HeaderEntry hentry[])
62 {
63         return generic_get_one_field(buf, len, fp, hentry,
64                                      (getlinefunc)fgets, (peekcharfunc)file_peekchar,
65                                      TRUE);
66 }
67
68 static gint string_get_one_field(gchar *buf, size_t len, char **str,
69                                  HeaderEntry hentry[])
70 {
71         return generic_get_one_field(buf, len, str, hentry,
72                                      (getlinefunc)string_getline,
73                                      (peekcharfunc)string_peekchar,
74                                      TRUE);
75 }
76
77 static char *string_getline(char *buf, size_t len, char **str)
78 {
79         if (!*str || !**str)
80                 return NULL;
81
82         for (; **str && len > 1; --len)
83                 if ((*buf++ = *(*str)++) == '\n')
84                     break;
85         *buf = '\0';
86
87         return buf;
88 }
89
90 static int string_peekchar(char **str)
91 {
92         return **str;
93 }
94
95 static int file_peekchar(FILE *fp)
96 {
97         return ungetc(getc(fp), fp);
98 }
99
100 static gint generic_get_one_field(gchar *buf, size_t len, void *data,
101                           HeaderEntry *hentry,
102                           getlinefunc getline, peekcharfunc peekchar,
103                           gboolean unfold)
104 {
105         gint nexthead;
106         gint hnum = 0;
107         HeaderEntry *hp = NULL;
108
109         if (hentry != NULL) {
110                 /* skip non-required headers */
111                 do {
112                         do {
113                                 if (getline(buf, len, data) == NULL)
114                                         return -1;
115                                 if (buf[0] == '\r' || buf[0] == '\n')
116                                         return -1;
117                         } while (buf[0] == ' ' || buf[0] == '\t');
118
119                         for (hp = hentry, hnum = 0; hp->name != NULL;
120                              hp++, hnum++) {
121                                 if (!g_ascii_strncasecmp(hp->name, buf,
122                                                  strlen(hp->name)))
123                                         break;
124                         }
125                 } while (hp->name == NULL);
126         } else {
127                 if (getline(buf, len, data) == NULL) return -1;
128                 if (buf[0] == '\r' || buf[0] == '\n') return -1;
129         }
130
131         /* unfold line */
132         while (1) {
133                 nexthead = peekchar(data);
134                 /* ([*WSP CRLF] 1*WSP) */
135                 if (nexthead == ' ' || nexthead == '\t') {
136                         size_t buflen;
137                         /* trim previous trailing \n if requesting one header or
138                          * unfolding was requested */
139                         if ((!hentry && unfold) || (hp && hp->unfold))
140                                 strretchomp(buf);
141
142                         buflen = strlen(buf);
143                         
144                         /* concatenate next line */
145                         if ((len - buflen) > 2) {
146                                 if (getline(buf + buflen, len - buflen, data) == NULL)
147                                         break;
148                         } else
149                                 break;
150                 } else {
151                         /* remove trailing new line */
152                         strretchomp(buf);
153                         break;
154                 }
155         }
156
157         return hnum;
158 }
159
160 gint procheader_get_one_field_asis(gchar *buf, size_t len, FILE *fp)
161 {
162         return generic_get_one_field(buf, len, fp, NULL,
163                                      (getlinefunc)fgets, 
164                                      (peekcharfunc)file_peekchar,
165                                      FALSE);
166 }
167
168 GPtrArray *procheader_get_header_array_asis(FILE *fp)
169 {
170         gchar buf[BUFFSIZE];
171         GPtrArray *headers;
172         Header *header;
173
174         g_return_val_if_fail(fp != NULL, NULL);
175
176         headers = g_ptr_array_new();
177
178         while (procheader_get_one_field_asis(buf, sizeof(buf), fp) != -1) {
179                 if ((header = procheader_parse_header(buf)) != NULL)
180                         g_ptr_array_add(headers, header);
181                         /*
182                 if (*buf == ':') continue;
183                 for (p = buf; *p && *p != ' '; p++) {
184                         if (*p == ':') {
185                                 header = g_new(Header, 1);
186                                 header->name = g_strndup(buf, p - buf);
187                                 p++;
188                                 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
189                                 header->body = g_strdup(tmp);
190
191                                 g_ptr_array_add(headers, header);
192                                 break;
193                         }
194                 }
195                         */
196         }
197
198         return headers;
199 }
200
201 void procheader_header_array_destroy(GPtrArray *harray)
202 {
203         gint i;
204         Header *header;
205
206         for (i = 0; i < harray->len; i++) {
207                 header = g_ptr_array_index(harray, i);
208                 procheader_header_free(header);
209         }
210
211         g_ptr_array_free(harray, TRUE);
212 }
213
214 void procheader_header_free(Header *header)
215 {
216         if (!header) return;
217
218         g_free(header->name);
219         g_free(header->body);
220         g_free(header);
221 }
222
223 /*
224   tests whether two headers' names are equal
225   remove the trailing ':' or ' ' before comparing
226 */
227
228 gboolean procheader_headername_equal(char * hdr1, char * hdr2)
229 {
230         int len1;
231         int len2;
232
233         len1 = strlen(hdr1);
234         len2 = strlen(hdr2);
235         if (hdr1[len1 - 1] == ':')
236                 len1--;
237         if (hdr2[len2 - 1] == ':')
238                 len2--;
239         if (len1 != len2)
240                 return 0;
241
242         return (g_ascii_strncasecmp(hdr1, hdr2, len1) == 0);
243 }
244
245 /*
246   parse headers, for example :
247   From: dinh@enseirb.fr becomes :
248   header->name = "From:"
249   header->body = "dinh@enseirb.fr"
250  */
251
252 Header * procheader_parse_header(gchar * buf)
253 {
254         gchar *p = buf;
255         Header * header;
256
257         if ((*buf == ':') || (*buf == ' '))
258                 return NULL;
259
260         for (p = buf; *p ; p++) {
261                 if ((*p == ':') || (*p == ' ')) {
262                         header = g_new(Header, 1);
263                         header->name = g_strndup(buf, p - buf + 1);
264                         p++;
265                         while (*p == ' ' || *p == '\t') p++;
266                         header->body = conv_unmime_header(p, NULL);
267                         return header;
268                 }
269         }
270         return NULL;
271 }
272
273 void procheader_get_header_fields(FILE *fp, HeaderEntry hentry[])
274 {
275         gchar buf[BUFFSIZE];
276         HeaderEntry *hp;
277         gint hnum;
278         gchar *p;
279
280         if (hentry == NULL) return;
281
282         while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
283                != -1) {
284                 hp = hentry + hnum;
285
286                 p = buf + strlen(hp->name);
287                 while (*p == ' ' || *p == '\t') p++;
288
289                 if (hp->body == NULL)
290                         hp->body = g_strdup(p);
291                 else if (procheader_headername_equal(hp->name, "To") ||
292                          procheader_headername_equal(hp->name, "Cc")) {
293                         gchar *tp = hp->body;
294                         hp->body = g_strconcat(tp, ", ", p, NULL);
295                         g_free(tp);
296                 }
297         }
298 }
299
300 MsgInfo *procheader_parse_file(const gchar *file, MsgFlags flags,
301                                gboolean full, gboolean decrypted)
302 {
303         struct stat s;
304         FILE *fp;
305         MsgInfo *msginfo;
306
307         if (stat(file, &s) < 0) {
308                 FILE_OP_ERROR(file, "stat");
309                 return NULL;
310         }
311         if (!S_ISREG(s.st_mode))
312                 return NULL;
313
314         if ((fp = g_fopen(file, "rb")) == NULL) {
315                 FILE_OP_ERROR(file, "fopen");
316                 return NULL;
317         }
318
319         msginfo = procheader_parse_stream(fp, flags, full, decrypted);
320         fclose(fp);
321
322         if (msginfo) {
323                 msginfo->size = s.st_size;
324                 msginfo->mtime = s.st_mtime;
325         }
326
327         return msginfo;
328 }
329
330 MsgInfo *procheader_parse_str(const gchar *str, MsgFlags flags, gboolean full,
331                               gboolean decrypted)
332 {
333         return parse_stream(&str, TRUE, flags, full, decrypted);
334 }
335
336 enum
337 {
338         H_DATE          = 0,
339         H_FROM          = 1,
340         H_TO            = 2,
341         H_CC            = 3,
342         H_NEWSGROUPS    = 4,
343         H_SUBJECT       = 5,
344         H_MSG_ID        = 6,
345         H_REFERENCES    = 7,
346         H_IN_REPLY_TO   = 8,
347         H_CONTENT_TYPE  = 9,
348         H_SEEN          = 10,
349         H_STATUS        = 11,
350         H_X_STATUS      = 12,
351         H_FROM_SPACE    = 13,
352         H_SC_PLANNED_DOWNLOAD = 14,
353         H_SC_MESSAGE_SIZE = 15,
354         H_FACE          = 16,
355         H_X_FACE        = 17,
356         H_DISPOSITION_NOTIFICATION_TO = 18,
357         H_RETURN_RECEIPT_TO = 19,
358         H_SC_PARTIALLY_RETRIEVED = 20,
359         H_SC_ACCOUNT_SERVER = 21,
360         H_SC_ACCOUNT_LOGIN = 22,
361         H_LIST_POST        = 23,
362         H_LIST_SUBSCRIBE   = 24,
363         H_LIST_UNSUBSCRIBE = 25,
364         H_LIST_HELP        = 26,
365         H_LIST_ARCHIVE     = 27,
366         H_LIST_OWNER       = 28,
367 };
368
369 static HeaderEntry hentry_full[] = {{"Date:",           NULL, FALSE},
370                                    {"From:",            NULL, TRUE},
371                                    {"To:",              NULL, TRUE},
372                                    {"Cc:",              NULL, TRUE},
373                                    {"Newsgroups:",      NULL, TRUE},
374                                    {"Subject:",         NULL, TRUE},
375                                    {"Message-ID:",      NULL, FALSE},
376                                    {"References:",      NULL, FALSE},
377                                    {"In-Reply-To:",     NULL, FALSE},
378                                    {"Content-Type:",    NULL, FALSE},
379                                    {"Seen:",            NULL, FALSE},
380                                    {"Status:",          NULL, FALSE},
381                                    {"X-Status:",        NULL, FALSE},
382                                    {"From ",            NULL, FALSE},
383                                    {"SC-Marked-For-Download:", NULL, FALSE},
384                                    {"SC-Message-Size:", NULL, FALSE},
385                                    {"Face:",            NULL, FALSE},
386                                    {"X-Face:",          NULL, FALSE},
387                                    {"Disposition-Notification-To:", NULL, FALSE},
388                                    {"Return-Receipt-To:", NULL, FALSE},
389                                    {"SC-Partially-Retrieved:", NULL, FALSE},
390                                    {"SC-Account-Server:", NULL, FALSE},
391                                    {"SC-Account-Login:",NULL, FALSE},
392                                    {"List-Post:",       NULL, TRUE},
393                                    {"List-Subscribe:",  NULL, TRUE},
394                                    {"List-Unsubscribe:",NULL, TRUE},
395                                    {"List-Help:",       NULL, TRUE},
396                                    {"List-Archive:",    NULL, TRUE},
397                                    {"List-Owner:",      NULL, TRUE},
398                                    {NULL,               NULL, FALSE}};
399
400 static HeaderEntry hentry_short[] = {{"Date:",          NULL, FALSE},
401                                     {"From:",           NULL, TRUE},
402                                     {"To:",             NULL, TRUE},
403                                     {"Cc:",             NULL, TRUE},
404                                     {"Newsgroups:",     NULL, TRUE},
405                                     {"Subject:",        NULL, TRUE},
406                                     {"Message-ID:",     NULL, FALSE},
407                                     {"References:",     NULL, FALSE},
408                                     {"In-Reply-To:",    NULL, FALSE},
409                                     {"Content-Type:",   NULL, FALSE},
410                                     {"Seen:",           NULL, FALSE},
411                                     {"Status:",         NULL, FALSE},
412                                     {"X-Status:",       NULL, FALSE},
413                                     {"From ",           NULL, FALSE},
414                                     {"SC-Marked-For-Download:", NULL, FALSE},
415                                     {"SC-Message-Size:",NULL, FALSE},
416                                     {NULL,              NULL, FALSE}};
417
418 HeaderEntry* procheader_get_headernames(gboolean full)
419 {
420         return full ? hentry_full : hentry_short;
421 }
422
423 MsgInfo *procheader_parse_stream(FILE *fp, MsgFlags flags, gboolean full,
424                                  gboolean decrypted)
425 {
426         return parse_stream(fp, FALSE, flags, full, decrypted);
427 }
428
429 static MsgInfo *parse_stream(void *data, gboolean isstring, MsgFlags flags,
430                              gboolean full, gboolean decrypted)
431 {
432         MsgInfo *msginfo;
433         gchar buf[BUFFSIZE];
434         gchar *p, *tmp;
435         gchar *hp;
436         HeaderEntry *hentry;
437         gint hnum;
438         get_one_field_func get_one_field =
439                 isstring ? (get_one_field_func)string_get_one_field
440                          : (get_one_field_func)procheader_get_one_field;
441
442         hentry = procheader_get_headernames(full);
443
444         if (MSG_IS_QUEUED(flags) || MSG_IS_DRAFT(flags)) {
445                 while (get_one_field(buf, sizeof(buf), data, NULL) != -1)
446                         ; /* loop */
447         }
448
449         msginfo = procmsg_msginfo_new();
450         
451         if (flags.tmp_flags || flags.perm_flags) 
452                 msginfo->flags = flags;
453         else 
454                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_NEW | MSG_UNREAD);
455         
456         msginfo->inreplyto = NULL;
457
458         while ((hnum = get_one_field(buf, sizeof(buf), data, hentry))
459                != -1) {
460                 hp = buf + strlen(hentry[hnum].name);
461                 while (*hp == ' ' || *hp == '\t') hp++;
462
463                 switch (hnum) {
464                 case H_DATE:
465                         if (msginfo->date) break;
466                         msginfo->date_t =
467                                 procheader_date_parse(NULL, hp, 0);
468                         if (g_utf8_validate(hp, -1, NULL)) {
469                                 msginfo->date = g_strdup(hp);
470                         } else {
471                                 gchar *utf = conv_codeset_strdup(
472                                         hp, 
473                                         conv_get_locale_charset_str_no_utf8(),
474                                         CS_INTERNAL);
475                                 if (utf == NULL || 
476                                     !g_utf8_validate(utf, -1, NULL)) {
477                                         g_free(utf);
478                                         utf = g_malloc(strlen(buf)*2+1);
479                                         conv_localetodisp(utf, 
480                                                 strlen(hp)*2+1, hp);
481                                 }
482                                 msginfo->date = utf;
483                         }
484                         break;
485                 case H_FROM:
486                         if (msginfo->from) break;
487                         msginfo->from = conv_unmime_header(hp, NULL);
488                         msginfo->fromname = procheader_get_fromname(msginfo->from);
489                         replace_returns(msginfo->from);
490                         replace_returns(msginfo->fromname);
491                         break;
492                 case H_TO:
493                         tmp = conv_unmime_header(hp, NULL);
494                         if (msginfo->to) {
495                                 p = msginfo->to;
496                                 msginfo->to =
497                                         g_strconcat(p, ", ", tmp, NULL);
498                                 g_free(p);
499                         } else
500                                 msginfo->to = g_strdup(tmp);
501                         g_free(tmp);                                
502                         break;
503                 case H_CC:
504                         tmp = conv_unmime_header(hp, NULL);
505                         if (msginfo->cc) {
506                                 p = msginfo->cc;
507                                 msginfo->cc =
508                                         g_strconcat(p, ", ", tmp, NULL);
509                                 g_free(p);
510                         } else
511                                 msginfo->cc = g_strdup(tmp);
512                         g_free(tmp);                                
513                         break;
514                 case H_NEWSGROUPS:
515                         if (msginfo->newsgroups) {
516                                 p = msginfo->newsgroups;
517                                 msginfo->newsgroups =
518                                         g_strconcat(p, ",", hp, NULL);
519                                 g_free(p);
520                         } else
521                                 msginfo->newsgroups = g_strdup(hp);
522                         break;
523                 case H_SUBJECT:
524                         if (msginfo->subject) break;
525                         msginfo->subject = conv_unmime_header(hp, NULL);
526                         replace_returns(msginfo->subject);
527                         break;
528                 case H_MSG_ID:
529                         if (msginfo->msgid) break;
530
531                         extract_parenthesis(hp, '<', '>');
532                         remove_space(hp);
533                         msginfo->msgid = g_strdup(hp);
534                         break;
535                 case H_REFERENCES:
536                         msginfo->references =
537                                 references_list_prepend(msginfo->references,
538                                                         hp);
539                         break;
540                 case H_IN_REPLY_TO:
541                         if (msginfo->inreplyto) break;
542
543                         eliminate_parenthesis(hp, '(', ')');
544                         if ((p = strrchr(hp, '<')) != NULL &&
545                             strchr(p + 1, '>') != NULL) {
546                                 extract_parenthesis(p, '<', '>');
547                                 remove_space(p);
548                                 if (*p != '\0')
549                                         msginfo->inreplyto = g_strdup(p);
550                         }
551                         break;
552                 case H_CONTENT_TYPE:
553                         if (!g_ascii_strncasecmp(hp, "multipart/", 10))
554                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_MULTIPART);
555                         break;
556 #ifdef ALLOW_HEADER_HINT                        
557                 case H_SEEN:
558                         /* mnews Seen header */
559                         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW|MSG_UNREAD);
560                         break;
561 #endif                  
562                 case H_FACE:
563                         if (msginfo->face) break;
564                         msginfo->face = g_strdup(hp);
565                         break;
566                 case H_X_FACE:
567                         if (msginfo->xface) break;
568                         msginfo->xface = g_strdup(hp);
569                         break;
570                 case H_DISPOSITION_NOTIFICATION_TO:
571                         if (msginfo->dispositionnotificationto) break;
572                         msginfo->dispositionnotificationto = g_strdup(hp);
573                         break;
574                 case H_RETURN_RECEIPT_TO:
575                         if (msginfo->returnreceiptto) break;
576                         msginfo->returnreceiptto = g_strdup(hp);
577                         break;
578                 case H_SC_PARTIALLY_RETRIEVED:
579                         if (msginfo->partial_recv) break;
580                         msginfo->partial_recv = g_strdup(hp);
581                         break;
582                 case H_SC_ACCOUNT_SERVER:
583                         if (msginfo->account_server) break;
584                         msginfo->account_server = g_strdup(hp);
585                         break;
586                 case H_SC_ACCOUNT_LOGIN:
587                         if (msginfo->account_login) break;
588                         msginfo->account_login = g_strdup(hp);
589                         break;
590                 case H_SC_MESSAGE_SIZE:
591                         if (msginfo->total_size) break;
592                         msginfo->total_size = atoi(hp);
593                         break;
594                 case H_SC_PLANNED_DOWNLOAD:
595                         msginfo->planned_download = atoi(hp);
596                         break;
597 #ifdef ALLOW_HEADER_HINT                        
598                 case H_STATUS:
599                         if (strchr(hp, 'R') != NULL)
600                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
601                         if (strchr(hp, 'O') != NULL)
602                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW);
603                         if (strchr(hp, 'U') != NULL)
604                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
605                         break;
606                 case H_X_STATUS:
607                         if (strchr(hp, 'D') != NULL)
608                                 MSG_SET_PERM_FLAGS(msginfo->flags,
609                                               MSG_REALLY_DELETED);
610                         if (strchr(hp, 'F') != NULL)
611                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_MARKED);
612                         if (strchr(hp, 'd') != NULL)
613                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_DELETED);
614                         if (strchr(hp, 'r') != NULL)
615                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
616                         if (strchr(hp, 'f') != NULL)
617                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
618                         break;
619 #endif                  
620                 case H_FROM_SPACE:
621                         if (msginfo->fromspace) break;
622                         msginfo->fromspace = g_strdup(hp);
623                         break;
624                 case H_LIST_POST:
625                         msginfo->list_post = g_strdup(hp);
626                         break;
627                 case H_LIST_SUBSCRIBE:
628                         msginfo->list_subscribe = g_strdup(hp);
629                         break;
630                 case H_LIST_UNSUBSCRIBE:
631                         msginfo->list_unsubscribe = g_strdup(hp);
632                         break;
633                 case H_LIST_HELP:
634                         msginfo->list_help = g_strdup(hp);
635                         break;
636                 case H_LIST_ARCHIVE:
637                         msginfo->list_archive = g_strdup(hp);
638                         break;
639                 case H_LIST_OWNER:
640                         msginfo->list_owner = g_strdup(hp);
641                 default:
642                         break;
643                 }
644         }
645
646         if (!msginfo->inreplyto && msginfo->references)
647                 msginfo->inreplyto =
648                         g_strdup((gchar *)msginfo->references->data);
649
650         return msginfo;
651 }
652
653 gchar *procheader_get_fromname(const gchar *str)
654 {
655         gchar *tmp, *name;
656
657         Xstrdup_a(tmp, str, return NULL);
658
659         if (*tmp == '\"') {
660                 extract_quote(tmp, '\"');
661                 g_strstrip(tmp);
662         } else if (strchr(tmp, '<')) {
663                 eliminate_parenthesis(tmp, '<', '>');
664                 g_strstrip(tmp);
665                 if (*tmp == '\0') {
666                         strcpy(tmp, str);
667                         extract_parenthesis(tmp, '<', '>');
668                         g_strstrip(tmp);
669                 }
670         } else if (strchr(tmp, '(')) {
671                 extract_parenthesis(tmp, '(', ')');
672                 g_strstrip(tmp);
673         }
674
675         if (*tmp == '\0')
676                 name = g_strdup(str);
677         else
678                 name = g_strdup(tmp);
679
680         return name;
681 }
682
683 static gint procheader_scan_date_string(const gchar *str,
684                                         gchar *weekday, gint *day,
685                                         gchar *month, gint *year,
686                                         gint *hh, gint *mm, gint *ss,
687                                         gchar *zone)
688 {
689         gint result;
690
691         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d %5s",
692                         weekday, day, month, year, hh, mm, ss, zone);
693         if (result == 8) return 0;
694
695         result = sscanf(str, "%3s,%d %9s %d %2d:%2d:%2d %5s",
696                         weekday, day, month, year, hh, mm, ss, zone);
697         if (result == 8) return 0;
698
699         result = sscanf(str, "%d %9s %d %2d:%2d:%2d %5s",
700                         day, month, year, hh, mm, ss, zone);
701         if (result == 7) return 0;
702
703         *zone = '\0';
704         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d",
705                         weekday, day, month, year, hh, mm, ss);
706         if (result == 7) return 0;
707
708         result = sscanf(str, "%d %9s %d %2d:%2d:%2d",
709                         day, month, year, hh, mm, ss);
710         if (result == 6) return 0;
711
712         *ss = 0;
713         result = sscanf(str, "%10s %d %9s %d %2d:%2d %5s",
714                         weekday, day, month, year, hh, mm, zone);
715         if (result == 7) return 0;
716
717         result = sscanf(str, "%d %9s %d %2d:%2d %5s",
718                         day, month, year, hh, mm, zone);
719         if (result == 6) return 0;
720
721         *zone = '\0';
722         result = sscanf(str, "%10s %d %9s %d %2d:%2d",
723                         weekday, day, month, year, hh, mm);
724         if (result == 6) return 0;
725
726         result = sscanf(str, "%d %9s %d %2d:%2d",
727                         day, month, year, hh, mm);
728         if (result == 5) return 0;
729
730         return -1;
731 }
732
733 /*
734  * Hiro, most UNIXen support this function:
735  * http://www.mcsr.olemiss.edu/cgi-bin/man-cgi?getdate
736  */
737 gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
738 {
739         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
740         gchar weekday[11];
741         gint day;
742         gchar month[10];
743         gint year;
744         gint hh, mm, ss;
745         GDateMonth dmonth;
746         gchar *p;
747
748         if (!t)
749                 return FALSE;
750         
751         memset(t, 0, sizeof *t);        
752
753         if (procheader_scan_date_string(src, weekday, &day, month, &year,
754                                         &hh, &mm, &ss, zone) < 0) {
755                 g_warning("Invalid date: %s\n", src);
756                 return FALSE;
757         }
758
759         /* Y2K compliant :) */
760         if (year < 100) {
761                 if (year < 70)
762                         year += 2000;
763                 else
764                         year += 1900;
765         }
766
767         month[3] = '\0';
768         if ((p = strstr(monthstr, month)) != NULL)
769                 dmonth = (gint)(p - monthstr) / 3 + 1;
770         else {
771                 g_warning("Invalid month: %s\n", month);
772                 dmonth = G_DATE_BAD_MONTH;
773         }
774
775         t->tm_sec = ss;
776         t->tm_min = mm;
777         t->tm_hour = hh;
778         t->tm_mday = day;
779         t->tm_mon = dmonth - 1;
780         t->tm_year = year - 1900;
781         t->tm_wday = 0;
782         t->tm_yday = 0;
783         t->tm_isdst = -1;
784
785         mktime(t);
786
787         return TRUE;
788 }
789
790 time_t procheader_date_parse(gchar *dest, const gchar *src, gint len)
791 {
792         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
793         gchar weekday[11];
794         gint day;
795         gchar month[10];
796         gint year;
797         gint hh, mm, ss;
798         gchar zone[6];
799         GDateMonth dmonth = G_DATE_BAD_MONTH;
800         struct tm t;
801         gchar *p;
802         time_t timer;
803         time_t tz_offset;
804
805         if (procheader_scan_date_string(src, weekday, &day, month, &year,
806                                         &hh, &mm, &ss, zone) < 0) {
807                 if (dest && len > 0)
808                         strncpy2(dest, src, len);
809                 return 0;
810         }
811
812         /* Y2K compliant :) */
813         if (year < 1000) {
814                 if (year < 50)
815                         year += 2000;
816                 else
817                         year += 1900;
818         }
819
820         month[3] = '\0';
821         for (p = monthstr; *p != '\0'; p += 3) {
822                 if (!g_ascii_strncasecmp(p, month, 3)) {
823                         dmonth = (gint)(p - monthstr) / 3 + 1;
824                         break;
825                 }
826         }
827
828         t.tm_sec = ss;
829         t.tm_min = mm;
830         t.tm_hour = hh;
831         t.tm_mday = day;
832         t.tm_mon = dmonth - 1;
833         t.tm_year = year - 1900;
834         t.tm_wday = 0;
835         t.tm_yday = 0;
836         t.tm_isdst = -1;
837
838         timer = mktime(&t);
839         tz_offset = remote_tzoffset_sec(zone);
840         if (tz_offset != -1)
841                 timer += tzoffset_sec(&timer) - tz_offset;
842
843         if (dest)
844                 procheader_date_get_localtime(dest, len, timer);
845
846         return timer;
847 }
848
849 void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
850 {
851         struct tm *lt;
852         gchar *default_format = "%y/%m/%d(%a) %H:%M";
853         gchar *str;
854         const gchar *src_codeset, *dest_codeset;
855
856         lt = localtime(&timer);
857
858         if (prefs_common.date_format)
859                 strftime(dest, len, prefs_common.date_format, lt);
860         else
861                 strftime(dest, len, default_format, lt);
862
863         if (!g_utf8_validate(dest, -1, NULL)) {
864                 src_codeset = conv_get_locale_charset_str_no_utf8();
865                 dest_codeset = CS_UTF_8;
866                 str = conv_codeset_strdup(dest, src_codeset, dest_codeset);
867                 if (str) {
868                         strncpy2(dest, str, len);
869                         g_free(str);
870                 }
871         }
872 }
873
874 /* Added by Mel Hadasht on 27 Aug 2001 */
875 /* Get a header from msginfo */
876 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len, gchar *header)
877 {
878         gchar *file;
879         FILE *fp;
880         HeaderEntry hentry[]={ { NULL, NULL, TRUE  },
881                                { NULL, NULL, FALSE } };
882         gint val;
883
884         hentry[0].name = header;
885        
886         g_return_val_if_fail(msginfo != NULL, -1);
887         file = procmsg_get_message_file_path(msginfo);
888         if ((fp = g_fopen(file, "rb")) == NULL) {
889                FILE_OP_ERROR(file, "fopen");
890                g_free(file);
891                return -1;
892         }
893         val = procheader_get_one_field(buf,len, fp, hentry);
894         if (fclose(fp) == EOF) {
895                 FILE_OP_ERROR(file, "fclose");
896                 g_unlink(file);
897                 g_free(file);
898                 return -1;
899         }
900
901         g_free(file);
902         if (val == -1)
903                 return -1;
904
905         return 0;
906 }