70f405e1d7a3d10128a263b782abfc85ea4f19e6
[apps/madmutt.git] / lib-mime / rfc822parse.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
23  *
24  * This file is part of mutt-ng, see http://www.muttng.org/.
25  * It's licensed under the GNU General Public License,
26  * please see the file GPL in the top level source directory.
27  */
28
29 #if HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <stdio.h>
34
35 #include <lib-lib/mem.h>
36 #include <lib-lib/str.h>
37 #include <lib-lib/ascii.h>
38 #include <lib-lib/macros.h>
39 #include <lib-lib/buffer.h>
40 #include <lib-lib/date.h>
41
42 #include "recvattach.h"
43 #include "url.h"
44
45 #include "lib/debug.h"
46
47 #include "mime.h"
48
49 /* Reads an arbitrarily long header field, and looks ahead for continuation
50  * lines.  ``line'' must point to a dynamically allocated string; it is
51  * increased if more space is required to fit the whole line.
52  */
53 ssize_t mutt_read_rfc822_line(FILE *f, char **line, ssize_t *n)
54 {
55     ssize_t pos = 0;
56
57     for (;;) {
58         char *p = *line;
59
60         /* end of file or end of headers */
61         if (!fgets(p + pos, *n - pos, f) || (ISSPACE(*p) && pos == 0)) {
62             *p = '\0';
63             return 0;
64         }
65
66         pos += m_strlen(p + pos);
67         if (p[pos - 1] == '\n') {
68             int c;
69
70             /* remove trailing spaces. safe: p[0] is not a space */
71             do {
72                 p[--pos] = '\0';
73             } while (ISSPACE(p[pos]));
74
75             /* check to see if the next line is a continuation line */
76             c = fgetc(f);
77             if (c != ' ' && c != '\t') {
78                 /* next line is a separate header field or EOH */
79                 ungetc(c, f);
80                 return pos;
81             }
82
83             /* eat tabs and spaces from the beginning of the continuation line */
84             do {
85                 c = fgetc(f);
86             } while (c == ' ' || c == '\t');
87             ungetc(c, f);
88
89             /* string is still terminated because we removed at least one
90                whitespace char above */
91             p[pos++] = ' ';
92         }
93
94         if (*n < pos + STRING) {
95             /* grow the buffer */
96             *n += STRING;
97             p_realloc(line, *n);
98         }
99     }
100 }
101
102 /* TODO: Make that a string list somehow */
103 LIST *mutt_parse_references(char *s, int in_reply_to)
104 {
105     LIST *lst = NULL;
106     int n = 0;
107     char *o = NULL;
108
109     /* some mail clients add other garbage besides message-ids, so do a quick
110      * check to make sure this looks like a valid message-id
111      * some idiotic clients also break their message-ids between lines, deal
112      * with that too (give up if it's more than two lines, though)
113      */
114
115     for (s = strtok(s, " \t;"); s; s = strtok(NULL, " \t;")) {
116         char *new = NULL;
117
118         if (*s == '<') {
119             n = m_strlen(s);
120             if (s[n - 1] != '>') {
121                 o = s;
122                 continue;
123             }
124
125             new = m_strdup(s);
126         } else if (o) {
127             ssize_t m = m_strlen(s);
128
129             if (s[m - 1] != '>') {
130                 o = NULL;
131             } else {
132                 new = p_new(char, n + m + 1);
133                 strcpy(new, o);
134                 strcpy(new + n, s);
135             }
136         }
137
138         /* make sure that this really does look like a message-id.
139          * it should have exactly one @, and if we're looking at
140          * an in-reply-to header, make sure that the part before
141          * the @ has more than eight characters or it's probably
142          * an email address
143          */
144         if (new) {
145             char *at = strchr(new, '@');
146             LIST *tmp;
147
148             if (!at || strchr(at + 1, '@') || (in_reply_to && at - new <= 8)) {
149                 p_delete(&new);
150                 continue;
151             }
152
153             tmp = p_new(LIST, 1);
154             tmp->data = new;
155             tmp->next = lst;
156             lst = tmp;
157         }
158     }
159
160     return lst;
161 }
162
163 int mutt_check_encoding(const char *s)
164 {
165 #define COMPARE(tok, value)                             \
166     if (!ascii_strncasecmp(tok, s, sizeof(tok) - 1)) {  \
167         return value;                                   \
168     }
169     COMPARE("7bit", ENC7BIT);
170     COMPARE("8bit", ENC8BIT);
171     COMPARE("binary", ENCBINARY);
172     COMPARE("quoted-printable", ENCQUOTEDPRINTABLE);
173     COMPARE("base64", ENCBASE64);
174     COMPARE("x-uuencode", ENCUUENCODED);
175 #undef COMPARE
176
177     return ENCOTHER;
178 }
179
180 int mutt_check_mime_type(const char *s)
181 {
182 #define COMPARE(tok, value)                             \
183     if (!ascii_strncasecmp(tok, s, sizeof(tok) - 1)) {  \
184         return value;                                   \
185     }
186   COMPARE("text", TYPETEXT);
187   COMPARE("multipart", TYPEMULTIPART);
188   COMPARE("application", TYPEAPPLICATION);
189   COMPARE("message", TYPEMESSAGE);
190   COMPARE("image", TYPEIMAGE);
191   COMPARE("audio", TYPEAUDIO);
192   COMPARE("video", TYPEVIDEO);
193   COMPARE("model", TYPEMODEL);
194   COMPARE("*",  TYPEANY);
195   COMPARE(".*", TYPEANY);
196 #undef COMPARE
197
198   return TYPEOTHER;
199 }
200
201 static PARAMETER *parse_parameters(const char *s)
202 {
203     PARAMETER *res = NULL;
204     PARAMETER **list = &res;
205
206     while (*s) {
207         const char *p;
208         PARAMETER *new;
209         int i;
210
211         s = skipspaces(s);
212         if (*s == '=')             /* parameters are fucked up, go away */
213             break;
214
215         p = strpbrk(s, "=;");
216         if (!p)
217             break;
218
219         if (*p == ';') {
220             /* if we hit a ; now the parameter has no value, just skip it */
221             s = p + 1;
222             continue;
223         }
224
225         i = p - s;
226         new = parameter_new();
227         new->attribute = p_dupstr(s, i);
228
229         while (--i >= 0 && ISSPACE(new->attribute[i])) {
230             new->attribute[i] = '\0';
231         }
232         s = skipspaces(p + 1);                      /* skip over the = */
233
234         if (*s == '"') {
235             char buffer[LONG_STRING];
236             int state_ascii = 1;
237
238             s++;
239             for (i = 0; *s && i < ssizeof(buffer) - 1; i++, s++) {
240                 if (!option(OPTSTRICTMIME)) {
241                     /* As iso-2022-* has a characer of '"' with non-ascii state,
242                      * ignore it. */
243                     if (*s == 0x1b && i < ssizeof(buffer) - 2) {
244                         state_ascii = s[1] == '(' && (s[2] == 'B' || s[2] == 'J');
245                     }
246                 }
247                 if (state_ascii && *s == '"')
248                     break;
249
250                 if (*s == '\\') {
251                     buffer[i] = *++s;
252                 } else {
253                     buffer[i] = *s;
254                 }
255             }
256
257             new->value = p_dupstr(buffer, i);
258         } else {
259             for (p = s; *p && *p != ' ' && *p != ';'; p++);
260             new->value = p_dupstr(s, p - s);
261         }
262
263         *list = new;
264         list = &new->next;
265
266         s = strchr(s, ';');           /* Find the next parameter */
267         if (!s)
268             break;                    /* no more parameters */
269     }
270
271     rfc2231_decode_parameters(&res);
272     return res;
273 }
274
275 void mutt_parse_content_type(char *s, BODY *ct)
276 {
277     char *pc;
278     char *subtype;
279
280     p_delete(&ct->subtype);
281     parameter_delete(&ct->parameter);
282
283     /* First extract any existing parameters */
284     if ((pc = strchr(s, ';')) != NULL) {
285         *pc++ = '\0';
286         ct->parameter = parse_parameters(vskipspaces(pc));
287
288         /* Some pre-RFC1521 gateways still use the "name=filename" convention,
289          * but if a filename has already been set in the content-disposition,
290          * let that take precedence, and don't set it here */
291         pc = mutt_get_parameter("name", ct->parameter);
292         if (pc && !ct->filename)
293             ct->filename = m_strdup(pc);
294     }
295
296     /* Now get the subtype */
297     if ((subtype = strchr (s, '/'))) {
298         *subtype++ = '\0';
299         for (pc = subtype; *pc && !ISSPACE(*pc) && *pc != ';'; pc++);
300         ct->subtype = p_dupstr(subtype, pc - subtype);
301     }
302
303     /* Finally, get the major type */
304     ct->type = mutt_check_mime_type(s);
305
306     if (ct->type == TYPEOTHER) {
307         ct->xtype = m_strdup(s);
308     }
309
310     if (!ct->subtype) {
311         /* Some older non-MIME mailers (i.e., mailtool, elm) have a content-type
312          * field, so we can attempt to convert the type to BODY here.
313          */
314         switch (ct->type) {
315             char buffer[SHORT_STRING];
316
317           case TYPETEXT:
318             ct->subtype = m_strdup("plain");
319             break;
320
321           case TYPEAUDIO:
322             ct->subtype = m_strdup("basic");
323             break;
324
325           case TYPEMESSAGE:
326             ct->subtype = m_strdup("rfc822");
327             break;
328
329           case TYPEOTHER:
330             ct->type = TYPEAPPLICATION;
331             snprintf(buffer, sizeof(buffer), "x-%s", s);
332             ct->subtype = m_strdup(buffer);
333             break;
334
335           default:
336             ct->subtype = m_strdup("x-unknown");
337             break;
338         }
339     }
340
341     /* Default character set for text types. */
342     if (ct->type == TYPETEXT) {
343         pc = mutt_get_parameter("charset", ct->parameter);
344         if (!pc) {
345             mutt_set_parameter("charset",
346                                option(OPTSTRICTMIME) ? "us-ascii" :
347                                mutt_get_first_charset(AssumedCharset),
348                                &ct->parameter);
349         }
350     }
351 }
352
353 static void parse_content_disposition(char *s, BODY *ct)
354 {
355     if (!ascii_strncasecmp(s, "inline", 6)) {
356         ct->disposition = DISPINLINE;
357     } else if (!ascii_strncasecmp(s, "form-data", 9)) {
358         ct->disposition = DISPFORMDATA;
359     } else {
360         ct->disposition = DISPATTACH;
361     }
362
363     /* Check to see if a default filename was given */
364     if ((s = strchr (s, ';'))) {
365         PARAMETER *parms = parse_parameters(vskipspaces(s));
366
367         if ((s = mutt_get_parameter("filename", parms)))
368             m_strreplace(&ct->filename, s);
369         if ((s = mutt_get_parameter ("name", parms)))
370             ct->form_name = m_strdup(s);
371
372         parameter_delete(&parms);
373     }
374 }
375
376 /* args:
377  *      fp      stream to read from
378  *
379  *      digest  1 if reading subparts of a multipart/digest, 0
380  *              otherwise
381  */
382 BODY *mutt_read_mime_header(FILE *fp, int digest)
383 {
384     BODY *body = mutt_new_body ();
385     char *line = p_new(char, LONG_STRING);
386     ssize_t linelen = LONG_STRING;
387     char *p;
388
389     body->hdr_offset  = ftello(fp);
390     body->encoding    = ENC7BIT;    /* default from RFC1521 */
391     body->disposition = DISPINLINE;
392     body->type        = digest ? TYPEMESSAGE : TYPETEXT;
393
394     while (mutt_read_rfc822_line(fp, &line, &linelen)) {
395         /* Find the value of the current header */
396         if ((p = strchr(line, ':'))) {
397             *p++ = '\0';
398             p = vskipspaces(p);
399             if (!*p)
400                 continue;
401         } else {
402             debug_print (1, ("bogus MIME header: %s\n", line));
403             break;
404         }
405
406         if (!ascii_strncasecmp(line, "content-", 8)) {
407             if (!ascii_strcasecmp("type", line + 8))
408                 mutt_parse_content_type (p, body);
409             else if (!ascii_strcasecmp ("transfer-encoding", line + 8))
410                 body->encoding = mutt_check_encoding (p);
411             else if (!ascii_strcasecmp ("disposition", line + 8))
412                 parse_content_disposition(p, body);
413             else if (!ascii_strcasecmp ("description", line + 8)) {
414                 m_strreplace(&body->description, p);
415                 rfc2047_decode(&body->description);
416             }
417         }
418     }
419
420     body->offset = ftello(fp);       /* Mark the start of the real data */
421     if (!body->subtype) {
422         if (body->type == TYPETEXT)
423             body->subtype = m_strdup("plain");
424         if (body->type == TYPEMESSAGE)
425             body->subtype = m_strdup("rfc822");
426     }
427
428     p_delete(&line);
429     return (body);
430 }
431
432 void mutt_parse_part(FILE *fp, BODY *b)
433 {
434     char *bound = 0;
435
436     switch (b->type) {
437       case TYPEMULTIPART:
438         bound = mutt_get_parameter("boundary", b->parameter);
439         fseeko(fp, b->offset, SEEK_SET);
440         b->parts = mutt_parse_multipart(fp, bound, b->offset + b->length,
441                            !ascii_strcasecmp("digest", b->subtype));
442         break;
443
444       case TYPEMESSAGE:
445         if (b->subtype) {
446             fseeko(fp, b->offset, SEEK_SET);
447
448             if (mutt_is_message_type(b->type, b->subtype)) {
449                 b->parts = mutt_parse_messageRFC822(fp, b);
450             } else
451             if (!ascii_strcasecmp(b->subtype, "external-body") == 0) {
452                 b->parts = mutt_read_mime_header(fp, 0);
453             } else {
454                 return;
455             }
456         }
457         break;
458
459       default:
460         return;
461     }
462
463     /* try to recover from parsing error */
464     if (!b->parts) {
465         b->type = TYPETEXT;
466         m_strreplace(&b->subtype, "plain");
467     }
468 }
469
470 /* parse a MESSAGE/RFC822 body
471  *
472  * args:
473  *      fp              stream to read from
474  *
475  *      parent          structure which contains info about the message/rfc822
476  *                      body part
477  *
478  * NOTE: this assumes that `parent->length' has been set!
479  */
480 BODY *mutt_parse_messageRFC822(FILE * fp, BODY * parent)
481 {
482     BODY *msg;
483
484     parent->hdr = header_new();
485     parent->hdr->offset = ftello(fp);
486     parent->hdr->env    = mutt_read_rfc822_header(fp, parent->hdr, 0, 0);
487
488     msg = parent->hdr->content;
489
490     /* ignore the length given in the content-length since it could be wrong
491        and we already have the info to calculate the correct length */
492     /* if (msg->length == -1) */
493     /* if body of this message is empty, we can end up with a negative length */
494     msg->length = MAX(0, parent->length - (msg->offset - parent->offset));
495
496     mutt_parse_part(fp, msg);
497
498     return msg;
499 }
500
501 /* parse a multipart structure
502  *
503  * args:
504  *      fp              stream to read from
505  *
506  *      bound           body separator
507  *
508  *      end_off         length of the multipart body (used when the final
509  *                      boundary is missing to avoid reading too far)
510  *
511  *      digest          1 if reading a multipart/digest, 0 otherwise
512  */
513
514 BODY *
515 mutt_parse_multipart(FILE *fp, const char *bound, off_t end_off, int digest)
516 {
517     char buffer[LONG_STRING];
518     BODY *head = NULL;
519     BODY **last = &head;
520     int blen = m_strlen(bound);
521     int final = 0;                /* did we see the ending boundary? */
522
523     if (!blen) {
524         mutt_error _("multipart message has no boundary parameter!");
525         return NULL;
526     }
527
528     while (ftello(fp) < end_off && fgets(buffer, sizeof(buffer), fp)) {
529         int len, crlf, i;
530
531         len  = m_strlen(buffer);
532         crlf = len > 1 && buffer[len - 2] == '\r';
533
534         if (buffer[0] == '-' && buffer[1] == '-'
535         && !m_strncmp(buffer + 2, bound, blen))
536         {
537             if (*last) {
538                 BODY *b = *last;
539
540                 /* if the body is empty, we can end up with a -1 length */
541                 b->length = MAX(0, ftello(fp) - b->offset - len - 1 - crlf);
542                 if (b->parts && b->parts->length == 0) {
543                     b->parts->length = ftello(fp) - b->parts->offset
544                                      - len - 1 - crlf;
545                 }
546             }
547
548             /* Remove any trailing whitespace, up to the length of the boundary */
549             for (i = len - 1; ISSPACE(buffer[i]) && i >= blen + 2; i--)
550                 buffer[i] = '\0';
551
552             /* Check for the end boundary */
553             final = buffer[blen + 3] == '-' && buffer[blen + 4] == '-';
554             if (final)
555                 break;
556
557             if (buffer[2 + blen] == '\0') {
558                 BODY *new = mutt_read_mime_header(fp, digest);
559
560                 /*
561                  * Consistency checking - catch
562                  * bad attachment end boundaries
563                  */
564
565                 if (new->offset > end_off) {
566                     mutt_free_body(&new);
567                     break;
568                 }
569
570                 if (*last)
571                     last = &(*last)->next;
572                 *last = new;
573             }
574         }
575     }
576
577     /* in case of missing end boundary, set the length to something reasonable */
578     if (*last && (*last)->length == 0 && !final)
579         (*last)->length = end_off - (*last)->offset;
580
581     /* parse recursive MIME parts */
582     {
583         BODY *b;
584         for (b = head; b; b = b->next)
585             mutt_parse_part(fp, b);
586     }
587
588     return (head);
589 }
590
591 static const char *
592 uncomment_timezone(char *buf, size_t buflen, const char *tz)
593 {
594     char *p;
595
596     if (*tz != '(')
597         return tz;                  /* no need to do anything */
598
599     tz = vskipspaces(tz + 1);
600     p = strpbrk(tz, " )");
601     if (!p)
602         return tz;
603
604     m_strncpy(buf, buflen, tz, p - tz);
605     return buf;
606 }
607
608 static struct tz_t {
609     char tzname[5];
610     unsigned char zhours;
611     unsigned char zminutes;
612     unsigned char zoccident;      /* west of UTC? */
613 } TimeZones[] = {
614     {"aat", 1, 0, 1},             /* Atlantic Africa Time */
615     {"adt", 4, 0, 0},             /* Arabia DST */
616     {"ast", 3, 0, 0},             /* Arabia */
617     /*{ "ast",   4,  0, 1 }, *//* Atlantic */
618     {"bst", 1, 0, 0},             /* British DST */
619     {"cat", 1, 0, 0},             /* Central Africa */
620     {"cdt", 5, 0, 1},
621     {"cest", 2, 0, 0},            /* Central Europe DST */
622     {"cet", 1, 0, 0},             /* Central Europe */
623     {"cst", 6, 0, 1},
624     /*{ "cst",   8,  0, 0 }, *//* China */
625     /*{ "cst",   9, 30, 0 }, *//* Australian Central Standard Time */
626     {"eat", 3, 0, 0},             /* East Africa */
627     {"edt", 4, 0, 1},
628     {"eest", 3, 0, 0},            /* Eastern Europe DST */
629     {"eet", 2, 0, 0},             /* Eastern Europe */
630     {"egst", 0, 0, 0},            /* Eastern Greenland DST */
631     {"egt", 1, 0, 1},             /* Eastern Greenland */
632     {"est", 5, 0, 1},
633     {"gmt", 0, 0, 0},
634     {"gst", 4, 0, 0},             /* Presian Gulf */
635     {"hkt", 8, 0, 0},             /* Hong Kong */
636     {"ict", 7, 0, 0},             /* Indochina */
637     {"idt", 3, 0, 0},             /* Israel DST */
638     {"ist", 2, 0, 0},             /* Israel */
639     /*{ "ist",   5, 30, 0 }, *//* India */
640     {"jst", 9, 0, 0},             /* Japan */
641     {"kst", 9, 0, 0},             /* Korea */
642     {"mdt", 6, 0, 1},
643     {"met", 1, 0, 0},             /* this is now officially CET */
644     {"msd", 4, 0, 0},             /* Moscow DST */
645     {"msk", 3, 0, 0},             /* Moscow */
646     {"mst", 7, 0, 1},
647     {"nzdt", 13, 0, 0},           /* New Zealand DST */
648     {"nzst", 12, 0, 0},           /* New Zealand */
649     {"pdt", 7, 0, 1},
650     {"pst", 8, 0, 1},
651     {"sat", 2, 0, 0},             /* South Africa */
652     {"smt", 4, 0, 0},             /* Seychelles */
653     {"sst", 11, 0, 1},            /* Samoa */
654     /*{ "sst",   8,  0, 0 }, *//* Singapore */
655     {"utc", 0, 0, 0},
656     {"wat", 0, 0, 0},             /* West Africa */
657     {"west", 1, 0, 0},            /* Western Europe DST */
658     {"wet", 0, 0, 0},             /* Western Europe */
659     {"wgst", 2, 0, 1},            /* Western Greenland DST */
660     {"wgt", 3, 0, 1},             /* Western Greenland */
661     {"wst", 8, 0, 0},             /* Western Australia */
662 };
663
664 /* parses a date string in RFC822 format:
665  *
666  * Date: [ weekday , ] day-of-month month year hour:minute:second timezone
667  *
668  * This routine assumes that `h' has been initialized to 0.  the `timezone'
669  * field is optional, defaulting to +0000 if missing.
670  */
671 time_t mutt_parse_date(const char *s, HEADER *h)
672 {
673     int zhours = 0, zminutes = 0, zoccident = 0;
674     char scratch[SHORT_STRING];
675     struct tm tm;
676     int count = 0;
677     char *p;
678
679     /* Don't modify our argument. Fixed-size buffer is ok here since
680        the date format imposes a natural limit.  */
681
682     m_strcpy(scratch, sizeof(scratch), s);
683
684     /* kill the day of the week, if it exists. */
685     p = strchr(scratch, ',');
686     p = vskipspaces(p ? p + 1 : scratch);
687
688     p_clear(&tm, 1);
689
690     while ((p = strtok (p, " \t")) != NULL) {
691         char tzstr[SHORT_STRING];
692         const char *ptz;
693
694         switch (count) {
695           case 0:                    /* day of the month */
696             if (!isdigit((unsigned char)*p))
697                 return -1;
698             tm.tm_mday = atoi(p);
699             if (tm.tm_mday > 31)
700                 return -1;
701             break;
702
703           case 1:                    /* month of the year */
704             tm.tm_mon = mutt_check_month(p);
705             if (tm.tm_mon < 0)
706                 return -1;
707             break;
708
709           case 2:                    /* year */
710             tm.tm_year = atoi(p);
711             if (tm.tm_year < 50)
712                 tm.tm_year += 100;
713             else if (tm.tm_year >= 1900)
714                 tm.tm_year -= 1900;
715             break;
716
717           case 3:                    /* time of day */
718             tm.tm_hour = strtol(p, &p, 10);
719             if (*p++ != ':')
720                 return -1;
721             tm.tm_min  = strtol(p, &p, 10);
722             if (*p++ == ':') {
723                 tm.tm_sec = strtol(p, &p, 10);
724             } else {
725                 tm.tm_sec = 0;
726             }
727             break;
728
729           case 4:                    /* timezone */
730             /* sometimes we see things like (MST) or (-0700) so attempt to
731              * compensate by uncommenting the string if non-RFC822 compliant
732              */
733             ptz = uncomment_timezone(tzstr, sizeof(tzstr), p);
734
735             if (*ptz == '+' || *ptz == '-') {
736                 if (isdigit((unsigned char)ptz[1])
737                 &&  isdigit((unsigned char)ptz[2])
738                 &&  isdigit((unsigned char)ptz[3])
739                 &&  isdigit((unsigned char)ptz[4]))
740                 {
741                     zoccident = ptz[0] == '-';
742                     zhours    = (ptz[1] - '0') * 10 + (ptz[2] - '0');
743                     zminutes  = (ptz[3] - '0') * 10 + (ptz[4] - '0');
744                 }
745             } else {
746                 struct tz_t *tz;
747
748                 /* This is safe to do: A pointer to a struct equals a pointer to its
749                  * first element*/
750                 tz = bsearch(ptz, TimeZones, countof(TimeZones), sizeof(TimeZones[0]),
751                              (int (*)(const void *, const void *))ascii_strcasecmp);
752
753                 if (tz) {
754                     zhours = tz->zhours;
755                     zminutes = tz->zminutes;
756                     zoccident = tz->zoccident;
757                 }
758
759                 /* ad hoc support for the European MET (now officially CET) TZ */
760                 if (ascii_strcasecmp(p, "MET") == 0) {
761                     if ((p = strtok (NULL, " \t")) && !ascii_strcasecmp(p, "DST")) {
762                         zhours++;
763                     }
764                 }
765             }
766             break;
767         }
768         count++;
769         p = NULL;
770     }
771
772     if (count < 4) {  /* don't check for missing timezone */
773         debug_print (1, ("error parsing date format, using received time\n"));
774         return -1;
775     }
776
777     if (h) {
778         h->zhours    = zhours;
779         h->zminutes  = zminutes;
780         h->zoccident = zoccident;
781     }
782
783     return mutt_mktime(&tm, 0) + (zoccident ? 1 : -1) * (zhours * 3600 + zminutes * 60);
784 }
785
786 #include "rfc822hdrs.h"
787
788 LIST **mutt_parse_rfc822_line(ENVELOPE *e, HEADER *hdr, char *line, char *p,
789                               short weed, short do_2047, LIST **user_hdrs)
790 {
791     switch (rfc822_well_known(line)) {
792       case HDR_APPARENTLY_FROM:
793         e->from = rfc822_parse_adrlist (e->from, p);
794         break;
795
796       case HDR_APPARENTLY_TO:
797         e->to = rfc822_parse_adrlist (e->to, p);
798         break;
799
800       case HDR_BCC:
801         e->bcc = rfc822_parse_adrlist (e->bcc, p);
802         break;
803
804       case HDR_CC:
805         e->cc = rfc822_parse_adrlist (e->cc, p);
806         break;
807
808       case HDR_CONTENT_DESCRIPTION:
809         if (hdr) {
810             m_strreplace(&hdr->content->description, p);
811             rfc2047_decode(&hdr->content->description);
812         }
813         break;
814
815       case HDR_CONTENT_DISPOSITION:
816         if (hdr)
817             parse_content_disposition(p, hdr->content);
818         break;
819
820       case HDR_CONTENT_LENGTH:
821         if (hdr) {
822             if ((hdr->content->length = atoi(p)) < 0)
823                 hdr->content->length = -1;
824         }
825         break;
826
827       case HDR_CONTENT_TRANSFER_ENCODING:
828         if (hdr)
829             hdr->content->encoding = mutt_check_encoding(p);
830         break;
831
832       case HDR_CONTENT_TYPE:
833         if (hdr)
834             mutt_parse_content_type (p, hdr->content);
835         break;
836
837       case HDR_DATE:
838         m_strreplace(&e->date, p);
839         if (hdr)
840             hdr->date_sent = mutt_parse_date (p, hdr);
841         break;
842
843       case HDR_EXPIRES:
844         if (hdr && mutt_parse_date (p, NULL) < time (NULL))
845             hdr->expired = 1;
846         break;
847
848 #ifdef USE_NNTP
849       case HDR_FOLLOWUP_TO:
850         if (!e->followup_to) {
851             m_strrtrim(p);
852             e->followup_to = m_strdup(skipspaces(p));
853         }
854         break;
855 #endif
856
857       case HDR_FROM:
858         e->from = rfc822_parse_adrlist(e->from, p);
859         /* don't leave from info NULL if there's an invalid address (or
860          * whatever) in From: field; mutt would just display it as empty
861          * and mark mail/(esp.) news article as your own. aaargh! this
862          * bothered me for _years_ */
863         if (!e->from) {
864             e->from = address_new();
865             e->from->personal = m_strdup(p);
866         }
867         break;
868
869       case HDR_IN_REPLY_TO:
870         mutt_free_list(&e->in_reply_to);
871         e->in_reply_to = mutt_parse_references(p, 1);
872         break;
873
874       case HDR_LINES:
875         if (hdr) {
876             /* HACK - mutt has, for a very short time, produced negative
877                Lines header values.  Ignore them. */
878             hdr->lines = MAX(0, atoi(p));
879         }
880         break;
881
882       case HDR_LIST_POST:
883         /* RFC 2369.  FIXME: We should ignore whitespace, but don't. */
884         if (strncmp(p, "NO", 2)) {
885             char *beg, *end;
886
887             for (beg = strchr (p, '<'); beg; beg = strchr (end, ',')) {
888                 ++beg;
889                 if (!(end = strchr (beg, '>')))
890                     break;
891
892                 /* Take the first mailto URL */
893                 if (url_check_scheme (beg) == U_MAILTO) {
894                     p_delete(&e->list_post);
895                     e->list_post = p_dupstr(beg, end - beg);
896                     break;
897                 }
898             }
899         }
900         break;
901
902       case HDR_MAIL_FOLLOWUP_TO:
903         e->mail_followup_to = rfc822_parse_adrlist(e->mail_followup_to, p);
904         break;
905
906       case HDR_MAIL_REPLY_TO:
907         address_delete (&e->reply_to);
908         e->reply_to = rfc822_parse_adrlist(e->reply_to, p);
909         break;
910
911       case HDR_MESSAGE_ID:
912         {
913             const char *beg, *end;
914
915             /* We add a new "Message-ID:" when building a message */
916             p_delete(&e->message_id);
917
918             if ((beg = strchr(p, '<')) && (end = strchr(beg, '>')))
919                 e->message_id = p_dupstr(beg, (end - beg) + 1);
920         }
921         break;
922
923       case HDR_MIME_VERSION:
924         if (hdr)
925             hdr->mime = 1;
926         break;
927
928 #ifdef USE_NNTP
929       case HDR_NEWSGROUPS:
930         p_delete(&e->newsgroups);
931         m_strrtrim(p);
932         e->newsgroups = m_strdup(skipspaces(p));
933         break;
934 #endif
935
936       case HDR_ORGANIZATION:
937         if (!e->organization && m_strcasecmp(p, "unknown"))
938             e->organization = m_strdup(p);
939         break;
940
941       case HDR_RECEIVED:
942         if (hdr && !hdr->received) {
943             char *d = strchr(p, ';');
944             if (d)
945                 hdr->received = mutt_parse_date(d + 1, NULL);
946         }
947         break;
948
949       case HDR_REFERENCES:
950         mutt_free_list(&e->references);
951         e->references = mutt_parse_references(p, 0);
952         break;
953
954       case HDR_REPLY_TO:
955         e->reply_to = rfc822_parse_adrlist(e->reply_to, p);
956         break;
957
958       case HDR_RETURN_PATH:
959         e->return_path = rfc822_parse_adrlist(e->return_path, p);
960         break;
961
962       case HDR_SENDER:
963         e->sender = rfc822_parse_adrlist (e->sender, p);
964         break;
965
966       case HDR_STATUS:
967         if (hdr) {
968             while (*p) {
969                 switch (*p) {
970                   case 'r':
971                     hdr->replied = 1;
972                     break;
973                   case 'O':
974                     hdr->old = 1;
975                     break;
976                   case 'R':
977                     hdr->read = 1;
978                     break;
979                 }
980                 p++;
981             }
982         }
983         break;
984
985       case HDR_SUBJECT:
986         if (!e->subject)
987             e->subject = m_strdup(p);
988         break;
989
990       case HDR_SUPERCEDES:
991       case HDR_SUPERSEDES:
992         if (hdr)
993             e->supersedes = m_strdup(p);
994         break;
995
996       case HDR_TO:
997         e->to = rfc822_parse_adrlist(e->to, p);
998         break;
999
1000 #ifdef USE_NNTP
1001       case HDR_X_COMMENT_TO:
1002         if (!e->x_comment_to)
1003             e->x_comment_to = m_strdup(p);
1004         break;
1005 #endif
1006
1007       case HDR_X_LABEL:
1008         e->x_label = m_strdup(p);
1009         break;
1010
1011 #ifdef USE_NNTP
1012       case HDR_XREF:
1013         if (!e->xref)
1014             e->xref = m_strdup(p);
1015         break;
1016 #endif
1017
1018       case HDR_X_STATUS:
1019         if (hdr) {
1020             while (*p) {
1021                 switch (*p) {
1022                   case 'A':
1023                     hdr->replied = 1;
1024                     break;
1025                   case 'D':
1026                     hdr->deleted = 1;
1027                     break;
1028                   case 'F':
1029                     hdr->flagged = 1;
1030                     break;
1031                   default:
1032                     break;
1033                 }
1034                 p++;
1035             }
1036         }
1037         break;
1038
1039       default:
1040         if (!user_hdrs)
1041             break;
1042
1043         /* restore the original line */
1044         line[m_strlen(line)] = ':';
1045
1046         if (weed && option(OPTWEED) && mutt_matches_ignore(line, Ignore)
1047         && !mutt_matches_ignore(line, UnIgnore)) {
1048             break;
1049         }
1050
1051         *user_hdrs = mutt_new_list();
1052         (*user_hdrs)->data = m_strdup(line);
1053         if (do_2047)
1054             rfc2047_decode(&(*user_hdrs)->data);
1055         (*user_hdrs)->next = mutt_new_list();
1056         return &(*user_hdrs)->next;
1057     }
1058
1059     return user_hdrs;
1060 }
1061
1062 /* mutt_read_rfc822_header() -- parses a RFC822 header
1063  *
1064  * Args:
1065  *
1066  * f            stream to read from
1067  *
1068  * hdr          header structure of current message (optional).
1069  *
1070  * user_hdrs    If set, store user headers.  Used for recall-message and
1071  *              postpone modes.
1072  *
1073  * weed         If this parameter is set and the user has activated the
1074  *              $weed option, honor the header weed list for user headers.
1075  *              Used for recall-message.
1076  *
1077  * Returns:     newly allocated envelope structure.  You should free it by
1078  *              envelope_delete() when envelope stay unneeded.
1079  */
1080 ENVELOPE *
1081 mutt_read_rfc822_header(FILE *f, HEADER *hdr, short user_hdrs, short weed)
1082 {
1083     ENVELOPE *e = envelope_new();
1084     LIST **last = user_hdrs ? &e->userhdrs : NULL;
1085
1086     char *line = p_new(char, LONG_STRING);
1087     ssize_t linelen = LONG_STRING;
1088     off_t loc;
1089
1090     if (hdr && !hdr->content) {
1091         hdr->content = mutt_new_body ();
1092
1093         /* set the defaults from RFC1521 */
1094         hdr->content->type     = TYPETEXT;
1095         hdr->content->subtype  = m_strdup("plain");
1096         hdr->content->encoding = ENC7BIT;
1097         hdr->content->length   = -1;
1098
1099         /* RFC 2183 says this is arbitrary */
1100         hdr->content->disposition = DISPINLINE;
1101     }
1102
1103     while ((loc = ftello(f)),
1104            mutt_read_rfc822_line(f, &line, &linelen))
1105     {
1106         char buf[LONG_STRING + 1] = "";
1107         char *p;
1108
1109         p = strpbrk(line, ": \t");
1110         if (!p || *p != ':') {
1111             char return_path[LONG_STRING];
1112             time_t t;
1113
1114             /* some bogus MTAs will quote the original "From " line */
1115             if (!m_strncmp(">From ", line, 6))
1116                 continue;               /* just ignore */
1117
1118             if (is_from(line, return_path, sizeof(return_path), &t)) {
1119                 /* MH somtimes has the From_ line in the middle of the header! */
1120                 if (hdr && !hdr->received)
1121                     hdr->received = t - mutt_local_tz(t);
1122                 continue;
1123             }
1124
1125             fseeko(f, loc, 0);
1126             break;                    /* end of header */
1127         }
1128
1129         if (mutt_match_spam_list(line, SpamList, buf, sizeof(buf))) {
1130             if (!rx_list_match(NoSpamList, line)) {
1131                 /* if spam tag already exists, figure out how to amend it */
1132                 if (e->spam && *buf) {
1133                     if (SpamSep) {
1134                         /* If SpamSep defined, append with separator */
1135                         mutt_buffer_addstr(e->spam, SpamSep);
1136                         mutt_buffer_addstr(e->spam, buf);
1137                     } else {
1138                         /* else overwrite */
1139                         mutt_buffer_reset(e->spam);
1140                         mutt_buffer_addstr(e->spam, buf);
1141                     }
1142                 }
1143                 else if (!e->spam && *buf) {
1144                     /* spam tag is new, and match expr is non-empty; copy */
1145                     e->spam = mutt_buffer_from(NULL, buf);
1146                 }
1147                 else if (!e->spam) {
1148                     /* match expr is empty; plug in null string if no existing tag */
1149                     e->spam = mutt_buffer_from(NULL, "");
1150                 }
1151             }
1152         }
1153
1154         *p++ = '\0';
1155         p = vskipspaces(p);
1156         if (!*p)
1157             continue;                 /* skip empty header fields */
1158
1159         last = mutt_parse_rfc822_line(e, hdr, line, p, weed, 1, last);
1160     }
1161
1162     p_delete(&line);
1163
1164     if (hdr) {
1165         hdr->content->hdr_offset = hdr->offset;
1166         hdr->content->offset     = ftello(f);
1167         rfc2047_decode_envelope(e);
1168         /* check for missing or invalid date */
1169         if (hdr->date_sent <= 0) {
1170             debug_print(1, ("no date found, using received "
1171                             "time from msg separator\n"));
1172             hdr->date_sent = hdr->received;
1173         }
1174     }
1175
1176     return e;
1177 }
1178
1179 /* Compares mime types to the ok and except lists */
1180 static int count_body_parts_check(LIST **checklist, BODY *b)
1181 {
1182     LIST *type;
1183
1184     for (type = *checklist; type; type = type->next) {
1185         ATTACH_MATCH *a = (ATTACH_MATCH *)type->data;
1186
1187         if ((a->major_int == TYPEANY || a->major_int == b->type)
1188         &&  !regexec(&a->minor_rx, b->subtype, 0, NULL, 0)) {
1189             return 1;
1190         }
1191     }
1192
1193     return 0;
1194 }
1195
1196 /* -------------------- XXX: MC READ MARK ------------- */
1197
1198 #define AT_COUNT(why) { shallcount = 1; }
1199 #define AT_NOCOUNT(why) { shallcount = 0; }
1200
1201 int count_body_parts (BODY *body, int flags) {
1202   int count = 0;
1203   int shallcount, shallrecurse;
1204   BODY *bp;
1205
1206   if (body == NULL)
1207     return 0;
1208
1209   for (bp = body; bp != NULL; bp = bp->next) {
1210     /* Initial disposition is to count and not to recurse this part. */
1211     AT_COUNT("default");
1212     shallrecurse = 0;
1213
1214     debug_print(5, ("bp: desc=\"%s\"; fn=\"%s\", type=\"%d/%s\"\n",
1215                bp->description ? bp->description : ("none"),
1216                bp->filename ? bp->filename :
1217                bp->d_filename ? bp->d_filename : "(none)",
1218                bp->type, bp->subtype ? bp->subtype : "*"));
1219
1220     if (bp->type == TYPEMESSAGE) {
1221       shallrecurse = 1;
1222
1223       /* If it's an external body pointer, don't recurse it. */
1224       if (!ascii_strcasecmp (bp->subtype, "external-body"))
1225         shallrecurse = 0;
1226
1227       /* Don't count containers if they're top-level. */
1228       if (flags & M_PARTS_TOPLEVEL)
1229         AT_NOCOUNT("top-level message/*");
1230     } else if (bp->type == TYPEMULTIPART) {
1231       /* Always recurse multiparts, except multipart/alternative. */
1232       shallrecurse = 1;
1233       if (!m_strcasecmp(bp->subtype, "alternative"))
1234         shallrecurse = 0;
1235
1236       /* Don't count containers if they're top-level. */
1237       if (flags & M_PARTS_TOPLEVEL)
1238         AT_NOCOUNT("top-level multipart");
1239     }
1240
1241     if (bp->disposition == DISPINLINE &&
1242         bp->type != TYPEMULTIPART && bp->type != TYPEMESSAGE && bp == body)
1243       AT_NOCOUNT("ignore fundamental inlines");
1244
1245     /* If this body isn't scheduled for enumeration already, don't bother
1246      * profiling it further. */
1247
1248     if (shallcount) {
1249       /* Turn off shallcount if message type is not in ok list,
1250        * or if it is in except list. Check is done separately for
1251        * inlines vs. attachments.
1252        */
1253
1254       if (bp->disposition == DISPATTACH) {
1255         if (!count_body_parts_check(&AttachAllow, bp))
1256           AT_NOCOUNT("attach not allowed");
1257         if (count_body_parts_check(&AttachExclude, bp))
1258           AT_NOCOUNT("attach excluded");
1259       } else {
1260         if (!count_body_parts_check(&InlineAllow, bp))
1261           AT_NOCOUNT("inline not allowed");
1262         if (count_body_parts_check(&InlineExclude, bp))
1263           AT_NOCOUNT("excluded");
1264       }
1265     }
1266
1267     if (shallcount)
1268       count++;
1269     bp->attach_qualifies = shallcount ? 1 : 0;
1270
1271     debug_print(5, ("cbp: %p shallcount = %d\n", bp, shallcount));
1272
1273     if (shallrecurse) {
1274       debug_print(5, ("cbp: %p pre count = %d\n", bp, count));
1275       bp->attach_count = count_body_parts(bp->parts, flags & ~M_PARTS_TOPLEVEL);
1276       count += bp->attach_count;
1277       debug_print(5, ("cbp: %p post count = %d\n", bp, count));
1278     }
1279   }
1280
1281   debug_print(5, ("bp: return %d\n", count < 0 ? 0 : count));
1282   return count < 0 ? 0 : count;
1283 }
1284
1285 int mutt_count_body_parts (HEADER *hdr, int flags) {
1286   if (!option (OPTCOUNTATTACH))
1287     return (0);
1288   if (hdr->attach_valid && !(flags & M_PARTS_RECOUNT))
1289     return hdr->attach_total;
1290
1291   if (AttachAllow || AttachExclude || InlineAllow || InlineExclude)
1292     hdr->attach_total = count_body_parts(hdr->content, flags | M_PARTS_TOPLEVEL);
1293   else
1294     hdr->attach_total = 0;
1295
1296   hdr->attach_valid = 1;
1297   return hdr->attach_total;
1298 }