2006-09-30 [colin] 2.5.2cvs29
[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         void *orig_data = data;
439
440         get_one_field_func get_one_field =
441                 isstring ? (get_one_field_func)string_get_one_field
442                          : (get_one_field_func)procheader_get_one_field;
443
444         hentry = procheader_get_headernames(full);
445
446         if (MSG_IS_QUEUED(flags) || MSG_IS_DRAFT(flags)) {
447                 while (get_one_field(buf, sizeof(buf), data, NULL) != -1) {
448                         if (!strncmp(buf, "X-Sylpheed-End-Special-Headers: 1",
449                                 strlen("X-Sylpheed-End-Special-Headers:")))
450                                 break;
451                         /* from other mailers */
452                         if (!strncmp(buf, "Date: ", 6)
453                         ||  !strncmp(buf, "To: ", 4)
454                         ||  !strncmp(buf, "From: ", 6)
455                         ||  !strncmp(buf, "Subject: ", 9)) {
456                                 if (isstring)
457                                         data = orig_data;
458                                 else 
459                                         rewind((FILE *)data);
460                                 break;
461                         }
462                 }
463         }
464
465         msginfo = procmsg_msginfo_new();
466         
467         if (flags.tmp_flags || flags.perm_flags) 
468                 msginfo->flags = flags;
469         else 
470                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_NEW | MSG_UNREAD);
471         
472         msginfo->inreplyto = NULL;
473
474         while ((hnum = get_one_field(buf, sizeof(buf), data, hentry))
475                != -1) {
476                 hp = buf + strlen(hentry[hnum].name);
477                 while (*hp == ' ' || *hp == '\t') hp++;
478
479                 switch (hnum) {
480                 case H_DATE:
481                         if (msginfo->date) break;
482                         msginfo->date_t =
483                                 procheader_date_parse(NULL, hp, 0);
484                         if (g_utf8_validate(hp, -1, NULL)) {
485                                 msginfo->date = g_strdup(hp);
486                         } else {
487                                 gchar *utf = conv_codeset_strdup(
488                                         hp, 
489                                         conv_get_locale_charset_str_no_utf8(),
490                                         CS_INTERNAL);
491                                 if (utf == NULL || 
492                                     !g_utf8_validate(utf, -1, NULL)) {
493                                         g_free(utf);
494                                         utf = g_malloc(strlen(buf)*2+1);
495                                         conv_localetodisp(utf, 
496                                                 strlen(hp)*2+1, hp);
497                                 }
498                                 msginfo->date = utf;
499                         }
500                         break;
501                 case H_FROM:
502                         if (msginfo->from) break;
503                         msginfo->from = conv_unmime_header(hp, NULL);
504                         msginfo->fromname = procheader_get_fromname(msginfo->from);
505                         remove_return(msginfo->from);
506                         remove_return(msginfo->fromname);
507                         break;
508                 case H_TO:
509                         tmp = conv_unmime_header(hp, NULL);
510                         remove_return(tmp);
511                         if (msginfo->to) {
512                                 p = msginfo->to;
513                                 msginfo->to =
514                                         g_strconcat(p, ", ", tmp, NULL);
515                                 g_free(p);
516                         } else
517                                 msginfo->to = g_strdup(tmp);
518                         g_free(tmp);                                
519                         break;
520                 case H_CC:
521                         tmp = conv_unmime_header(hp, NULL);
522                         remove_return(tmp);
523                         if (msginfo->cc) {
524                                 p = msginfo->cc;
525                                 msginfo->cc =
526                                         g_strconcat(p, ", ", tmp, NULL);
527                                 g_free(p);
528                         } else
529                                 msginfo->cc = g_strdup(tmp);
530                         g_free(tmp);                                
531                         break;
532                 case H_NEWSGROUPS:
533                         if (msginfo->newsgroups) {
534                                 p = msginfo->newsgroups;
535                                 msginfo->newsgroups =
536                                         g_strconcat(p, ",", hp, NULL);
537                                 g_free(p);
538                         } else
539                                 msginfo->newsgroups = g_strdup(hp);
540                         break;
541                 case H_SUBJECT:
542                         if (msginfo->subject) break;
543                         msginfo->subject = conv_unmime_header(hp, NULL);
544                         remove_return(msginfo->subject);
545                         break;
546                 case H_MSG_ID:
547                         if (msginfo->msgid) break;
548
549                         extract_parenthesis(hp, '<', '>');
550                         remove_space(hp);
551                         msginfo->msgid = g_strdup(hp);
552                         break;
553                 case H_REFERENCES:
554                         msginfo->references =
555                                 references_list_prepend(msginfo->references,
556                                                         hp);
557                         break;
558                 case H_IN_REPLY_TO:
559                         if (msginfo->inreplyto) break;
560
561                         eliminate_parenthesis(hp, '(', ')');
562                         if ((p = strrchr(hp, '<')) != NULL &&
563                             strchr(p + 1, '>') != NULL) {
564                                 extract_parenthesis(p, '<', '>');
565                                 remove_space(p);
566                                 if (*p != '\0')
567                                         msginfo->inreplyto = g_strdup(p);
568                         }
569                         break;
570                 case H_CONTENT_TYPE:
571                         if (!g_ascii_strncasecmp(hp, "multipart/", 10))
572                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_MULTIPART);
573                         break;
574 #ifdef ALLOW_HEADER_HINT                        
575                 case H_SEEN:
576                         /* mnews Seen header */
577                         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW|MSG_UNREAD);
578                         break;
579 #endif                  
580                 case H_FACE:
581                         if (!msginfo->extradata)
582                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
583                         if (msginfo->extradata->face) break;
584                         msginfo->extradata->face = g_strdup(hp);
585                         break;
586                 case H_X_FACE:
587                         if (!msginfo->extradata)
588                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
589                         if (msginfo->extradata->xface) break;
590                         msginfo->extradata->xface = g_strdup(hp);
591                         break;
592                 case H_DISPOSITION_NOTIFICATION_TO:
593                         if (!msginfo->extradata)
594                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
595                         if (msginfo->extradata->dispositionnotificationto) break;
596                         msginfo->extradata->dispositionnotificationto = g_strdup(hp);
597                         break;
598                 case H_RETURN_RECEIPT_TO:
599                         if (!msginfo->extradata)
600                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
601                         if (msginfo->extradata->returnreceiptto) break;
602                         msginfo->extradata->returnreceiptto = g_strdup(hp);
603                         break;
604 /* partial download infos */                    
605                 case H_SC_PARTIALLY_RETRIEVED:
606                         if (!msginfo->extradata)
607                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
608                         if (msginfo->extradata->partial_recv) break;
609                         msginfo->extradata->partial_recv = g_strdup(hp);
610                         break;
611                 case H_SC_ACCOUNT_SERVER:
612                         if (!msginfo->extradata)
613                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
614                         if (msginfo->extradata->account_server) break;
615                         msginfo->extradata->account_server = g_strdup(hp);
616                         break;
617                 case H_SC_ACCOUNT_LOGIN:
618                         if (!msginfo->extradata)
619                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
620                         if (msginfo->extradata->account_login) break;
621                         msginfo->extradata->account_login = g_strdup(hp);
622                         break;
623                 case H_SC_MESSAGE_SIZE:
624                         if (msginfo->total_size) break;
625                         msginfo->total_size = atoi(hp);
626                         break;
627                 case H_SC_PLANNED_DOWNLOAD:
628                         msginfo->planned_download = atoi(hp);
629                         break;
630 /* end partial download infos */
631 #ifdef ALLOW_HEADER_HINT                        
632                 case H_STATUS:
633                         if (strchr(hp, 'R') != NULL)
634                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
635                         if (strchr(hp, 'O') != NULL)
636                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW);
637                         if (strchr(hp, 'U') != NULL)
638                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
639                         break;
640                 case H_X_STATUS:
641                         if (strchr(hp, 'D') != NULL)
642                                 MSG_SET_PERM_FLAGS(msginfo->flags,
643                                               MSG_REALLY_DELETED);
644                         if (strchr(hp, 'F') != NULL)
645                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_MARKED);
646                         if (strchr(hp, 'd') != NULL)
647                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_DELETED);
648                         if (strchr(hp, 'r') != NULL)
649                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
650                         if (strchr(hp, 'f') != NULL)
651                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
652                         break;
653 #endif                  
654                 case H_FROM_SPACE:
655                         if (msginfo->fromspace) break;
656                         msginfo->fromspace = g_strdup(hp);
657                         remove_return(msginfo->fromspace);
658                         break;
659 /* list infos */
660                 case H_LIST_POST:
661                         if (!msginfo->extradata)
662                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
663                         if (msginfo->extradata->list_post) break;
664                         msginfo->extradata->list_post = g_strdup(hp);
665                         break;
666                 case H_LIST_SUBSCRIBE:
667                         if (!msginfo->extradata)
668                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
669                         if (msginfo->extradata->list_subscribe) break;
670                         msginfo->extradata->list_subscribe = g_strdup(hp);
671                         break;
672                 case H_LIST_UNSUBSCRIBE:
673                         if (!msginfo->extradata)
674                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
675                         if (msginfo->extradata->list_unsubscribe) break;
676                         msginfo->extradata->list_unsubscribe = g_strdup(hp);
677                         break;
678                 case H_LIST_HELP:
679                         if (!msginfo->extradata)
680                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
681                         if (msginfo->extradata->list_help) break;
682                         msginfo->extradata->list_help = g_strdup(hp);
683                         break;
684                 case H_LIST_ARCHIVE:
685                         if (!msginfo->extradata)
686                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
687                         if (msginfo->extradata->list_archive) break;
688                         msginfo->extradata->list_archive = g_strdup(hp);
689                         break;
690                 case H_LIST_OWNER:
691                         if (!msginfo->extradata)
692                                 msginfo->extradata = g_new0(MsgInfoExtraData, 1);
693                         if (msginfo->extradata->list_owner) break;
694                         msginfo->extradata->list_owner = g_strdup(hp);
695                         break;
696 /* end list infos */
697                 default:
698                         break;
699                 }
700         }
701
702         if (!msginfo->inreplyto && msginfo->references)
703                 msginfo->inreplyto =
704                         g_strdup((gchar *)msginfo->references->data);
705
706         return msginfo;
707 }
708
709 gchar *procheader_get_fromname(const gchar *str)
710 {
711         gchar *tmp, *name;
712
713         Xstrdup_a(tmp, str, return NULL);
714
715         if (*tmp == '\"') {
716                 extract_quote(tmp, '\"');
717                 g_strstrip(tmp);
718         } else if (strchr(tmp, '<')) {
719                 eliminate_parenthesis(tmp, '<', '>');
720                 g_strstrip(tmp);
721                 if (*tmp == '\0') {
722                         strcpy(tmp, str);
723                         extract_parenthesis(tmp, '<', '>');
724                         g_strstrip(tmp);
725                 }
726         } else if (strchr(tmp, '(')) {
727                 extract_parenthesis(tmp, '(', ')');
728                 g_strstrip(tmp);
729         }
730
731         if (*tmp == '\0')
732                 name = g_strdup(str);
733         else
734                 name = g_strdup(tmp);
735
736         return name;
737 }
738
739 static gint procheader_scan_date_string(const gchar *str,
740                                         gchar *weekday, gint *day,
741                                         gchar *month, gint *year,
742                                         gint *hh, gint *mm, gint *ss,
743                                         gchar *zone)
744 {
745         gint result;
746
747         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d %5s",
748                         weekday, day, month, year, hh, mm, ss, zone);
749         if (result == 8) return 0;
750
751         result = sscanf(str, "%3s,%d %9s %d %2d:%2d:%2d %5s",
752                         weekday, day, month, year, hh, mm, ss, zone);
753         if (result == 8) return 0;
754
755         result = sscanf(str, "%d %9s %d %2d:%2d:%2d %5s",
756                         day, month, year, hh, mm, ss, zone);
757         if (result == 7) return 0;
758
759         *zone = '\0';
760         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d",
761                         weekday, day, month, year, hh, mm, ss);
762         if (result == 7) return 0;
763
764         result = sscanf(str, "%d %9s %d %2d:%2d:%2d",
765                         day, month, year, hh, mm, ss);
766         if (result == 6) return 0;
767
768         *ss = 0;
769         result = sscanf(str, "%10s %d %9s %d %2d:%2d %5s",
770                         weekday, day, month, year, hh, mm, zone);
771         if (result == 7) return 0;
772
773         result = sscanf(str, "%d %9s %d %2d:%2d %5s",
774                         day, month, year, hh, mm, zone);
775         if (result == 6) return 0;
776
777         *zone = '\0';
778         result = sscanf(str, "%10s %d %9s %d %2d:%2d",
779                         weekday, day, month, year, hh, mm);
780         if (result == 6) return 0;
781
782         result = sscanf(str, "%d %9s %d %2d:%2d",
783                         day, month, year, hh, mm);
784         if (result == 5) return 0;
785
786         return -1;
787 }
788
789 /*
790  * Hiro, most UNIXen support this function:
791  * http://www.mcsr.olemiss.edu/cgi-bin/man-cgi?getdate
792  */
793 gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
794 {
795         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
796         gchar weekday[11];
797         gint day;
798         gchar month[10];
799         gint year;
800         gint hh, mm, ss;
801         GDateMonth dmonth;
802         gchar *p;
803
804         if (!t)
805                 return FALSE;
806         
807         memset(t, 0, sizeof *t);        
808
809         if (procheader_scan_date_string(src, weekday, &day, month, &year,
810                                         &hh, &mm, &ss, zone) < 0) {
811                 g_warning("Invalid date: %s\n", src);
812                 return FALSE;
813         }
814
815         /* Y2K compliant :) */
816         if (year < 100) {
817                 if (year < 70)
818                         year += 2000;
819                 else
820                         year += 1900;
821         }
822
823         month[3] = '\0';
824         if ((p = strstr(monthstr, month)) != NULL)
825                 dmonth = (gint)(p - monthstr) / 3 + 1;
826         else {
827                 g_warning("Invalid month: %s\n", month);
828                 dmonth = G_DATE_BAD_MONTH;
829         }
830
831         t->tm_sec = ss;
832         t->tm_min = mm;
833         t->tm_hour = hh;
834         t->tm_mday = day;
835         t->tm_mon = dmonth - 1;
836         t->tm_year = year - 1900;
837         t->tm_wday = 0;
838         t->tm_yday = 0;
839         t->tm_isdst = -1;
840
841         mktime(t);
842
843         return TRUE;
844 }
845
846 time_t procheader_date_parse(gchar *dest, const gchar *src, gint len)
847 {
848         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
849         gchar weekday[11];
850         gint day;
851         gchar month[10];
852         gint year;
853         gint hh, mm, ss;
854         gchar zone[6];
855         GDateMonth dmonth = G_DATE_BAD_MONTH;
856         struct tm t;
857         gchar *p;
858         time_t timer;
859         time_t tz_offset;
860
861         if (procheader_scan_date_string(src, weekday, &day, month, &year,
862                                         &hh, &mm, &ss, zone) < 0) {
863                 if (dest && len > 0)
864                         strncpy2(dest, src, len);
865                 return 0;
866         }
867
868         /* Y2K compliant :) */
869         if (year < 1000) {
870                 if (year < 50)
871                         year += 2000;
872                 else
873                         year += 1900;
874         }
875
876         month[3] = '\0';
877         for (p = monthstr; *p != '\0'; p += 3) {
878                 if (!g_ascii_strncasecmp(p, month, 3)) {
879                         dmonth = (gint)(p - monthstr) / 3 + 1;
880                         break;
881                 }
882         }
883
884         t.tm_sec = ss;
885         t.tm_min = mm;
886         t.tm_hour = hh;
887         t.tm_mday = day;
888         t.tm_mon = dmonth - 1;
889         t.tm_year = year - 1900;
890         t.tm_wday = 0;
891         t.tm_yday = 0;
892         t.tm_isdst = -1;
893
894         timer = mktime(&t);
895         tz_offset = remote_tzoffset_sec(zone);
896         if (tz_offset != -1)
897                 timer += tzoffset_sec(&timer) - tz_offset;
898
899         if (dest)
900                 procheader_date_get_localtime(dest, len, timer);
901
902         return timer;
903 }
904
905 void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
906 {
907         struct tm *lt;
908         gchar *default_format = "%y/%m/%d(%a) %H:%M";
909         gchar *str;
910         const gchar *src_codeset, *dest_codeset;
911
912         lt = localtime(&timer);
913
914         if (prefs_common.date_format)
915                 strftime(dest, len, prefs_common.date_format, lt);
916         else
917                 strftime(dest, len, default_format, lt);
918
919         if (!g_utf8_validate(dest, -1, NULL)) {
920                 src_codeset = conv_get_locale_charset_str_no_utf8();
921                 dest_codeset = CS_UTF_8;
922                 str = conv_codeset_strdup(dest, src_codeset, dest_codeset);
923                 if (str) {
924                         strncpy2(dest, str, len);
925                         g_free(str);
926                 }
927         }
928 }
929
930 /* Added by Mel Hadasht on 27 Aug 2001 */
931 /* Get a header from msginfo */
932 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len, gchar *header)
933 {
934         gchar *file;
935         FILE *fp;
936         HeaderEntry hentry[]={ { NULL, NULL, TRUE  },
937                                { NULL, NULL, FALSE } };
938         gint val;
939
940         hentry[0].name = header;
941        
942         g_return_val_if_fail(msginfo != NULL, -1);
943         file = procmsg_get_message_file_path(msginfo);
944         if ((fp = g_fopen(file, "rb")) == NULL) {
945                FILE_OP_ERROR(file, "fopen");
946                g_free(file);
947                return -1;
948         }
949         val = procheader_get_one_field(buf,len, fp, hentry);
950         if (fclose(fp) == EOF) {
951                 FILE_OP_ERROR(file, "fclose");
952                 g_unlink(file);
953                 g_free(file);
954                 return -1;
955         }
956
957         g_free(file);
958         if (val == -1)
959                 return -1;
960
961         return 0;
962 }