2005-10-20 [colin] 1.9.15cvs81
[claws.git] / src / procheader.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2005 Hiroyuki Yamamoto
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 #if 0
169 gchar *procheader_get_unfolded_line(gchar *buf, size_t len, FILE *fp)
170 {
171         gboolean folded = FALSE;
172         gint nexthead;
173         gchar *bufp;
174
175         if (fgets(buf, len, fp) == NULL) return NULL;
176         if (buf[0] == '\r' || buf[0] == '\n') return NULL;
177         bufp = buf + strlen(buf);
178
179         for (; bufp > buf &&
180              (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
181              bufp--)
182                 *(bufp - 1) = '\0';
183
184         while (1) {
185                 nexthead = fgetc(fp);
186
187                 /* folded */
188                 if (nexthead == ' ' || nexthead == '\t')
189                         folded = TRUE;
190                 else if (nexthead == EOF)
191                         break;
192                 else if (folded == TRUE) {
193                         if ((len - (bufp - buf)) <= 2) break;
194
195                         if (nexthead == '\n') {
196                                 folded = FALSE;
197                                 continue;
198                         }
199
200                         /* replace return code on the tail end
201                            with space */
202                         *bufp++ = ' ';
203                         *bufp++ = nexthead;
204                         *bufp = '\0';
205
206                         /* concatenate next line */
207                         if (fgets(bufp, len - (bufp - buf), fp)
208                             == NULL) break;
209                         bufp += strlen(bufp);
210
211                         for (; bufp > buf &&
212                              (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
213                              bufp--)
214                                 *(bufp - 1) = '\0';
215
216                         folded = FALSE;
217                 } else {
218                         ungetc(nexthead, fp);
219                         break;
220                 }
221         }
222
223         /* remove trailing return code */
224         strretchomp(buf);
225
226         return buf;
227 }
228 #endif
229
230 #if 0
231 GSList *procheader_get_header_list_from_file(const gchar *file)
232 {
233         FILE *fp;
234         GSList *hlist;
235
236         if ((fp = g_fopen(file, "rb")) == NULL) {
237                 FILE_OP_ERROR(file, "fopen");
238                 return NULL;
239         }
240
241         hlist = procheader_get_header_list(fp);
242
243         fclose(fp);
244         return hlist;
245 }
246
247 GSList *procheader_get_header_list(FILE *fp)
248 {
249         gchar buf[BUFFSIZE];
250         GSList *hlist = NULL;
251         Header *header;
252
253         g_return_val_if_fail(fp != NULL, NULL);
254
255         while (procheader_get_unfolded_line(buf, sizeof(buf), fp) != NULL) {
256                 if ((header = procheader_parse_header(buf)) != NULL)
257                         hlist = g_slist_append(hlist, header);
258                 /*
259                 if (*buf == ':') continue;
260                 for (p = buf; *p && *p != ' '; p++) {
261                         if (*p == ':') {
262                                 header = g_new(Header, 1);
263                                 header->name = g_strndup(buf, p - buf);
264                                 p++;
265                                 while (*p == ' ' || *p == '\t') p++;
266                                 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
267                                 header->body = g_strdup(tmp);
268
269                                 hlist = g_slist_append(hlist, header);
270                                 break;
271                         }
272                 }
273                 */
274         }
275
276         return hlist;
277 }
278 #endif
279
280 #if 0
281 GPtrArray *procheader_get_header_array(FILE *fp)
282 {
283         gchar buf[BUFFSIZE];
284         GPtrArray *headers;
285         Header *header;
286
287         g_return_val_if_fail(fp != NULL, NULL);
288
289         headers = g_ptr_array_new();
290
291         while (procheader_get_unfolded_line(buf, sizeof(buf), fp) != NULL) {
292                 if ((header = procheader_parse_header(buf)) != NULL)
293                         g_ptr_array_add(headers, header);
294                 /*
295                 if (*buf == ':') continue;
296                 for (p = buf; *p && *p != ' '; p++) {
297                         if (*p == ':') {
298                                 header = g_new(Header, 1);
299                                 header->name = g_strndup(buf, p - buf);
300                                 p++;
301                                 while (*p == ' ' || *p == '\t') p++;
302                                 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
303                                 header->body = g_strdup(tmp);
304
305                                 g_ptr_array_add(headers, header);
306                                 break;
307                         }
308                 }
309                 */
310         }
311
312         return headers;
313 }
314 #endif
315
316 GPtrArray *procheader_get_header_array_asis(FILE *fp)
317 {
318         gchar buf[BUFFSIZE];
319         GPtrArray *headers;
320         Header *header;
321
322         g_return_val_if_fail(fp != NULL, NULL);
323
324         headers = g_ptr_array_new();
325
326         while (procheader_get_one_field_asis(buf, sizeof(buf), fp) != -1) {
327                 if ((header = procheader_parse_header(buf)) != NULL)
328                         g_ptr_array_add(headers, header);
329                         /*
330                 if (*buf == ':') continue;
331                 for (p = buf; *p && *p != ' '; p++) {
332                         if (*p == ':') {
333                                 header = g_new(Header, 1);
334                                 header->name = g_strndup(buf, p - buf);
335                                 p++;
336                                 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
337                                 header->body = g_strdup(tmp);
338
339                                 g_ptr_array_add(headers, header);
340                                 break;
341                         }
342                 }
343                         */
344         }
345
346         return headers;
347 }
348
349 #if 0
350 void procheader_header_list_destroy(GSList *hlist)
351 {
352         Header *header;
353
354         while (hlist != NULL) {
355                 header = hlist->data;
356                 procheader_header_free(header);
357                 hlist = g_slist_remove(hlist, header);
358         }
359 }
360 #endif
361
362 void procheader_header_array_destroy(GPtrArray *harray)
363 {
364         gint i;
365         Header *header;
366
367         for (i = 0; i < harray->len; i++) {
368                 header = g_ptr_array_index(harray, i);
369                 procheader_header_free(header);
370         }
371
372         g_ptr_array_free(harray, TRUE);
373 }
374
375 void procheader_header_free(Header *header)
376 {
377         if (!header) return;
378
379         g_free(header->name);
380         g_free(header->body);
381         g_free(header);
382 }
383
384 /*
385   tests whether two headers' names are equal
386   remove the trailing ':' or ' ' before comparing
387 */
388
389 gboolean procheader_headername_equal(char * hdr1, char * hdr2)
390 {
391         int len1;
392         int len2;
393
394         len1 = strlen(hdr1);
395         len2 = strlen(hdr2);
396         if (hdr1[len1 - 1] == ':')
397                 len1--;
398         if (hdr2[len2 - 1] == ':')
399                 len2--;
400         if (len1 != len2)
401                 return 0;
402
403         return (g_ascii_strncasecmp(hdr1, hdr2, len1) == 0);
404 }
405
406 /*
407   parse headers, for example :
408   From: dinh@enseirb.fr becomes :
409   header->name = "From:"
410   header->body = "dinh@enseirb.fr"
411  */
412
413 Header * procheader_parse_header(gchar * buf)
414 {
415         gchar *p = buf;
416         Header * header;
417
418         if ((*buf == ':') || (*buf == ' '))
419                 return NULL;
420
421         for (p = buf; *p ; p++) {
422                 if ((*p == ':') || (*p == ' ')) {
423                         header = g_new(Header, 1);
424                         header->name = g_strndup(buf, p - buf + 1);
425                         p++;
426                         while (*p == ' ' || *p == '\t') p++;
427                         header->body = conv_unmime_header(p, NULL);
428                         return header;
429                 }
430         }
431         return NULL;
432 }
433
434 void procheader_get_header_fields(FILE *fp, HeaderEntry hentry[])
435 {
436         gchar buf[BUFFSIZE];
437         HeaderEntry *hp;
438         gint hnum;
439         gchar *p;
440
441         if (hentry == NULL) return;
442
443         while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
444                != -1) {
445                 hp = hentry + hnum;
446
447                 p = buf + strlen(hp->name);
448                 while (*p == ' ' || *p == '\t') p++;
449
450                 if (hp->body == NULL)
451                         hp->body = g_strdup(p);
452                 else if (procheader_headername_equal(hp->name, "To") ||
453                          procheader_headername_equal(hp->name, "Cc")) {
454                         gchar *tp = hp->body;
455                         hp->body = g_strconcat(tp, ", ", p, NULL);
456                         g_free(tp);
457                 }
458         }
459 }
460
461 MsgInfo *procheader_parse_file(const gchar *file, MsgFlags flags,
462                                gboolean full, gboolean decrypted)
463 {
464         struct stat s;
465         FILE *fp;
466         MsgInfo *msginfo;
467
468         if (stat(file, &s) < 0) {
469                 FILE_OP_ERROR(file, "stat");
470                 return NULL;
471         }
472         if (!S_ISREG(s.st_mode))
473                 return NULL;
474
475         if ((fp = g_fopen(file, "rb")) == NULL) {
476                 FILE_OP_ERROR(file, "fopen");
477                 return NULL;
478         }
479
480         msginfo = procheader_parse_stream(fp, flags, full, decrypted);
481         fclose(fp);
482
483         if (msginfo) {
484                 msginfo->size = s.st_size;
485                 msginfo->mtime = s.st_mtime;
486         }
487
488         return msginfo;
489 }
490
491 MsgInfo *procheader_parse_str(const gchar *str, MsgFlags flags, gboolean full,
492                               gboolean decrypted)
493 {
494         return parse_stream(&str, TRUE, flags, full, decrypted);
495 }
496
497 enum
498 {
499         H_DATE          = 0,
500         H_FROM          = 1,
501         H_TO            = 2,
502         H_CC            = 3,
503         H_NEWSGROUPS    = 4,
504         H_SUBJECT       = 5,
505         H_MSG_ID        = 6,
506         H_REFERENCES    = 7,
507         H_IN_REPLY_TO   = 8,
508         H_CONTENT_TYPE  = 9,
509         H_SEEN          = 10,
510         H_STATUS        = 11,
511         H_X_STATUS      = 12,
512         H_FROM_SPACE    = 13,
513         H_SC_PLANNED_DOWNLOAD = 14,
514         H_SC_MESSAGE_SIZE = 15,
515         H_X_FACE        = 16,
516         H_DISPOSITION_NOTIFICATION_TO = 17,
517         H_RETURN_RECEIPT_TO = 18,
518         H_SC_PARTIALLY_RETRIEVED = 19,
519         H_SC_ACCOUNT_SERVER = 20,
520         H_SC_ACCOUNT_LOGIN = 21,
521 };
522
523 static HeaderEntry hentry_full[] = {{"Date:",           NULL, FALSE},
524                                    {"From:",            NULL, TRUE},
525                                    {"To:",              NULL, TRUE},
526                                    {"Cc:",              NULL, TRUE},
527                                    {"Newsgroups:",      NULL, TRUE},
528                                    {"Subject:",         NULL, TRUE},
529                                    {"Message-ID:",      NULL, FALSE},
530                                    {"References:",      NULL, FALSE},
531                                    {"In-Reply-To:",     NULL, FALSE},
532                                    {"Content-Type:",    NULL, FALSE},
533                                    {"Seen:",            NULL, FALSE},
534                                    {"Status:",          NULL, FALSE},
535                                    {"X-Status:",        NULL, FALSE},
536                                    {"From ",            NULL, FALSE},
537                                    {"SC-Marked-For-Download:", NULL, FALSE},
538                                    {"SC-Message-Size:", NULL, FALSE},
539                                    {"X-Face:",          NULL, FALSE},
540                                    {"Disposition-Notification-To:", NULL, FALSE},
541                                    {"Return-Receipt-To:", NULL, FALSE},
542                                    {"SC-Partially-Retrieved:", NULL, FALSE},
543                                    {"SC-Account-Server:", NULL, FALSE},
544                                    {"SC-Account-Login:",NULL, FALSE},
545                                    {NULL,               NULL, FALSE}};
546
547 static HeaderEntry hentry_short[] = {{"Date:",          NULL, FALSE},
548                                     {"From:",           NULL, TRUE},
549                                     {"To:",             NULL, TRUE},
550                                     {"Cc:",             NULL, TRUE},
551                                     {"Newsgroups:",     NULL, TRUE},
552                                     {"Subject:",        NULL, TRUE},
553                                     {"Message-ID:",     NULL, FALSE},
554                                     {"References:",     NULL, FALSE},
555                                     {"In-Reply-To:",    NULL, FALSE},
556                                     {"Content-Type:",   NULL, FALSE},
557                                     {"Seen:",           NULL, FALSE},
558                                     {"Status:",         NULL, FALSE},
559                                     {"X-Status:",       NULL, FALSE},
560                                     {"From ",           NULL, FALSE},
561                                     {"SC-Marked-For-Download:", NULL, FALSE},
562                                     {"SC-Message-Size:",NULL, FALSE},
563                                     {NULL,              NULL, FALSE}};
564
565 HeaderEntry* procheader_get_headernames(gboolean full)
566 {
567         return full ? hentry_full : hentry_short;
568 }
569
570 MsgInfo *procheader_parse_stream(FILE *fp, MsgFlags flags, gboolean full,
571                                  gboolean decrypted)
572 {
573         return parse_stream(fp, FALSE, flags, full, decrypted);
574 }
575
576 static MsgInfo *parse_stream(void *data, gboolean isstring, MsgFlags flags,
577                              gboolean full, gboolean decrypted)
578 {
579         MsgInfo *msginfo;
580         gchar buf[BUFFSIZE];
581         gchar *p, *tmp;
582         gchar *hp;
583         HeaderEntry *hentry;
584         gint hnum;
585         get_one_field_func get_one_field =
586                 isstring ? (get_one_field_func)string_get_one_field
587                          : (get_one_field_func)procheader_get_one_field;
588
589         hentry = procheader_get_headernames(full);
590
591         if (MSG_IS_QUEUED(flags) || MSG_IS_DRAFT(flags)) {
592                 while (get_one_field(buf, sizeof(buf), data, NULL) != -1)
593                         ; /* loop */
594         }
595
596         msginfo = procmsg_msginfo_new();
597         
598         if (flags.tmp_flags || flags.perm_flags) 
599                 msginfo->flags = flags;
600         else 
601                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_NEW | MSG_UNREAD);
602         
603         msginfo->inreplyto = NULL;
604
605         while ((hnum = get_one_field(buf, sizeof(buf), data, hentry))
606                != -1) {
607                 hp = buf + strlen(hentry[hnum].name);
608                 while (*hp == ' ' || *hp == '\t') hp++;
609
610                 switch (hnum) {
611                 case H_DATE:
612                         if (msginfo->date) break;
613                         msginfo->date_t =
614                                 procheader_date_parse(NULL, hp, 0);
615                         msginfo->date = g_strdup(hp);
616                         break;
617                 case H_FROM:
618                         if (msginfo->from) break;
619                         msginfo->from = conv_unmime_header(hp, NULL);
620                         msginfo->fromname = procheader_get_fromname(msginfo->from);
621                         replace_returns(msginfo->from);
622                         replace_returns(msginfo->fromname);
623                         break;
624                 case H_TO:
625                         tmp = conv_unmime_header(hp, NULL);
626                         if (msginfo->to) {
627                                 p = msginfo->to;
628                                 msginfo->to =
629                                         g_strconcat(p, ", ", tmp, NULL);
630                                 g_free(p);
631                         } else
632                                 msginfo->to = g_strdup(tmp);
633                         g_free(tmp);                                
634                         break;
635                 case H_CC:
636                         tmp = conv_unmime_header(hp, NULL);
637                         if (msginfo->cc) {
638                                 p = msginfo->cc;
639                                 msginfo->cc =
640                                         g_strconcat(p, ", ", tmp, NULL);
641                                 g_free(p);
642                         } else
643                                 msginfo->cc = g_strdup(tmp);
644                         g_free(tmp);                                
645                         break;
646                 case H_NEWSGROUPS:
647                         if (msginfo->newsgroups) {
648                                 p = msginfo->newsgroups;
649                                 msginfo->newsgroups =
650                                         g_strconcat(p, ",", hp, NULL);
651                                 g_free(p);
652                         } else
653                                 msginfo->newsgroups = g_strdup(hp);
654                         break;
655                 case H_SUBJECT:
656                         if (msginfo->subject) break;
657                         msginfo->subject = conv_unmime_header(hp, NULL);
658                         replace_returns(msginfo->subject);
659                         break;
660                 case H_MSG_ID:
661                         if (msginfo->msgid) break;
662
663                         extract_parenthesis(hp, '<', '>');
664                         remove_space(hp);
665                         msginfo->msgid = g_strdup(hp);
666                         break;
667                 case H_REFERENCES:
668                         msginfo->references =
669                                 references_list_prepend(msginfo->references,
670                                                         hp);
671                         break;
672                 case H_IN_REPLY_TO:
673                         if (msginfo->inreplyto) break;
674
675                         eliminate_parenthesis(hp, '(', ')');
676                         if ((p = strrchr(hp, '<')) != NULL &&
677                             strchr(p + 1, '>') != NULL) {
678                                 extract_parenthesis(p, '<', '>');
679                                 remove_space(p);
680                                 if (*p != '\0')
681                                         msginfo->inreplyto = g_strdup(p);
682                         }
683                         break;
684                 case H_CONTENT_TYPE:
685                         if (!g_ascii_strncasecmp(hp, "multipart/", 10))
686                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_MULTIPART);
687                         break;
688 #ifdef ALLOW_HEADER_HINT                        
689                 case H_SEEN:
690                         /* mnews Seen header */
691                         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW|MSG_UNREAD);
692                         break;
693 #endif                  
694                 case H_X_FACE:
695                         if (msginfo->xface) break;
696                         msginfo->xface = g_strdup(hp);
697                         break;
698                 case H_DISPOSITION_NOTIFICATION_TO:
699                         if (msginfo->dispositionnotificationto) break;
700                         msginfo->dispositionnotificationto = g_strdup(hp);
701                         break;
702                 case H_RETURN_RECEIPT_TO:
703                         if (msginfo->returnreceiptto) break;
704                         msginfo->returnreceiptto = g_strdup(hp);
705                         break;
706                 case H_SC_PARTIALLY_RETRIEVED:
707                         if (msginfo->partial_recv) break;
708                         msginfo->partial_recv = g_strdup(hp);
709                         break;
710                 case H_SC_ACCOUNT_SERVER:
711                         if (msginfo->account_server) break;
712                         msginfo->account_server = g_strdup(hp);
713                         break;
714                 case H_SC_ACCOUNT_LOGIN:
715                         if (msginfo->account_login) break;
716                         msginfo->account_login = g_strdup(hp);
717                         break;
718                 case H_SC_MESSAGE_SIZE:
719                         if (msginfo->total_size) break;
720                         msginfo->total_size = atoi(hp);
721                         break;
722                 case H_SC_PLANNED_DOWNLOAD:
723                         msginfo->planned_download = atoi(hp);
724                         break;
725 #ifdef ALLOW_HEADER_HINT                        
726                 case H_STATUS:
727                         if (strchr(hp, 'R') != NULL)
728                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
729                         if (strchr(hp, 'O') != NULL)
730                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW);
731                         if (strchr(hp, 'U') != NULL)
732                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
733                         break;
734                 case H_X_STATUS:
735                         if (strchr(hp, 'D') != NULL)
736                                 MSG_SET_PERM_FLAGS(msginfo->flags,
737                                               MSG_REALLY_DELETED);
738                         if (strchr(hp, 'F') != NULL)
739                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_MARKED);
740                         if (strchr(hp, 'd') != NULL)
741                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_DELETED);
742                         if (strchr(hp, 'r') != NULL)
743                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
744                         if (strchr(hp, 'f') != NULL)
745                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
746                         break;
747 #endif                  
748                 case H_FROM_SPACE:
749                         if (msginfo->fromspace) break;
750                         msginfo->fromspace = g_strdup(hp);
751                         break;
752                 default:
753                         break;
754                 }
755         }
756
757         if (!msginfo->inreplyto && msginfo->references)
758                 msginfo->inreplyto =
759                         g_strdup((gchar *)msginfo->references->data);
760
761         return msginfo;
762 }
763
764 gchar *procheader_get_fromname(const gchar *str)
765 {
766         gchar *tmp, *name;
767
768         Xstrdup_a(tmp, str, return NULL);
769
770         if (*tmp == '\"') {
771                 extract_quote(tmp, '\"');
772                 g_strstrip(tmp);
773         } else if (strchr(tmp, '<')) {
774                 eliminate_parenthesis(tmp, '<', '>');
775                 g_strstrip(tmp);
776                 if (*tmp == '\0') {
777                         strcpy(tmp, str);
778                         extract_parenthesis(tmp, '<', '>');
779                         g_strstrip(tmp);
780                 }
781         } else if (strchr(tmp, '(')) {
782                 extract_parenthesis(tmp, '(', ')');
783                 g_strstrip(tmp);
784         }
785
786         if (*tmp == '\0')
787                 name = g_strdup(str);
788         else
789                 name = g_strdup(tmp);
790
791         return name;
792 }
793
794 static gint procheader_scan_date_string(const gchar *str,
795                                         gchar *weekday, gint *day,
796                                         gchar *month, gint *year,
797                                         gint *hh, gint *mm, gint *ss,
798                                         gchar *zone)
799 {
800         gint result;
801
802         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d %5s",
803                         weekday, day, month, year, hh, mm, ss, zone);
804         if (result == 8) return 0;
805
806         result = sscanf(str, "%3s,%d %9s %d %2d:%2d:%2d %5s",
807                         weekday, day, month, year, hh, mm, ss, zone);
808         if (result == 8) return 0;
809
810         result = sscanf(str, "%d %9s %d %2d:%2d:%2d %5s",
811                         day, month, year, hh, mm, ss, zone);
812         if (result == 7) return 0;
813
814         *zone = '\0';
815         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d",
816                         weekday, day, month, year, hh, mm, ss);
817         if (result == 7) return 0;
818
819         result = sscanf(str, "%d %9s %d %2d:%2d:%2d",
820                         day, month, year, hh, mm, ss);
821         if (result == 6) return 0;
822
823         *ss = 0;
824         result = sscanf(str, "%10s %d %9s %d %2d:%2d %5s",
825                         weekday, day, month, year, hh, mm, zone);
826         if (result == 7) return 0;
827
828         result = sscanf(str, "%d %9s %d %2d:%2d %5s",
829                         day, month, year, hh, mm, zone);
830         if (result == 6) return 0;
831
832         *zone = '\0';
833         result = sscanf(str, "%10s %d %9s %d %2d:%2d",
834                         weekday, day, month, year, hh, mm);
835         if (result == 6) return 0;
836
837         result = sscanf(str, "%d %9s %d %2d:%2d",
838                         day, month, year, hh, mm);
839         if (result == 5) return 0;
840
841         return -1;
842 }
843
844 /*
845  * Hiro, most UNIXen support this function:
846  * http://www.mcsr.olemiss.edu/cgi-bin/man-cgi?getdate
847  */
848 gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
849 {
850         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
851         gchar weekday[11];
852         gint day;
853         gchar month[10];
854         gint year;
855         gint hh, mm, ss;
856         GDateMonth dmonth;
857         gchar *p;
858
859         if (!t)
860                 return FALSE;
861         
862         memset(t, 0, sizeof *t);        
863
864         if (procheader_scan_date_string(src, weekday, &day, month, &year,
865                                         &hh, &mm, &ss, zone) < 0) {
866                 g_warning("Invalid date: %s\n", src);
867                 return FALSE;
868         }
869
870         /* Y2K compliant :) */
871         if (year < 100) {
872                 if (year < 70)
873                         year += 2000;
874                 else
875                         year += 1900;
876         }
877
878         month[3] = '\0';
879         if ((p = strstr(monthstr, month)) != NULL)
880                 dmonth = (gint)(p - monthstr) / 3 + 1;
881         else {
882                 g_warning("Invalid month: %s\n", month);
883                 dmonth = G_DATE_BAD_MONTH;
884         }
885
886         t->tm_sec = ss;
887         t->tm_min = mm;
888         t->tm_hour = hh;
889         t->tm_mday = day;
890         t->tm_mon = dmonth - 1;
891         t->tm_year = year - 1900;
892         t->tm_wday = 0;
893         t->tm_yday = 0;
894         t->tm_isdst = -1;
895
896         mktime(t);
897
898         return TRUE;
899 }
900
901 time_t procheader_date_parse(gchar *dest, const gchar *src, gint len)
902 {
903         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
904         gchar weekday[11];
905         gint day;
906         gchar month[10];
907         gint year;
908         gint hh, mm, ss;
909         gchar zone[6];
910         GDateMonth dmonth = G_DATE_BAD_MONTH;
911         struct tm t;
912         gchar *p;
913         time_t timer;
914         time_t tz_offset;
915
916         if (procheader_scan_date_string(src, weekday, &day, month, &year,
917                                         &hh, &mm, &ss, zone) < 0) {
918                 if (dest && len > 0)
919                         strncpy2(dest, src, len);
920                 return 0;
921         }
922
923         /* Y2K compliant :) */
924         if (year < 1000) {
925                 if (year < 50)
926                         year += 2000;
927                 else
928                         year += 1900;
929         }
930
931         month[3] = '\0';
932         for (p = monthstr; *p != '\0'; p += 3) {
933                 if (!g_ascii_strncasecmp(p, month, 3)) {
934                         dmonth = (gint)(p - monthstr) / 3 + 1;
935                         break;
936                 }
937         }
938
939         t.tm_sec = ss;
940         t.tm_min = mm;
941         t.tm_hour = hh;
942         t.tm_mday = day;
943         t.tm_mon = dmonth - 1;
944         t.tm_year = year - 1900;
945         t.tm_wday = 0;
946         t.tm_yday = 0;
947         t.tm_isdst = -1;
948
949         timer = mktime(&t);
950         tz_offset = remote_tzoffset_sec(zone);
951         if (tz_offset != -1)
952                 timer += tzoffset_sec(&timer) - tz_offset;
953
954         if (dest)
955                 procheader_date_get_localtime(dest, len, timer);
956
957         return timer;
958 }
959
960 void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
961 {
962         struct tm *lt;
963         gchar *default_format = "%y/%m/%d(%a) %H:%M";
964         gchar *str;
965         const gchar *src_codeset, *dest_codeset;
966
967         lt = localtime(&timer);
968
969         if (prefs_common.date_format)
970                 strftime(dest, len, prefs_common.date_format, lt);
971         else
972                 strftime(dest, len, default_format, lt);
973
974         src_codeset = conv_get_locale_charset_str();
975         dest_codeset = CS_UTF_8;
976         str = conv_codeset_strdup(dest, src_codeset, dest_codeset);
977         if (str) {
978                 g_snprintf(dest, len, "%s", str);
979                 strncpy2(dest, str, len);
980                 g_free(str);
981         }
982 }
983
984 /* Added by Mel Hadasht on 27 Aug 2001 */
985 /* Get a header from msginfo */
986 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len, gchar *header)
987 {
988         gchar *file;
989         FILE *fp;
990         HeaderEntry hentry[]={ { NULL, NULL, TRUE  },
991                                { NULL, NULL, FALSE } };
992         gint val;
993
994         hentry[0].name = header;
995        
996         g_return_val_if_fail(msginfo != NULL, -1);
997         file = procmsg_get_message_file_path(msginfo);
998         if ((fp = g_fopen(file, "rb")) == NULL) {
999                FILE_OP_ERROR(file, "fopen");
1000                g_free(file);
1001                return -1;
1002         }
1003         val = procheader_get_one_field(buf,len, fp, hentry);
1004         if (fclose(fp) == EOF) {
1005                 FILE_OP_ERROR(file, "fclose");
1006                 g_unlink(file);
1007                 g_free(file);
1008                 return -1;
1009         }
1010
1011         g_free(file);
1012         if (val == -1)
1013                 return -1;
1014
1015         return 0;
1016 }