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