0cbf557ce5d35ebe72908f4c9f31e46e4273336d
[claws.git] / src / procheader.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <stdlib.h>
28 #include <time.h>
29 #include <sys/stat.h>
30
31 #include "intl.h"
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 *, int, void *);
41 typedef int (*peekcharfunc)(void *);
42 typedef int (*getcharfunc)(void *);
43 typedef gint (*get_one_field_func)(gchar *, gint, void *, HeaderEntry[]);
44
45 static gint string_get_one_field(gchar *buf, gint len, char **str,
46                                  HeaderEntry hentry[]);
47
48 static char *string_getline(char *buf, int 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, gint 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, gint 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, gint 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, int len, char **str)
78 {
79         if (!**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, gint 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_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, gint 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, gint 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 (nexthead == '\r' || nexthead == '\n') {
194                                 folded = FALSE;
195                                 continue;
196                         }
197
198                         if ((len - (bufp - buf)) <= 2) break;
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 = 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_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 tmp[BUFFSIZE];
416         gchar *p = buf;
417         Header * header;
418
419         if ((*buf == ':') || (*buf == ' '))
420                 return NULL;
421
422         for (p = buf; *p ; p++) {
423                 if ((*p == ':') || (*p == ' ')) {
424                         header = g_new(Header, 1);
425                         header->name = g_strndup(buf, p - buf + 1);
426                         p++;
427                         while (*p == ' ' || *p == '\t') p++;
428                         conv_unmime_header(tmp, sizeof(tmp), p, NULL);
429                         if(tmp == NULL) 
430                                 header->body = g_strdup(p);
431                         else    
432                                 header->body = g_strdup(tmp);
433                         return header;
434                 }
435         }
436         return NULL;
437 }
438
439 void procheader_get_header_fields(FILE *fp, HeaderEntry hentry[])
440 {
441         gchar buf[BUFFSIZE];
442         HeaderEntry *hp;
443         gint hnum;
444         gchar *p;
445
446         if (hentry == NULL) return;
447
448         while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
449                != -1) {
450                 hp = hentry + hnum;
451
452                 p = buf + strlen(hp->name);
453                 while (*p == ' ' || *p == '\t') p++;
454
455                 if (hp->body == NULL)
456                         hp->body = g_strdup(p);
457                 else if (procheader_headername_equal(hp->name, "To") ||
458                          procheader_headername_equal(hp->name, "Cc")) {
459                         gchar *tp = hp->body;
460                         hp->body = g_strconcat(tp, ", ", p, NULL);
461                         g_free(tp);
462                 }
463         }
464 }
465
466 MsgInfo *procheader_parse_file(const gchar *file, MsgFlags flags,
467                                gboolean full, gboolean decrypted)
468 {
469         struct stat s;
470         FILE *fp;
471         MsgInfo *msginfo;
472
473         if (stat(file, &s) < 0) {
474                 FILE_OP_ERROR(file, "stat");
475                 return NULL;
476         }
477         if (!S_ISREG(s.st_mode))
478                 return NULL;
479
480         if ((fp = fopen(file, "rb")) == NULL) {
481                 FILE_OP_ERROR(file, "fopen");
482                 return NULL;
483         }
484
485         msginfo = procheader_parse_stream(fp, flags, full, decrypted);
486         fclose(fp);
487
488         if (msginfo) {
489                 msginfo->size = s.st_size;
490                 msginfo->mtime = s.st_mtime;
491         }
492
493         return msginfo;
494 }
495
496 MsgInfo *procheader_parse_str(const gchar *str, MsgFlags flags, gboolean full,
497                               gboolean decrypted)
498 {
499         return parse_stream(&str, TRUE, flags, full, decrypted);
500 }
501
502 enum
503 {
504         H_DATE          = 0,
505         H_FROM          = 1,
506         H_TO            = 2,
507         H_CC            = 3,
508         H_NEWSGROUPS    = 4,
509         H_SUBJECT       = 5,
510         H_MSG_ID        = 6,
511         H_REFERENCES    = 7,
512         H_IN_REPLY_TO   = 8,
513         H_CONTENT_TYPE  = 9,
514         H_SEEN          = 10,
515         H_STATUS        = 11,
516         H_X_STATUS      = 12,
517         H_FROM_SPACE    = 13,
518         H_SC_PLANNED_DOWNLOAD = 14,
519         H_X_FACE        = 15,
520         H_DISPOSITION_NOTIFICATION_TO = 16,
521         H_RETURN_RECEIPT_TO = 17,
522         H_SC_PARTIALLY_RETRIEVED = 18,
523         H_SC_ACCOUNT_SERVER = 19,
524         H_SC_ACCOUNT_LOGIN = 20,
525         H_SC_MESSAGE_SIZE = 21
526 };
527
528 static HeaderEntry hentry_full[] = {{"Date:",           NULL, FALSE},
529                                    {"From:",            NULL, TRUE},
530                                    {"To:",              NULL, TRUE},
531                                    {"Cc:",              NULL, TRUE},
532                                    {"Newsgroups:",      NULL, TRUE},
533                                    {"Subject:",         NULL, TRUE},
534                                    {"Message-ID:",      NULL, FALSE},
535                                    {"References:",      NULL, FALSE},
536                                    {"In-Reply-To:",     NULL, FALSE},
537                                    {"Content-Type:",    NULL, FALSE},
538                                    {"Seen:",            NULL, FALSE},
539                                    {"Status:",          NULL, FALSE},
540                                    {"X-Status:",        NULL, FALSE},
541                                    {"From ",            NULL, FALSE},
542                                    {"SC-Marked-For-Download:", NULL, FALSE},
543                                    {"X-Face:",          NULL, FALSE},
544                                    {"Disposition-Notification-To:", NULL, FALSE},
545                                    {"Return-Receipt-To:", NULL, FALSE},
546                                    {"SC-Partially-Retrieved:", NULL, FALSE},
547                                    {"SC-Account-Server:", NULL, FALSE},
548                                    {"SC-Account-Login:",NULL, FALSE},
549                                    {"SC-Message-Size:", NULL, FALSE},
550                                    {NULL,               NULL, FALSE}};
551
552 static HeaderEntry hentry_short[] = {{"Date:",          NULL, FALSE},
553                                     {"From:",           NULL, TRUE},
554                                     {"To:",             NULL, TRUE},
555                                     {"Cc:",             NULL, TRUE},
556                                     {"Newsgroups:",     NULL, TRUE},
557                                     {"Subject:",        NULL, TRUE},
558                                     {"Message-ID:",     NULL, FALSE},
559                                     {"References:",     NULL, FALSE},
560                                     {"In-Reply-To:",    NULL, FALSE},
561                                     {"Content-Type:",   NULL, FALSE},
562                                     {"Seen:",           NULL, FALSE},
563                                     {"Status:",         NULL, FALSE},
564                                     {"X-Status:",       NULL, FALSE},
565                                     {"From ",           NULL, FALSE},
566                                     {"SC-Marked-For-Download:", NULL, FALSE},
567                                     {NULL,              NULL, FALSE}};
568
569 HeaderEntry* procheader_get_headernames(gboolean full)
570 {
571         return full ? hentry_full : hentry_short;
572 }
573
574 MsgInfo *procheader_parse_stream(FILE *fp, MsgFlags flags, gboolean full,
575                                  gboolean decrypted)
576 {
577         return parse_stream(fp, FALSE, flags, full, decrypted);
578 }
579
580 static MsgInfo *parse_stream(void *data, gboolean isstring, MsgFlags flags,
581                              gboolean full, gboolean decrypted)
582 {
583         MsgInfo *msginfo;
584         gchar buf[BUFFSIZE], tmp[BUFFSIZE];
585         gchar *reference = NULL;
586         gchar *p;
587         gchar *hp;
588         HeaderEntry *hentry;
589         gint hnum;
590         get_one_field_func get_one_field =
591                 isstring ? (get_one_field_func)string_get_one_field
592                          : (get_one_field_func)procheader_get_one_field;
593
594         hentry = procheader_get_headernames(full);
595
596         if (MSG_IS_QUEUED(flags) || MSG_IS_DRAFT(flags)) {
597                 while (get_one_field(buf, sizeof(buf), data, NULL) != -1)
598                         ; /* loop */
599         }
600
601         msginfo = procmsg_msginfo_new();
602         
603         if (flags.tmp_flags || flags.perm_flags) 
604                 msginfo->flags = flags;
605         else 
606                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_NEW | MSG_UNREAD);
607         
608         msginfo->inreplyto = NULL;
609
610         while ((hnum = get_one_field(buf, sizeof(buf), data, hentry))
611                != -1) {
612                 hp = buf + strlen(hentry[hnum].name);
613                 while (*hp == ' ' || *hp == '\t') hp++;
614
615                 switch (hnum) {
616                 case H_DATE:
617                         if (msginfo->date) break;
618                         msginfo->date_t =
619                                 procheader_date_parse(NULL, hp, 0);
620                         msginfo->date = g_strdup(hp);
621                         break;
622                 case H_FROM:
623                         if (msginfo->from) break;
624                         conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
625                         msginfo->from = g_strdup(tmp);
626                         msginfo->fromname = procheader_get_fromname(tmp);
627                         break;
628                 case H_TO:
629                         conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
630                         if (msginfo->to) {
631                                 p = msginfo->to;
632                                 msginfo->to =
633                                         g_strconcat(p, ", ", tmp, NULL);
634                                 g_free(p);
635                         } else
636                                 msginfo->to = g_strdup(tmp);
637                         break;
638                 case H_CC:
639                         conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
640                         if (msginfo->cc) {
641                                 p = msginfo->cc;
642                                 msginfo->cc =
643                                         g_strconcat(p, ", ", tmp, NULL);
644                                 g_free(p);
645                         } else
646                                 msginfo->cc = g_strdup(tmp);
647                         break;
648                 case H_NEWSGROUPS:
649                         if (msginfo->newsgroups) {
650                                 p = msginfo->newsgroups;
651                                 msginfo->newsgroups =
652                                         g_strconcat(p, ",", hp, NULL);
653                                 g_free(p);
654                         } else
655                                 msginfo->newsgroups = g_strdup(hp);
656                         break;
657                 case H_SUBJECT:
658                         if (msginfo->subject) break;
659                         conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
660                         msginfo->subject = g_strdup(tmp);
661                         break;
662                 case H_MSG_ID:
663                         if (msginfo->msgid) break;
664
665                         extract_parenthesis(hp, '<', '>');
666                         remove_space(hp);
667                         msginfo->msgid = g_strdup(hp);
668                         break;
669                 case H_REFERENCES:
670                 case H_IN_REPLY_TO:
671                         if (!reference) {
672                                 msginfo->references = g_strdup(hp);
673                                 eliminate_parenthesis(hp, '(', ')');
674                                 if ((p = strrchr(hp, '<')) != NULL &&
675                                     strchr(p + 1, '>') != NULL) {
676                                         extract_parenthesis(p, '<', '>');
677                                         remove_space(p);
678                                         if (*p != '\0')
679                                                 reference = g_strdup(p);
680                                 }
681                         }
682                         break;
683                 case H_CONTENT_TYPE:
684                         if (!g_strncasecmp(hp, "multipart/", 10))
685                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_MULTIPART);
686                         break;
687 #ifdef ALLOW_HEADER_HINT                        
688                 case H_SEEN:
689                         /* mnews Seen header */
690                         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW|MSG_UNREAD);
691                         break;
692 #endif                  
693                 case H_X_FACE:
694                         if (msginfo->xface) break;
695                         msginfo->xface = g_strdup(hp);
696                         break;
697                 case H_DISPOSITION_NOTIFICATION_TO:
698                         if (msginfo->dispositionnotificationto) break;
699                         msginfo->dispositionnotificationto = g_strdup(hp);
700                         break;
701                 case H_RETURN_RECEIPT_TO:
702                         if (msginfo->returnreceiptto) break;
703                         msginfo->returnreceiptto = g_strdup(hp);
704                         break;
705                 case H_SC_PARTIALLY_RETRIEVED:
706                         if (msginfo->partial_recv) break;
707                         msginfo->partial_recv = g_strdup(hp);
708                         break;
709                 case H_SC_ACCOUNT_SERVER:
710                         if (msginfo->account_server) break;
711                         msginfo->account_server = g_strdup(hp);
712                         break;
713                 case H_SC_ACCOUNT_LOGIN:
714                         if (msginfo->account_login) break;
715                         msginfo->account_login = g_strdup(hp);
716                         break;
717                 case H_SC_MESSAGE_SIZE:
718                         if (msginfo->total_size) break;
719                         msginfo->total_size = atoi(hp);
720                         break;
721                 case H_SC_PLANNED_DOWNLOAD:
722                         msginfo->planned_download = atoi(hp);
723                         break;
724 #ifdef ALLOW_HEADER_HINT                        
725                 case H_STATUS:
726                         if (strchr(hp, 'R') != NULL)
727                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
728                         if (strchr(hp, 'O') != NULL)
729                                 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW);
730                         if (strchr(hp, 'U') != NULL)
731                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
732                         break;
733                 case H_X_STATUS:
734                         if (strchr(hp, 'D') != NULL)
735                                 MSG_SET_PERM_FLAGS(msginfo->flags,
736                                               MSG_REALLY_DELETED);
737                         if (strchr(hp, 'F') != NULL)
738                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_MARKED);
739                         if (strchr(hp, 'd') != NULL)
740                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_DELETED);
741                         if (strchr(hp, 'r') != NULL)
742                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
743                         if (strchr(hp, 'f') != NULL)
744                                 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
745                         break;
746 #endif                  
747                 case H_FROM_SPACE:
748                         if (msginfo->fromspace) break;
749                         msginfo->fromspace = g_strdup(hp);
750                         break;
751                 default:
752                         break;
753                 }
754         }
755         msginfo->inreplyto = reference;
756
757         return msginfo;
758 }
759
760 gchar *procheader_get_fromname(const gchar *str)
761 {
762         gchar *tmp, *name;
763
764         Xstrdup_a(tmp, str, return NULL);
765
766         if (*tmp == '\"') {
767                 extract_quote(tmp, '\"');
768                 g_strstrip(tmp);
769         } else if (strchr(tmp, '<')) {
770                 eliminate_parenthesis(tmp, '<', '>');
771                 g_strstrip(tmp);
772                 if (*tmp == '\0') {
773                         strcpy(tmp, str);
774                         extract_parenthesis(tmp, '<', '>');
775                         g_strstrip(tmp);
776                 }
777         } else if (strchr(tmp, '(')) {
778                 extract_parenthesis(tmp, '(', ')');
779                 g_strstrip(tmp);
780         }
781
782         if (*tmp == '\0')
783                 name = g_strdup(str);
784         else
785                 name = g_strdup(tmp);
786
787         return name;
788 }
789
790 static gint procheader_scan_date_string(const gchar *str,
791                                         gchar *weekday, gint *day,
792                                         gchar *month, gint *year,
793                                         gint *hh, gint *mm, gint *ss,
794                                         gchar *zone)
795 {
796         gint result;
797
798         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d %5s",
799                         weekday, day, month, year, hh, mm, ss, zone);
800         if (result == 8) return 0;
801
802         result = sscanf(str, "%3s,%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, "%d %9s %d %2d:%2d:%2d %5s",
807                         day, month, year, hh, mm, ss, zone);
808         if (result == 7) return 0;
809
810         *zone = '\0';
811         result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d",
812                         weekday, day, month, year, hh, mm, ss);
813         if (result == 7) return 0;
814
815         *ss = 0;
816         result = sscanf(str, "%10s %d %9s %d %2d:%2d %5s",
817                         weekday, day, month, year, hh, mm, zone);
818         if (result == 7) return 0;
819
820         result = sscanf(str, "%d %9s %d %2d:%2d %5s",
821                         day, month, year, hh, mm, zone);
822         if (result == 6) return 0;
823
824         return -1;
825 }
826
827 /*
828  * Hiro, most UNIXen support this function:
829  * http://www.mcsr.olemiss.edu/cgi-bin/man-cgi?getdate
830  */
831 gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
832 {
833         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
834         gchar weekday[11];
835         gint day;
836         gchar month[10];
837         gint year;
838         gint hh, mm, ss;
839         GDateMonth dmonth;
840         gchar *p;
841
842         if (!t)
843                 return FALSE;
844         
845         memset(t, 0, sizeof *t);        
846
847         if (procheader_scan_date_string(src, weekday, &day, month, &year,
848                                         &hh, &mm, &ss, zone) < 0) {
849                 g_warning("Invalid date: %s\n", src);
850                 return FALSE;
851         }
852
853         /* Y2K compliant :) */
854         if (year < 100) {
855                 if (year < 70)
856                         year += 2000;
857                 else
858                         year += 1900;
859         }
860
861         month[3] = '\0';
862         if ((p = strstr(monthstr, month)) != NULL)
863                 dmonth = (gint)(p - monthstr) / 3 + 1;
864         else {
865                 g_warning("Invalid month: %s\n", month);
866                 dmonth = G_DATE_BAD_MONTH;
867         }
868
869         t->tm_sec = ss;
870         t->tm_min = mm;
871         t->tm_hour = hh;
872         t->tm_mday = day;
873         t->tm_mon = dmonth - 1;
874         t->tm_year = year - 1900;
875         t->tm_wday = 0;
876         t->tm_yday = 0;
877         t->tm_isdst = -1;
878
879         mktime(t);
880
881         return TRUE;
882 }
883
884 time_t procheader_date_parse(gchar *dest, const gchar *src, gint len)
885 {
886         static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
887         gchar weekday[11];
888         gint day;
889         gchar month[10];
890         gint year;
891         gint hh, mm, ss;
892         gchar zone[6];
893         GDateMonth dmonth = G_DATE_BAD_MONTH;
894         struct tm t;
895         gchar *p;
896         time_t timer;
897         time_t tz_offset;
898
899         if (procheader_scan_date_string(src, weekday, &day, month, &year,
900                                         &hh, &mm, &ss, zone) < 0) {
901                 g_warning("Invalid date: %s\n", src);
902                 if (dest && len > 0)
903                         strncpy2(dest, src, len);
904                 return 0;
905         }
906
907         /* Y2K compliant :) */
908         if (year < 1000) {
909                 if (year < 50)
910                         year += 2000;
911                 else
912                         year += 1900;
913         }
914
915         month[3] = '\0';
916         for (p = monthstr; *p != '\0'; p += 3) {
917                 if (!g_strncasecmp(p, month, 3)) {
918                         dmonth = (gint)(p - monthstr) / 3 + 1;
919                         break;
920                 }
921         }
922         if (*p == '\0')
923                 g_warning("Invalid month: %s\n", month);
924
925         t.tm_sec = ss;
926         t.tm_min = mm;
927         t.tm_hour = hh;
928         t.tm_mday = day;
929         t.tm_mon = dmonth - 1;
930         t.tm_year = year - 1900;
931         t.tm_wday = 0;
932         t.tm_yday = 0;
933         t.tm_isdst = -1;
934
935         timer = mktime(&t);
936         tz_offset = remote_tzoffset_sec(zone);
937         if (tz_offset != -1)
938                 timer += tzoffset_sec(&timer) - tz_offset;
939
940         if (dest)
941                 procheader_date_get_localtime(dest, len, timer);
942
943         return timer;
944 }
945
946 void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
947 {
948         struct tm *lt;
949         gchar *default_format = "%y/%m/%d(%a) %H:%M";
950
951         lt = localtime(&timer);
952
953         if (prefs_common.date_format)
954                 strftime(dest, len, prefs_common.date_format, lt);
955         else
956                 strftime(dest, len, default_format, lt);
957 }
958
959 /* Added by Mel Hadasht on 27 Aug 2001 */
960 /* Get a header from msginfo */
961 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len, gchar *header)
962 {
963         gchar *file;
964         FILE *fp;
965         HeaderEntry hentry[]={ { header, NULL, TRUE  },
966                                { NULL,   NULL, FALSE } };
967         gint val;
968        
969         g_return_val_if_fail(msginfo != NULL, -1);
970         file = procmsg_get_message_file_path(msginfo);
971         if ((fp = fopen(file, "rb")) == NULL) {
972                FILE_OP_ERROR(file, "fopen");
973                g_free(file);
974                return -1;
975         }
976         val = procheader_get_one_field(buf,len, fp, hentry);
977         if (fclose(fp) == EOF) {
978                 FILE_OP_ERROR(file, "fclose");
979                 unlink(file);
980                 g_free(file);
981                 return -1;
982         }
983
984         g_free(file);
985         if (val == -1)
986                 return -1;
987
988         return 0;
989 }