Also support missing seconds.
[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 #include <lib-lib/lib-lib.h>
30
31 #include "recvattach.h"
32 #include "charset.h"
33 #include "mime.h"
34
35 /* Reads an arbitrarily long header field, and looks ahead for continuation
36  * lines.  ``line'' must point to a dynamically allocated string; it is
37  * increased if more space is required to fit the whole line.
38  */
39 ssize_t mutt_read_rfc822_line(FILE *f, char **line, ssize_t *n)
40 {
41     ssize_t pos = 0;
42
43     for (;;) {
44         char *p = *line;
45
46         /* end of file or end of headers */
47         if (!fgets(p + pos, *n - pos, f) || (ISSPACE(*p) && pos == 0)) {
48             *p = '\0';
49             return 0;
50         }
51
52         pos += m_strlen(p + pos);
53         if (p[pos - 1] == '\n') {
54             int c;
55
56             /* remove trailing spaces. safe: p[0] is not a space */
57             do {
58                 p[--pos] = '\0';
59             } while (ISSPACE(p[pos]));
60
61             /* check to see if the next line is a continuation line */
62             c = fgetc(f);
63             if (c != ' ' && c != '\t') {
64                 /* next line is a separate header field or EOH */
65                 ungetc(c, f);
66                 return pos;
67             }
68
69             /* eat tabs and spaces from the beginning of the continuation line */
70             do {
71                 c = fgetc(f);
72             } while (c == ' ' || c == '\t');
73             ungetc(c, f);
74
75             /* string is still terminated because we removed at least one
76                whitespace char above */
77             p[pos++] = ' ';
78         }
79
80         if (*n < pos + STRING) {
81             /* grow the buffer */
82             *n += STRING;
83             p_realloc(line, *n);
84         }
85     }
86 }
87
88 /* TODO: Make that a string list somehow */
89 string_list_t *mutt_parse_references(char *s, int in_reply_to)
90 {
91     string_list_t *lst = NULL;
92     int n = 0;
93     char *o = NULL;
94
95     /* some mail clients add other garbage besides message-ids, so do a quick
96      * check to make sure this looks like a valid message-id
97      * some idiotic clients also break their message-ids between lines, deal
98      * with that too (give up if it's more than two lines, though)
99      */
100
101     for (s = strtok(s, " \t;"); s; s = strtok(NULL, " \t;")) {
102         char *new = NULL;
103
104         if (*s == '<') {
105             n = m_strlen(s);
106             if (s[n - 1] != '>') {
107                 o = s;
108                 continue;
109             }
110
111             new = m_strdup(s);
112         } else if (o) {
113             ssize_t m = m_strlen(s);
114
115             if (s[m - 1] != '>') {
116                 o = NULL;
117             } else {
118                 new = p_new(char, n + m + 1);
119                 m_strcpy(new, n + m + 1, o);
120                 m_strcpy(new + n, m + 1, s);
121             }
122         }
123
124         /* make sure that this really does look like a message-id.
125          * it should have exactly one @, and if we're looking at
126          * an in-reply-to header, make sure that the part before
127          * the @ has more than eight characters or it's probably
128          * an email address
129          */
130         if (new) {
131             char *at = strchr(new, '@');
132             string_list_t *tmp;
133
134             if (!at || strchr(at + 1, '@') || (in_reply_to && at - new <= 8)) {
135                 p_delete(&new);
136                 continue;
137             }
138
139             tmp = p_new(string_list_t, 1);
140             tmp->data = new;
141             tmp->next = lst;
142             lst = tmp;
143         }
144     }
145
146     return lst;
147 }
148
149 int mutt_check_encoding(const char *s)
150 {
151     int tok = mime_which_token(s, -1);
152     switch (tok) {
153       case MIME_7BIT:
154         return ENC7BIT;
155       case MIME_8BIT:
156         return ENC8BIT;
157       case MIME_BINARY:
158         return ENCBINARY;
159       case MIME_QUOTED_PRINTABLE:
160         return ENCQUOTEDPRINTABLE;
161       case MIME_BASE64:
162         return ENCBASE64;
163       case MIME_X_UUENCODE:
164         return ENCUUENCODED;
165       default:
166         return ENCOTHER;
167     }
168 }
169
170 int mutt_check_mime_type(const char *s)
171 {
172     int tok;
173
174     if (!m_strcmp(s, "*") || !m_strcmp(s, ".*"))
175         return TYPEANY;
176
177     tok = mime_which_token(s, -1);
178     switch (tok) {
179       case MIME_TEXT:        return TYPETEXT;
180       case MIME_MULTIPART:   return TYPEMULTIPART;
181       case MIME_APPLICATION: return TYPEAPPLICATION;
182       case MIME_MESSAGE:     return TYPEMESSAGE;
183       case MIME_IMAGE:       return TYPEIMAGE;
184       case MIME_AUDIO:       return TYPEAUDIO;
185       case MIME_VIDEO:       return TYPEVIDEO;
186       case MIME_MODEL:       return TYPEMODEL;
187       default:               return TYPEOTHER;
188     }
189 }
190
191 static parameter_t *parse_parameters(const char *s)
192 {
193     parameter_t *res = NULL;
194     parameter_t **list = &res;
195
196     while (*s) {
197         const char *p;
198         parameter_t *new;
199         int i;
200
201         s = skipspaces(s);
202         if (*s == '=')             /* parameters are fucked up, go away */
203             break;
204
205         p = strpbrk(s, "=;");
206         if (!p)
207             break;
208
209         if (*p == ';') {
210             /* if we hit a ; now the parameter has no value, just skip it */
211             s = p + 1;
212             continue;
213         }
214
215         i = p - s;
216         new = parameter_new();
217         new->attribute = p_dupstr(s, i);
218
219         while (--i >= 0 && ISSPACE(new->attribute[i])) {
220             new->attribute[i] = '\0';
221         }
222         s = skipspaces(p + 1);                      /* skip over the = */
223
224         if (*s == '"') {
225             char buffer[LONG_STRING];
226             int state_ascii = 1;
227
228             s++;
229             for (i = 0; *s && i < ssizeof(buffer) - 1; i++, s++) {
230                 /* As iso-2022-* has a characer of '"' with non-ascii state,
231                  * ignore it. */
232                 if (*s == 0x1b && i < ssizeof(buffer) - 2) {
233                     state_ascii = s[1] == '(' && (s[2] == 'B' || s[2] == 'J');
234                 }
235                 if (state_ascii && *s == '"')
236                     break;
237
238                 if (*s == '\\') {
239                     buffer[i] = *++s;
240                 } else {
241                     buffer[i] = *s;
242                 }
243             }
244
245             new->value = p_dupstr(buffer, i);
246         } else {
247             for (p = s; *p && *p != ' ' && *p != ';'; p++);
248             new->value = p_dupstr(s, p - s);
249         }
250
251         *list = new;
252         list = &new->next;
253
254         s = strchr(s, ';');           /* Find the next parameter */
255         if (!s)
256             break;                    /* no more parameters */
257     }
258
259     rfc2231_decode_parameters(&res);
260     return res;
261 }
262
263 void mutt_parse_content_type(char *s, BODY *ct)
264 {
265     char *pc;
266     char *subtype;
267
268     p_delete(&ct->subtype);
269     parameter_list_wipe(&ct->parameter);
270
271     /* First extract any existing parameters */
272     if ((pc = strchr(s, ';')) != NULL) {
273         *pc++ = '\0';
274         ct->parameter = parse_parameters(vskipspaces(pc));
275
276         /* Some pre-RFC1521 gateways still use the "name=filename" convention,
277          * but if a filename has already been set in the content-disposition,
278          * let that take precedence, and don't set it here */
279         pc = parameter_getval(ct->parameter, "name");
280         if (pc && !ct->filename)
281             ct->filename = m_strdup(pc);
282     }
283
284     /* Now get the subtype */
285     if ((subtype = strchr (s, '/'))) {
286         *subtype++ = '\0';
287         for (pc = subtype; *pc && !ISSPACE(*pc) && *pc != ';'; pc++);
288         ct->subtype = p_dupstr(subtype, pc - subtype);
289     }
290
291     /* Finally, get the major type */
292     ct->type = mutt_check_mime_type(s);
293
294     if (ct->type == TYPEOTHER) {
295         ct->xtype = m_strdup(s);
296     }
297
298     if (!ct->subtype) {
299         /* Some older non-MIME mailers (i.e., mailtool, elm) have a content-type
300          * field, so we can attempt to convert the type to BODY here.
301          */
302         switch (ct->type) {
303             char buffer[STRING];
304
305           case TYPETEXT:
306             ct->subtype = m_strdup("plain");
307             break;
308
309           case TYPEAUDIO:
310             ct->subtype = m_strdup("basic");
311             break;
312
313           case TYPEMESSAGE:
314             ct->subtype = m_strdup("rfc822");
315             break;
316
317           case TYPEOTHER:
318             ct->type = TYPEAPPLICATION;
319             snprintf(buffer, sizeof(buffer), "x-%s", s);
320             ct->subtype = m_strdup(buffer);
321             break;
322
323           default:
324             ct->subtype = m_strdup("x-unknown");
325             break;
326         }
327     }
328
329     /* Default character set for text types. */
330     if (ct->type == TYPETEXT) {
331         pc = parameter_getval(ct->parameter, "charset");
332         if (!pc) {
333             parameter_setval(&ct->parameter, "charset",
334                              charset_getfirst(mod_cset.assumed_charset));
335         }
336     }
337 }
338
339 static void parse_content_disposition(const char *s, BODY *ct)
340 {
341     if (!ascii_strncasecmp(s, "inline", 6)) {
342         ct->disposition = DISPINLINE;
343     } else if (!ascii_strncasecmp(s, "form-data", 9)) {
344         ct->disposition = DISPFORMDATA;
345     } else {
346         ct->disposition = DISPATTACH;
347     }
348
349     /* Check to see if a default filename was given */
350     if ((s = strchr (s, ';'))) {
351         parameter_t *parms = parse_parameters(vskipspaces(s));
352
353         if ((s = parameter_getval(parms, "filename")))
354             m_strreplace(&ct->filename, s);
355         if ((s = parameter_getval(parms, "name")))
356             ct->form_name = m_strdup(s);
357
358         parameter_list_wipe(&parms);
359     }
360 }
361
362 /* args:
363  *      fp      stream to read from
364  *
365  *      digest  1 if reading subparts of a multipart/digest, 0
366  *              otherwise
367  */
368 BODY *mutt_read_mime_header(FILE *fp, int digest)
369 {
370     BODY *body = body_new();
371     char *line = p_new(char, LONG_STRING);
372     ssize_t linelen = LONG_STRING;
373     char *p;
374
375     body->hdr_offset  = ftello(fp);
376     body->encoding    = ENC7BIT;    /* default from RFC1521 */
377     body->disposition = DISPINLINE;
378     body->type        = digest ? TYPEMESSAGE : TYPETEXT;
379
380     while (mutt_read_rfc822_line(fp, &line, &linelen)) {
381         /* Find the value of the current header */
382         if ((p = strchr(line, ':'))) {
383             *p++ = '\0';
384             p = vskipspaces(p);
385             if (!*p)
386                 continue;
387         } else {
388             break;
389         }
390
391         switch (mime_which_token(line, -1)) {
392           case MIME_CONTENT_TYPE:
393             mutt_parse_content_type (p, body);
394             break;
395
396           case MIME_CONTENT_TRANSFER_ENCODING:
397             body->encoding = mutt_check_encoding (p);
398             break;
399
400           case MIME_CONTENT_DISPOSITION:
401             parse_content_disposition(p, body);
402             break;
403
404           case MIME_CONTENT_DESCRIPTION:
405             m_strreplace(&body->description, p);
406             rfc2047_decode(&body->description);
407             break;
408
409           default: break;
410         }
411     }
412
413     body->offset = ftello(fp);       /* Mark the start of the real data */
414     if (!body->subtype) {
415         if (body->type == TYPETEXT)
416             body->subtype = m_strdup("plain");
417         if (body->type == TYPEMESSAGE)
418             body->subtype = m_strdup("rfc822");
419     }
420
421     p_delete(&line);
422     return (body);
423 }
424
425 void mutt_parse_part(FILE *fp, BODY *b)
426 {
427     char *bound = 0;
428
429     switch (b->type) {
430       case TYPEMULTIPART:
431         bound = parameter_getval(b->parameter, "boundary");
432         fseeko(fp, b->offset, SEEK_SET);
433         b->parts = mutt_parse_multipart(fp, bound, b->offset + b->length,
434                                         mime_which_token(b->subtype, -1) == MIME_DIGEST);
435         break;
436
437       case TYPEMESSAGE:
438         if (b->subtype) {
439             fseeko(fp, b->offset, SEEK_SET);
440
441             if (mutt_is_message_type(b)) {
442                 b->parts = mutt_parse_messageRFC822(fp, b);
443             } else
444             if (mime_which_token(b->subtype, -1) == MIME_EXTERNAL_BODY) {
445                 b->parts = mutt_read_mime_header(fp, 0);
446             } else {
447                 return;
448             }
449         }
450         break;
451
452       default:
453         return;
454     }
455
456     /* try to recover from parsing error */
457     if (!b->parts) {
458         b->type = TYPETEXT;
459         m_strreplace(&b->subtype, "plain");
460     }
461 }
462
463 /* parse a MESSAGE/RFC822 body
464  *
465  * args:
466  *      fp              stream to read from
467  *
468  *      parent          structure which contains info about the message/rfc822
469  *                      body part
470  *
471  * NOTE: this assumes that `parent->length' has been set!
472  */
473 BODY *mutt_parse_messageRFC822(FILE * fp, BODY * parent)
474 {
475     BODY *msg;
476
477     parent->hdr = header_new();
478     parent->hdr->offset = ftello(fp);
479     parent->hdr->env    = mutt_read_rfc822_header(fp, parent->hdr, 0, 0);
480
481     msg = parent->hdr->content;
482
483     /* ignore the length given in the content-length since it could be wrong
484        and we already have the info to calculate the correct length */
485     /* if (msg->length == -1) */
486     /* if body of this message is empty, we can end up with a negative length */
487     msg->length = MAX(0, parent->length - (msg->offset - parent->offset));
488
489     mutt_parse_part(fp, msg);
490
491     return msg;
492 }
493
494 /* parse a multipart structure
495  *
496  * args:
497  *      fp              stream to read from
498  *
499  *      bound           body separator
500  *
501  *      end_off         length of the multipart body (used when the final
502  *                      boundary is missing to avoid reading too far)
503  *
504  *      digest          1 if reading a multipart/digest, 0 otherwise
505  */
506
507 BODY *
508 mutt_parse_multipart(FILE *fp, const char *bound, off_t end_off, int digest)
509 {
510     char buffer[LONG_STRING];
511     BODY *head = NULL;
512     BODY **last = &head;
513     int blen = m_strlen(bound);
514     int final = 0;                /* did we see the ending boundary? */
515
516     if (!blen) {
517         mutt_error _("multipart message has no boundary parameter!");
518         return NULL;
519     }
520
521     while (ftello(fp) < end_off && fgets(buffer, sizeof(buffer), fp)) {
522         int len, crlf, i;
523
524         len  = m_strlen(buffer);
525         crlf = len > 1 && buffer[len - 2] == '\r';
526
527         if (buffer[0] == '-' && buffer[1] == '-'
528         && !m_strncmp(buffer + 2, bound, blen))
529         {
530             if (*last) {
531                 BODY *b = *last;
532
533                 /* if the body is empty, we can end up with a -1 length */
534                 b->length = MAX(0, ftello(fp) - b->offset - len - 1 - crlf);
535                 if (b->parts && b->parts->length == 0) {
536                     b->parts->length = ftello(fp) - b->parts->offset
537                                      - len - 1 - crlf;
538                 }
539             }
540
541             /* Remove any trailing whitespace, up to the length of the boundary */
542             for (i = len - 1; ISSPACE(buffer[i]) && i >= blen + 2; i--)
543                 buffer[i] = '\0';
544
545             /* Check for the end boundary */
546             final = buffer[blen + 3] == '-' && buffer[blen + 4] == '-';
547             if (final)
548                 break;
549
550             if (buffer[2 + blen] == '\0') {
551                 BODY *new = mutt_read_mime_header(fp, digest);
552
553                 /*
554                  * Consistency checking - catch
555                  * bad attachment end boundaries
556                  */
557
558                 if (new->offset > end_off) {
559                     body_list_wipe(&new);
560                     break;
561                 }
562
563                 if (*last)
564                     last = &(*last)->next;
565                 *last = new;
566             }
567         }
568     }
569
570     /* in case of missing end boundary, set the length to something reasonable */
571     if (*last && (*last)->length == 0 && !final)
572         (*last)->length = end_off - (*last)->offset;
573
574     /* parse recursive MIME parts */
575     {
576         BODY *b;
577         for (b = head; b; b = b->next)
578             mutt_parse_part(fp, b);
579     }
580
581     return (head);
582 }
583
584 /* parses a date string in RFC822 format:
585  *
586  * Date: [ weekday , ] day-of-month month year hour:minute:second timezone
587  *
588  * This routine assumes that `h' has been initialized to 0.  the `timezone'
589  * field is optional, defaulting to +0000 if missing.
590  */
591 time_t mutt_parse_date(const char *s, HEADER *h)
592 {
593     struct tm tm;
594     const char *loc;
595     loc = setlocale(LC_TIME, "C");
596
597     p_clear(&tm, 1);
598     if (strptime(s, "%a, %d %b %Y %H:%M:%S %z", &tm))
599         goto ok;
600     p_clear(&tm, 1);
601     if (strptime(s, "%a, %d %b %Y %H:%M %z", &tm))
602         goto ok;
603     setlocale(LC_TIME, loc);
604     return 0;
605
606   ok:
607     setlocale(LC_TIME, loc);
608     return mutt_mktime(&tm, 1);
609 }
610
611 string_list_t **mutt_parse_rfc822_line(ENVELOPE *e, HEADER *hdr, char *line, char *p,
612                               short weed, short do_2047, string_list_t **user_hdrs)
613 {
614     switch (mime_which_token(line, -1)) {
615       case MIME_APPARENTLY_FROM:
616         e->from = rfc822_parse_adrlist (e->from, p);
617         break;
618
619       case MIME_APPARENTLY_TO:
620         e->to = rfc822_parse_adrlist (e->to, p);
621         break;
622
623       case MIME_BCC:
624         e->bcc = rfc822_parse_adrlist (e->bcc, p);
625         break;
626
627       case MIME_CC:
628         e->cc = rfc822_parse_adrlist (e->cc, p);
629         break;
630
631       case MIME_CONTENT_DESCRIPTION:
632         if (hdr) {
633             m_strreplace(&hdr->content->description, p);
634             rfc2047_decode(&hdr->content->description);
635         }
636         break;
637
638       case MIME_CONTENT_DISPOSITION:
639         if (hdr)
640             parse_content_disposition(p, hdr->content);
641         break;
642
643       case MIME_CONTENT_LENGTH:
644         if (hdr) {
645             if ((hdr->content->length = atoi(p)) < 0)
646                 hdr->content->length = -1;
647         }
648         break;
649
650       case MIME_CONTENT_TRANSFER_ENCODING:
651         if (hdr)
652             hdr->content->encoding = mutt_check_encoding(p);
653         break;
654
655       case MIME_CONTENT_TYPE:
656         if (hdr)
657             mutt_parse_content_type (p, hdr->content);
658         break;
659
660       case MIME_DATE:
661         m_strreplace(&e->date, p);
662         if (hdr)
663             hdr->date_sent = mutt_parse_date (p, hdr);
664         break;
665
666       case MIME_EXPIRES:
667         if (hdr && mutt_parse_date (p, NULL) < time (NULL))
668             hdr->expired = 1;
669         break;
670
671 #ifdef USE_NNTP
672       case MIME_FOLLOWUP_TO:
673         if (!e->followup_to) {
674             m_strrtrim(p);
675             e->followup_to = m_strdup(skipspaces(p));
676         }
677         break;
678 #endif
679
680       case MIME_FROM:
681         e->from = rfc822_parse_adrlist(e->from, p);
682         /* don't leave from info NULL if there's an invalid address (or
683          * whatever) in From: field; mutt would just display it as empty
684          * and mark mail/(esp.) news article as your own. aaargh! this
685          * bothered me for _years_ */
686         if (!e->from) {
687             e->from = address_new();
688             e->from->personal = m_strdup(p);
689         }
690         break;
691
692       case MIME_IN_REPLY_TO:
693         string_list_wipe(&e->in_reply_to);
694         e->in_reply_to = mutt_parse_references(p, 1);
695         break;
696
697       case MIME_LINES:
698         if (hdr) {
699             /* HACK - mutt has, for a very short time, produced negative
700                Lines header values.  Ignore them. */
701             hdr->lines = MAX(0, atoi(p));
702         }
703         break;
704
705       case MIME_LIST_POST:
706         /* RFC 2369.  FIXME: We should ignore whitespace, but don't. */
707         if (m_strncmp(p, "NO", 2)) {
708             char *beg, *end;
709
710             for (beg = strchr (p, '<'); beg; beg = strchr (end, ',')) {
711                 ++beg;
712                 if (!(end = strchr (beg, '>')))
713                     break;
714
715                 /* Take the first mailto URL */
716                 if (url_check_scheme (beg) == U_MAILTO) {
717                     p_delete(&e->list_post);
718                     e->list_post = p_dupstr(beg, end - beg);
719                     break;
720                 }
721             }
722         }
723         break;
724
725       case MIME_MAIL_FOLLOWUP_TO:
726         e->mail_followup_to = rfc822_parse_adrlist(e->mail_followup_to, p);
727         break;
728
729       case MIME_MAIL_REPLY_TO:
730         address_list_wipe(&e->reply_to);
731         e->reply_to = rfc822_parse_adrlist(e->reply_to, p);
732         break;
733
734       case MIME_MESSAGE_ID:
735         {
736             const char *beg, *end;
737
738             /* We add a new "Message-ID:" when building a message */
739             p_delete(&e->message_id);
740
741             if ((beg = strchr(p, '<')) && (end = strchr(beg, '>')))
742                 e->message_id = p_dupstr(beg, (end - beg) + 1);
743         }
744         break;
745
746       case MIME_MIME_VERSION:
747         if (hdr)
748             hdr->mime = 1;
749         break;
750
751 #ifdef USE_NNTP
752       case MIME_NEWSGROUPS:
753         p_delete(&e->newsgroups);
754         m_strrtrim(p);
755         e->newsgroups = m_strdup(skipspaces(p));
756         break;
757 #endif
758
759       case MIME_ORGANIZATION:
760         if (!e->organization && mime_which_token(p, -1) == MIME_UNKNOWN)
761             e->organization = m_strdup(p);
762         break;
763
764       case MIME_RECEIVED:
765         if (hdr && !hdr->received) {
766             char *d = strchr(p, ';');
767             if (d)
768                 hdr->received = mutt_parse_date(d + 1, NULL);
769         }
770         break;
771
772       case MIME_REFERENCES:
773         string_list_wipe(&e->references);
774         e->references = mutt_parse_references(p, 0);
775         break;
776
777       case MIME_REPLY_TO:
778         e->reply_to = rfc822_parse_adrlist(e->reply_to, p);
779         break;
780
781       case MIME_RETURN_PATH:
782         e->return_path = rfc822_parse_adrlist(e->return_path, p);
783         break;
784
785       case MIME_SENDER:
786         e->sender = rfc822_parse_adrlist (e->sender, p);
787         break;
788
789       case MIME_STATUS:
790         if (hdr) {
791             while (*p) {
792                 switch (*p) {
793                   case 'r':
794                     hdr->replied = 1;
795                     break;
796                   case 'O':
797                     hdr->old = 1;
798                     break;
799                   case 'R':
800                     hdr->read = 1;
801                     break;
802                 }
803                 p++;
804             }
805         }
806         break;
807
808       case MIME_SUBJECT:
809         if (!e->subject)
810             e->subject = m_strdup(p);
811         break;
812
813       case MIME_SUPERCEDES:
814       case MIME_SUPERSEDES:
815         if (hdr)
816             e->supersedes = m_strdup(p);
817         break;
818
819       case MIME_TO:
820         e->to = rfc822_parse_adrlist(e->to, p);
821         break;
822
823       case MIME_X_LABEL:
824         e->x_label = m_strdup(p);
825         break;
826
827 #ifdef USE_NNTP
828       case MIME_XREF:
829         if (!e->xref)
830             e->xref = m_strdup(p);
831         break;
832 #endif
833
834       case MIME_X_STATUS:
835         if (hdr) {
836             while (*p) {
837                 switch (*p) {
838                   case 'A':
839                     hdr->replied = 1;
840                     break;
841                   case 'D':
842                     hdr->deleted = 1;
843                     break;
844                   case 'F':
845                     hdr->flagged = 1;
846                     break;
847                   default:
848                     break;
849                 }
850                 p++;
851             }
852         }
853         break;
854
855       default:
856         if (!user_hdrs)
857             break;
858
859         /* restore the original line */
860         line[m_strlen(line)] = ':';
861
862         if (weed && string_list_contains(Ignore, line, "*")
863         && !string_list_contains(UnIgnore, line, "*")) {
864             break;
865         }
866
867         *user_hdrs = string_item_new();
868         (*user_hdrs)->data = m_strdup(line);
869         if (do_2047)
870             rfc2047_decode(&(*user_hdrs)->data);
871         return &(*user_hdrs)->next;
872     }
873
874     return user_hdrs;
875 }
876
877 /* mutt_read_rfc822_header() -- parses a RFC822 header
878  *
879  * Args:
880  *
881  * f            stream to read from
882  *
883  * hdr          header structure of current message (optional).
884  *
885  * user_hdrs    If set, store user headers.  Used for recall-message and
886  *              postpone modes.
887  *
888  * weed         If this parameter is set and the user has activated the
889  *              $weed option, honor the header weed list for user headers.
890  *              Used for recall-message.
891  *
892  * Returns:     newly allocated envelope structure.  You should free it by
893  *              envelope_delete() when envelope stay unneeded.
894  */
895 ENVELOPE *
896 mutt_read_rfc822_header(FILE *f, HEADER *hdr, short user_hdrs, short weed)
897 {
898     ENVELOPE *e = envelope_new();
899     string_list_t **last = user_hdrs ? &e->userhdrs : NULL;
900
901     char *line = p_new(char, LONG_STRING);
902     ssize_t linelen = LONG_STRING;
903     off_t loc;
904
905     if (hdr && !hdr->content) {
906         hdr->content = body_new();
907
908         /* set the defaults from RFC1521 */
909         hdr->content->type     = TYPETEXT;
910         hdr->content->subtype  = m_strdup("plain");
911         hdr->content->encoding = ENC7BIT;
912         hdr->content->length   = -1;
913
914         /* RFC 2183 says this is arbitrary */
915         hdr->content->disposition = DISPINLINE;
916     }
917
918     while ((loc = ftello(f)),
919            mutt_read_rfc822_line(f, &line, &linelen))
920     {
921         char buf[LONG_STRING + 1] = "";
922         char *p;
923
924         p = strpbrk(line, ": \t");
925         if (!p || *p != ':') {
926             /* some bogus MTAs will quote the original "From " line */
927             if (!m_strncmp(">From ", line, 6) || !m_strncmp("From ", line, 5))
928                 continue;               /* just ignore */
929
930             fseeko(f, loc, 0);
931             break;                    /* end of header */
932         }
933
934         if (rx_list_match2(SpamList, line, buf, sizeof(buf))
935         && !rx_list_match(NoSpamList, line))
936         {
937             /* if spam tag already exists, figure out how to amend it */
938             if (e->spam && *buf) {
939                 if (mod_mime.spam_separator) {
940                     mutt_buffer_addstr(e->spam, mod_mime.spam_separator);
941                 } else {
942                     mutt_buffer_reset(e->spam);
943                 }
944                 mutt_buffer_addstr(e->spam, buf);
945             }
946
947             if (!e->spam) {
948                 e->spam = mutt_buffer_from(NULL, buf);
949             }
950         }
951
952         *p++ = '\0';
953         p = vskipspaces(p);
954         if (!*p)
955             continue;                 /* skip empty header fields */
956
957         last = mutt_parse_rfc822_line(e, hdr, line, p, weed, 1, last);
958     }
959
960     p_delete(&line);
961
962     if (hdr) {
963         hdr->content->hdr_offset = hdr->offset;
964         hdr->content->offset     = ftello(f);
965         rfc2047_decode_envelope(e);
966         /* check for missing or invalid date */
967         if (hdr->date_sent <= 0) {
968             hdr->date_sent = hdr->received;
969         }
970     }
971
972     return e;
973 }
974
975 /* Compares mime types to the ok and except lists */
976 static int count_body_parts_check(string_list_t **checklist, BODY *b)
977 {
978     string_list_t *type;
979
980     for (type = *checklist; type; type = type->next) {
981         ATTACH_MATCH *a = (ATTACH_MATCH *)type->data;
982
983         if ((a->major_int == TYPEANY || a->major_int == b->type)
984         &&  !regexec(&a->minor_rx, b->subtype, 0, NULL, 0)) {
985             return 1;
986         }
987     }
988
989     return 0;
990 }
991
992 static int count_body_parts (BODY *body, int flags)
993 {
994     int count = 0;
995     BODY *bp;
996
997     if (!body)
998         return 0;
999
1000     for (bp = body; bp != NULL; bp = bp->next) {
1001         /* Initial disposition is to count and not to recurse this part. */
1002         int shallcount, shallrecurse, iscontainer;
1003         int tok = mime_which_token(bp->subtype, -1);
1004
1005         iscontainer  = bp->type == TYPEMESSAGE || bp->type == TYPEMULTIPART;
1006
1007         /* don't recurse in external bodies or multipart/alternatives */
1008         shallrecurse = (bp->type == TYPEMESSAGE && tok != MIME_EXTERNAL_BODY)
1009                     || (bp->type == TYPEMULTIPART && tok != MIME_ALTERNATIVE);
1010
1011         /* Don't count top level containers and fundamental inlines */
1012         shallcount   = !(iscontainer && (flags & M_PARTS_TOPLEVEL))
1013                     && !(!iscontainer && bp->disposition == DISPINLINE && bp == body);
1014
1015         if (shallcount) {
1016             /* Turn off shallcount if message type is not in ok list,
1017              * or if it is in except list. Check is done separately for
1018              * inlines vs. attachments.
1019              */
1020
1021             if (bp->disposition == DISPATTACH) {
1022                 if (!count_body_parts_check(&AttachAllow, bp))
1023                     shallcount = 0;
1024                 if (count_body_parts_check(&AttachExclude, bp))
1025                     shallcount = 0;
1026             } else {
1027                 if (!count_body_parts_check(&InlineAllow, bp))
1028                     shallcount = 0;
1029                 if (count_body_parts_check(&InlineExclude, bp))
1030                     shallcount = 0;
1031             }
1032         }
1033
1034         bp->attach_qualifies = shallcount;
1035         count += shallcount;
1036
1037         if (shallrecurse) {
1038             bp->attach_count = count_body_parts(bp->parts,
1039                                                 flags & ~M_PARTS_TOPLEVEL);
1040             count += bp->attach_count;
1041         }
1042     }
1043
1044     return count;
1045 }
1046
1047 int mutt_count_body_parts(HEADER *hdr, int flags)
1048 {
1049     if (hdr->attach_valid && !(flags & M_PARTS_RECOUNT))
1050         return hdr->attach_total;
1051
1052     if (AttachAllow || AttachExclude || InlineAllow || InlineExclude)
1053         hdr->attach_total = count_body_parts(hdr->content,
1054                                              flags | M_PARTS_TOPLEVEL);
1055     else
1056         hdr->attach_total = 0;
1057
1058     hdr->attach_valid = 1;
1059     return hdr->attach_total;
1060 }