Nico Golde:
[apps/madmutt.git] / handler.c
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */ 
18
19 #if HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <ctype.h>
27 #include <sys/wait.h>
28 #include <sys/stat.h>
29
30 #include "mutt.h"
31 #include "mutt_curses.h"
32 #include "rfc1524.h"
33 #include "keymap.h"
34 #include "mime.h"
35 #include "copy.h"
36 #include "charset.h"
37 #include "mutt_crypt.h"
38 #include "lib.h"
39
40
41 #define BUFI_SIZE 1000
42 #define BUFO_SIZE 2000
43
44
45 typedef void handler_f (BODY *, STATE *);
46 typedef handler_f *handler_t;
47
48 int Index_hex[128] = {
49     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
50     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
51     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
52      0, 1, 2, 3,  4, 5, 6, 7,  8, 9,-1,-1, -1,-1,-1,-1,
53     -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
54     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
55     -1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
56     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1
57 };
58
59 int Index_64[128] = {
60     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
61     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
62     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
63     52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
64     -1, 0, 1, 2,  3, 4, 5, 6,  7, 8, 9,10, 11,12,13,14,
65     15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
66     -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
67     41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
68 };
69
70 static void state_prefix_put (const char *d, size_t dlen, STATE *s)
71 {
72   if (s->prefix)
73     while (dlen--)
74       state_prefix_putc (*d++, s);
75   else
76     fwrite (d, dlen, 1, s->fpout);
77 }
78
79 void mutt_convert_to_state(iconv_t cd, char *bufi, size_t *l, STATE *s)
80 {
81   char bufo[BUFO_SIZE];
82   ICONV_CONST char *ib;
83   char *ob;
84   size_t ibl, obl;
85
86   if (!bufi)
87   {
88     if (cd != (iconv_t)(-1))
89     {
90       ob = bufo, obl = sizeof (bufo);
91       iconv (cd, 0, 0, &ob, &obl);
92       if (ob != bufo)
93         state_prefix_put (bufo, ob - bufo, s);
94     }
95     if (Quotebuf[0] != '\0')
96       state_prefix_putc ('\n', s);
97     return;
98   }
99
100   if (cd == (iconv_t)(-1))
101   {
102     state_prefix_put (bufi, *l, s);
103     *l = 0;
104     return;
105   }
106
107   ib = bufi, ibl = *l;
108   for (;;)
109   {
110     ob = bufo, obl = sizeof (bufo);
111     mutt_iconv (cd, &ib, &ibl, &ob, &obl, 0, "?");
112     if (ob == bufo)
113       break;
114     state_prefix_put (bufo, ob - bufo, s);
115   }
116   memmove (bufi, ib, ibl);
117   *l = ibl;
118 }
119
120 void mutt_decode_xbit (STATE *s, long len, int istext, iconv_t cd)
121 {
122   int c, ch;
123   char bufi[BUFI_SIZE];
124   size_t l = 0;
125
126   if (istext)
127   {
128     state_set_prefix(s);
129
130     while ((c = fgetc(s->fpin)) != EOF && len--)
131     {
132       if(c == '\r' && len)
133       {
134         if((ch = fgetc(s->fpin)) == '\n')
135         {
136           c = ch;
137           len--;
138         }
139         else 
140           ungetc(ch, s->fpin);
141       }
142
143       bufi[l++] = c;
144       if (l == sizeof (bufi))
145         mutt_convert_to_state (cd, bufi, &l, s);
146     }
147
148     mutt_convert_to_state (cd, bufi, &l, s);
149     mutt_convert_to_state (cd, 0, 0, s);
150
151     state_reset_prefix (s);
152   }
153   else
154     mutt_copy_bytes (s->fpin, s->fpout, len);
155 }
156
157 static int qp_decode_triple (char *s, char *d)
158 {
159   /* soft line break */
160   if (*s == '=' && !(*(s+1)))
161     return 1;
162   
163   /* quoted-printable triple */
164   if (*s == '=' &&
165       isxdigit ((unsigned char) *(s+1)) &&
166       isxdigit ((unsigned char) *(s+2)))
167   {
168     *d = (hexval (*(s+1)) << 4) | hexval (*(s+2));
169     return 0;
170   }
171   
172   /* something else */
173   return -1;
174 }
175
176 static void qp_decode_line (char *dest, char *src, size_t *l,
177                             int last)
178 {
179   char *d, *s;
180   char c;
181
182   int kind;
183   int soft = 0;
184
185   /* decode the line */
186   
187   for (d = dest, s = src; *s;)
188   {
189     switch ((kind = qp_decode_triple (s, &c)))
190     {
191       case  0: *d++ = c; s += 3; break; /* qp triple */
192       case -1: *d++ = *s++;      break; /* single character */
193       case  1: soft = 1; s++;    break; /* soft line break */
194     }
195   }
196
197   if (!soft && last == '\n')
198     *d++ = '\n';
199   
200   *d = '\0';
201   *l = d - dest;
202 }
203
204 /* 
205  * Decode an attachment encoded with quoted-printable.
206  * 
207  * Why doesn't this overflow any buffers?  First, it's guaranteed
208  * that the length of a line grows when you _en_-code it to
209  * quoted-printable.  That means that we always can store the
210  * result in a buffer of at most the _same_ size.
211  * 
212  * Now, we don't special-case if the line we read with fgets()
213  * isn't terminated.  We don't care about this, since STRING > 78,
214  * so corrupted input will just be corrupted a bit more.  That
215  * implies that STRING+1 bytes are always sufficient to store the
216  * result of qp_decode_line.
217  * 
218  * Finally, at soft line breaks, some part of a multibyte character
219  * may have been left over by mutt_convert_to_state().  This shouldn't
220  * be more than 6 characters, so STRING + 7 should be sufficient
221  * memory to store the decoded data.
222  * 
223  * Just to make sure that I didn't make some off-by-one error
224  * above, we just use STRING*2 for the target buffer's size.
225  * 
226  */
227
228 void mutt_decode_quoted (STATE *s, long len, int istext, iconv_t cd)
229 {
230   char line[STRING];
231   char decline[2*STRING];
232   size_t l = 0;
233   size_t linelen;      /* number of input bytes in `line' */
234   size_t l3;
235   
236   int last;    /* store the last character in the input line */
237   
238   if (istext)
239     state_set_prefix(s);
240
241   while (len > 0)
242   {
243     last = 0;
244     
245     /*
246      * It's ok to use a fixed size buffer for input, even if the line turns
247      * out to be longer than this.  Just process the line in chunks.  This
248      * really shouldn't happen according the MIME spec, since Q-P encoded
249      * lines are at most 76 characters, but we should be liberal about what
250      * we accept.
251      */
252     if (fgets (line, MIN ((ssize_t)sizeof (line), len + 1), s->fpin) == NULL)
253       break;
254
255     linelen = strlen(line);
256     len -= linelen;
257
258     /*
259      * inspect the last character we read so we can tell if we got the
260      * entire line.
261      */
262     last = linelen ? line[linelen - 1] : 0;
263
264     /* chop trailing whitespace if we got the full line */
265     if (last == '\n')
266     {
267       while (linelen > 0 && ISSPACE (line[linelen-1]))
268        linelen--;
269       line[linelen]=0;
270     }
271
272     /* decode and do character set conversion */
273     qp_decode_line (decline + l, line, &l3, last);
274     l += l3;
275     mutt_convert_to_state (cd, decline, &l, s);
276   }
277
278   mutt_convert_to_state (cd, 0, 0, s);
279   state_reset_prefix(s);
280 }
281
282 void mutt_decode_base64 (STATE *s, long len, int istext, iconv_t cd)
283 {
284   char buf[5];
285   int c1, c2, c3, c4, ch, cr = 0, i;
286   char bufi[BUFI_SIZE];
287   size_t l = 0;
288
289   buf[4] = 0;
290
291   if (istext) 
292     state_set_prefix(s);
293
294   while (len > 0)
295   {
296     for (i = 0 ; i < 4 && len > 0 ; len--)
297     {
298       if ((ch = fgetc (s->fpin)) == EOF)
299         break;
300       if (ch >= 0 && ch < 128 && (base64val(ch) != -1 || ch == '='))
301         buf[i++] = ch;
302     }
303     if (i != 4)
304     {
305       dprint (2, (debugfile, "%s:%d [mutt_decode_base64()]: "
306                   "didn't get a multiple of 4 chars.\n", __FILE__, __LINE__));
307       break;
308     }
309
310     c1 = base64val (buf[0]);
311     c2 = base64val (buf[1]);
312     ch = (c1 << 2) | (c2 >> 4);
313
314     if (cr && ch != '\n') 
315       bufi[l++] = '\r';
316
317     cr = 0;
318       
319     if (istext && ch == '\r')
320       cr = 1;
321     else
322       bufi[l++] = ch;
323
324     if (buf[2] == '=')
325       break;
326     c3 = base64val (buf[2]);
327     ch = ((c2 & 0xf) << 4) | (c3 >> 2);
328
329     if (cr && ch != '\n')
330       bufi[l++] = '\r';
331
332     cr = 0;
333
334     if (istext && ch == '\r')
335       cr = 1;
336     else
337       bufi[l++] = ch;
338
339     if (buf[3] == '=') break;
340     c4 = base64val (buf[3]);
341     ch = ((c3 & 0x3) << 6) | c4;
342
343     if (cr && ch != '\n')
344       bufi[l++] = '\r';
345     cr = 0;
346
347     if (istext && ch == '\r')
348       cr = 1;
349     else
350       bufi[l++] = ch;
351     
352     if (l + 8 >= sizeof (bufi))
353       mutt_convert_to_state (cd, bufi, &l, s);
354   }
355
356   if (cr) bufi[l++] = '\r';
357
358   mutt_convert_to_state (cd, bufi, &l, s);
359   mutt_convert_to_state (cd, 0, 0, s);
360
361   state_reset_prefix(s);
362 }
363
364 unsigned char decode_byte (char ch)
365 {
366   if (ch == 96)
367     return 0;
368   return ch - 32;
369 }
370
371 void mutt_decode_uuencoded (STATE *s, long len, int istext, iconv_t cd)
372 {
373   char tmps[SHORT_STRING];
374   char linelen, c, l, out;
375   char *pt;
376   char bufi[BUFI_SIZE];
377   size_t k = 0;
378
379   if(istext)
380     state_set_prefix(s);
381   
382   while(len > 0)
383   {
384     if ((fgets(tmps, sizeof(tmps), s->fpin)) == NULL)
385       return;
386     len -= mutt_strlen(tmps);
387     if ((!mutt_strncmp (tmps, "begin", 5)) && ISSPACE (tmps[5]))
388       break;
389   }
390   while(len > 0)
391   {
392     if ((fgets(tmps, sizeof(tmps), s->fpin)) == NULL)
393       return;
394     len -= mutt_strlen(tmps);
395     if (!mutt_strncmp (tmps, "end", 3))
396       break;
397     pt = tmps;
398     linelen = decode_byte (*pt);
399     pt++;
400     for (c = 0; c < linelen;)
401     {
402       for (l = 2; l <= 6; l += 2)
403       {
404         out = decode_byte (*pt) << l;
405         pt++;
406         out |= (decode_byte (*pt) >> (6 - l));
407         bufi[k++] = out;
408         c++;
409         if (c == linelen)
410           break;
411       }
412       mutt_convert_to_state (cd, bufi, &k, s);
413       pt++;
414     }
415   }
416
417   mutt_convert_to_state (cd, bufi, &k, s);
418   mutt_convert_to_state (cd, 0, 0, s);
419   
420   state_reset_prefix(s);
421 }
422
423 /* ----------------------------------------------------------------------------
424  * A (not so) minimal implementation of RFC1563.
425  */
426
427 #define IndentSize (4)
428     
429 enum { RICH_PARAM=0, RICH_BOLD, RICH_UNDERLINE, RICH_ITALIC, RICH_NOFILL, 
430   RICH_INDENT, RICH_INDENT_RIGHT, RICH_EXCERPT, RICH_CENTER, RICH_FLUSHLEFT,
431   RICH_FLUSHRIGHT, RICH_COLOR, RICH_LAST_TAG };
432
433 static struct {
434   const char *tag_name;
435   int index;
436 } EnrichedTags[] = {
437   { "param",            RICH_PARAM },
438   { "bold",             RICH_BOLD },
439   { "italic",           RICH_ITALIC },
440   { "underline",        RICH_UNDERLINE },
441   { "nofill",           RICH_NOFILL },
442   { "excerpt",          RICH_EXCERPT },
443   { "indent",           RICH_INDENT },
444   { "indentright",      RICH_INDENT_RIGHT },
445   { "center",           RICH_CENTER },
446   { "flushleft",        RICH_FLUSHLEFT },
447   { "flushright",       RICH_FLUSHRIGHT },
448   { "flushboth",        RICH_FLUSHLEFT },
449   { "color",            RICH_COLOR },
450   { "x-color",          RICH_COLOR },
451   { NULL,               -1 }
452 };
453
454 struct enriched_state
455 {
456   char *buffer;
457   char *line;
458   char *param;
459   size_t buff_len;
460   size_t line_len;
461   size_t line_used;
462   size_t line_max;
463   size_t indent_len;
464   size_t word_len;
465   size_t buff_used;
466   size_t param_used;
467   size_t param_len;
468   int tag_level[RICH_LAST_TAG];
469   int WrapMargin;
470   STATE *s;
471 };
472
473 static void enriched_wrap (struct enriched_state *stte)
474 {
475   int x;
476   int extra;
477
478   if (stte->line_len)
479   {
480     if (stte->tag_level[RICH_CENTER] || stte->tag_level[RICH_FLUSHRIGHT])
481     {
482       /* Strip trailing white space */
483       size_t y = stte->line_used - 1;
484
485       while (y && ISSPACE (stte->line[y]))
486       {
487         stte->line[y] = '\0';
488         y--;
489         stte->line_used--;
490         stte->line_len--;
491       }
492       if (stte->tag_level[RICH_CENTER])
493       {
494         /* Strip leading whitespace */
495         y = 0;
496
497         while (stte->line[y] && ISSPACE (stte->line[y]))
498           y++;
499         if (y)
500         {
501           size_t z;
502
503           for (z = y ; z <= stte->line_used; z++)
504           {
505             stte->line[z - y] = stte->line[z];
506           }
507
508           stte->line_len -= y;
509           stte->line_used -= y;
510         }
511       }
512     }
513
514     extra = stte->WrapMargin - stte->line_len - stte->indent_len -
515       (stte->tag_level[RICH_INDENT_RIGHT] * IndentSize);
516     if (extra > 0) 
517     {
518       if (stte->tag_level[RICH_CENTER]) 
519       {
520         x = extra / 2;
521         while (x)
522         {
523           state_putc (' ', stte->s);
524           x--;
525         }
526       } 
527       else if (stte->tag_level[RICH_FLUSHRIGHT])
528       {
529         x = extra-1;
530         while (x)
531         {
532           state_putc (' ', stte->s);
533           x--;
534         }
535       }
536     }
537     state_puts (stte->line, stte->s);
538   }
539
540   state_putc ('\n', stte->s);
541   stte->line[0] = '\0';
542   stte->line_len = 0;
543   stte->line_used = 0;
544   stte->indent_len = 0;
545   if (stte->s->prefix)
546   {
547     state_puts (stte->s->prefix, stte->s);
548     stte->indent_len += mutt_strlen (stte->s->prefix);
549   }
550
551   if (stte->tag_level[RICH_EXCERPT])
552   {
553     x = stte->tag_level[RICH_EXCERPT];
554     while (x) 
555     {
556       if (stte->s->prefix)
557       {
558         state_puts (stte->s->prefix, stte->s);
559             stte->indent_len += mutt_strlen (stte->s->prefix);
560       }
561       else
562       {
563         state_puts ("> ", stte->s);
564         stte->indent_len += mutt_strlen ("> ");
565       }
566       x--;
567     }
568   }
569   else
570     stte->indent_len = 0;
571   if (stte->tag_level[RICH_INDENT])
572   {
573     x = stte->tag_level[RICH_INDENT] * IndentSize;
574     stte->indent_len += x;
575     while (x) 
576     {
577       state_putc (' ', stte->s);
578       x--;
579     }
580   }
581 }
582
583 static void enriched_flush (struct enriched_state *stte, int wrap)
584 {
585   if (!stte->tag_level[RICH_NOFILL] && (stte->line_len + stte->word_len > 
586       (stte->WrapMargin - (stte->tag_level[RICH_INDENT_RIGHT] * IndentSize) - 
587        stte->indent_len)))
588     enriched_wrap (stte);
589
590   if (stte->buff_used)
591   {
592     stte->buffer[stte->buff_used] = '\0';
593     stte->line_used += stte->buff_used;
594     if (stte->line_used > stte->line_max)
595     {
596       stte->line_max = stte->line_used;
597       safe_realloc (&stte->line, stte->line_max + 1);
598     }
599     strcat (stte->line, stte->buffer);  /* __STRCAT_CHECKED__ */
600     stte->line_len += stte->word_len;
601     stte->word_len = 0;
602     stte->buff_used = 0;
603   }
604   if (wrap) 
605     enriched_wrap(stte);
606 }
607
608
609 static void enriched_putc (int c, struct enriched_state *stte)
610 {
611   if (stte->tag_level[RICH_PARAM]) 
612   {
613     if (stte->tag_level[RICH_COLOR]) 
614     {
615       if (stte->param_used + 1 >= stte->param_len)
616         safe_realloc (&stte->param, (stte->param_len += STRING));
617
618       stte->param[stte->param_used++] = c;
619     }
620     return; /* nothing to do */
621   }
622
623   /* see if more space is needed (plus extra for possible rich characters) */
624   if (stte->buff_len < stte->buff_used + 3)
625   {
626     stte->buff_len += LONG_STRING;
627     safe_realloc (&stte->buffer, stte->buff_len + 1);
628   }
629
630   if ((!stte->tag_level[RICH_NOFILL] && ISSPACE (c)) || c == '\0' )
631   {
632     if (c == '\t')
633       stte->word_len += 8 - (stte->line_len + stte->word_len) % 8;
634     else
635       stte->word_len++;
636     
637     stte->buffer[stte->buff_used++] = c;
638     enriched_flush (stte, 0);
639   }
640   else
641   {
642     if (stte->s->flags & M_DISPLAY)
643     {
644       if (stte->tag_level[RICH_BOLD])
645       {
646         stte->buffer[stte->buff_used++] = c;
647         stte->buffer[stte->buff_used++] = '\010';
648         stte->buffer[stte->buff_used++] = c;
649       }
650       else if (stte->tag_level[RICH_UNDERLINE])
651       {
652
653         stte->buffer[stte->buff_used++] = '_';
654         stte->buffer[stte->buff_used++] = '\010';
655         stte->buffer[stte->buff_used++] = c;
656       }
657       else if (stte->tag_level[RICH_ITALIC])
658       {
659         stte->buffer[stte->buff_used++] = c;
660         stte->buffer[stte->buff_used++] = '\010';
661         stte->buffer[stte->buff_used++] = '_';
662       }
663       else
664       {
665         stte->buffer[stte->buff_used++] = c;
666       }
667     }
668     else
669     {
670       stte->buffer[stte->buff_used++] = c;
671     }
672     stte->word_len++;
673   }
674 }
675
676 static void enriched_puts (char *s, struct enriched_state *stte)
677 {
678   char *c;
679
680   if (stte->buff_len < stte->buff_used + mutt_strlen(s))
681   {
682     stte->buff_len += LONG_STRING;
683     safe_realloc (&stte->buffer, stte->buff_len + 1);
684   }
685   c = s;
686   while (*c)
687   {
688     stte->buffer[stte->buff_used++] = *c;
689     c++;
690   }
691 }
692
693 static void enriched_set_flags (const char *tag, struct enriched_state *stte)
694 {
695   const char *tagptr = tag;
696   int i, j;
697
698   if (*tagptr == '/')
699     tagptr++;
700   
701   for (i = 0, j = -1; EnrichedTags[i].tag_name; i++)
702     if (ascii_strcasecmp (EnrichedTags[i].tag_name,tagptr) == 0)
703     {
704       j = EnrichedTags[i].index;
705       break;
706     }
707
708   if (j != -1)
709   {
710     if (j == RICH_CENTER || j == RICH_FLUSHLEFT || j == RICH_FLUSHRIGHT)
711       enriched_flush (stte, 1);
712
713     if (*tag == '/')
714     {
715       if (stte->tag_level[j]) /* make sure not to go negative */
716         stte->tag_level[j]--;
717       if ((stte->s->flags & M_DISPLAY) && j == RICH_PARAM && stte->tag_level[RICH_COLOR])
718       {
719         stte->param[stte->param_used] = '\0';
720         if (!ascii_strcasecmp(stte->param, "black"))
721         {
722           enriched_puts("\033[30m", stte);
723         }
724         else if (!ascii_strcasecmp(stte->param, "red"))
725         {
726           enriched_puts("\033[31m", stte);
727         }
728         else if (!ascii_strcasecmp(stte->param, "green"))
729         {
730           enriched_puts("\033[32m", stte);
731         }
732         else if (!ascii_strcasecmp(stte->param, "yellow"))
733         {
734           enriched_puts("\033[33m", stte);
735         }
736         else if (!ascii_strcasecmp(stte->param, "blue"))
737         {
738           enriched_puts("\033[34m", stte);
739         }
740         else if (!ascii_strcasecmp(stte->param, "magenta"))
741         {
742           enriched_puts("\033[35m", stte);
743         }
744         else if (!ascii_strcasecmp(stte->param, "cyan"))
745         {
746           enriched_puts("\033[36m", stte);
747         }
748         else if (!ascii_strcasecmp(stte->param, "white"))
749         {
750           enriched_puts("\033[37m", stte);
751         }
752       }
753       if ((stte->s->flags & M_DISPLAY) && j == RICH_COLOR)
754       {
755         enriched_puts("\033[0m", stte);
756       }
757
758       /* flush parameter buffer when closing the tag */
759       if (j == RICH_PARAM)
760       {
761         stte->param_used = 0;
762         stte->param[0] = '\0';
763       }
764     }
765     else
766       stte->tag_level[j]++;
767
768     if (j == RICH_EXCERPT)
769       enriched_flush(stte, 1);
770   }
771 }
772
773 void text_enriched_handler (BODY *a, STATE *s)
774 {
775   enum {
776     TEXT, LANGLE, TAG, BOGUS_TAG, NEWLINE, ST_EOF, DONE
777   } state = TEXT;
778
779   long bytes = a->length;
780   struct enriched_state stte;
781   int c = 0;
782   int tag_len = 0;
783   char tag[LONG_STRING + 1];
784
785   memset (&stte, 0, sizeof (stte));
786   stte.s = s;
787   stte.WrapMargin = ((s->flags & M_DISPLAY) ? (COLS-4) : ((COLS-4)<72)?(COLS-4):72);
788   stte.line_max = stte.WrapMargin * 4;
789   stte.line = (char *) safe_calloc (1, stte.line_max + 1);
790   stte.param = (char *) safe_calloc (1, STRING);
791
792   stte.param_len = STRING;
793   stte.param_used = 0;
794
795   if (s->prefix)
796   {
797     state_puts (s->prefix, s);
798     stte.indent_len += mutt_strlen (s->prefix);
799   }
800
801   while (state != DONE)
802   {
803     if (state != ST_EOF)
804     {
805       if (!bytes || (c = fgetc (s->fpin)) == EOF)
806         state = ST_EOF;
807       else
808         bytes--;
809     }
810
811     switch (state)
812     {
813       case TEXT :
814         switch (c)
815         {
816           case '<' :
817             state = LANGLE;
818             break;
819
820           case '\n' :
821             if (stte.tag_level[RICH_NOFILL])
822             {
823               enriched_flush (&stte, 1);
824             }
825             else 
826             {
827               enriched_putc (' ', &stte);
828               state = NEWLINE;
829             }
830             break;
831
832           default:
833             enriched_putc (c, &stte);
834         }
835         break;
836
837       case LANGLE :
838         if (c == '<')
839         {
840           enriched_putc (c, &stte);
841           state = TEXT;
842           break;
843         }
844         else
845         {
846           tag_len = 0;
847           state = TAG;
848         }
849         /* Yes, fall through (it wasn't a <<, so this char is first in TAG) */
850       case TAG :
851         if (c == '>')
852         {
853           tag[tag_len] = '\0';
854           enriched_set_flags (tag, &stte);
855           state = TEXT;
856         }
857         else if (tag_len < LONG_STRING)  /* ignore overly long tags */
858           tag[tag_len++] = c;
859         else
860           state = BOGUS_TAG;
861         break;
862
863       case BOGUS_TAG :
864         if (c == '>')
865           state = TEXT;
866         break;
867
868       case NEWLINE :
869         if (c == '\n')
870           enriched_flush (&stte, 1);
871         else
872         {
873           ungetc (c, s->fpin);
874           bytes++;
875           state = TEXT;
876         }
877         break;
878
879       case ST_EOF :
880         enriched_putc ('\0', &stte);
881         enriched_flush (&stte, 1);
882         state = DONE;
883         break;
884
885       case DONE: /* not reached, but gcc complains if this is absent */
886         break;
887     }
888   }
889
890   state_putc ('\n', s); /* add a final newline */
891
892   FREE (&(stte.buffer));
893   FREE (&(stte.line));
894   FREE (&(stte.param));
895 }                                                                              
896
897 /*
898  * An implementation of RFC 2646.
899  *
900  * NOTE: This still has to be made UTF-8 aware.
901  *
902  */
903
904 #define FLOWED_MAX 77
905
906 static void flowed_quote (STATE *s, int level)
907 {
908   int i;
909   
910   if (s->prefix)
911   {
912     if (option (OPTTEXTFLOWED))
913       level++;
914     else
915       state_puts (s->prefix, s);
916   }
917   
918   for (i = 0; i < level; i++)
919     state_putc ('>', s);
920 }
921
922 static int flowed_maybe_quoted (char *cont)
923 {
924   return regexec ((regex_t *) QuoteRegexp.rx, cont, 0, NULL, 0) == 0;
925 }
926
927 static void flowed_stuff (STATE *s, char *cont, int level)
928 {
929   if (!option (OPTTEXTFLOWED) && !(s->flags & M_DISPLAY))
930     return;
931
932   if (s->flags & M_DISPLAY)
933   {
934     /* 
935      * Hack: If we are in the beginning of the line and there is 
936      * some text on the line which looks like it's quoted, turn off 
937      * ANSI colors, so quote coloring doesn't affect this line. 
938      */
939     if (*cont && !level && !mutt_strcmp (Pager, "builtin") && flowed_maybe_quoted (cont))
940       state_puts ("\033[0m",s);
941   }
942   else if ((!(s->flags & M_PRINTING)) && 
943            ((*cont == ' ') || (*cont == '>') || (!level && !mutt_strncmp (cont, "From ", 5))))
944     state_putc (' ', s);
945 }
946
947 static char *flowed_skip_indent (char *prefix, char *cont)
948 {
949   for (; *cont == ' ' || *cont == '\t'; cont++)
950     *prefix++ = *cont;
951   *prefix = '\0';
952   return cont;
953 }
954
955 static int flowed_visual_strlen (char *l, int i)
956 {
957   int j;
958   for (j = 0; *l; l++)
959   {
960     if (*l == '\t')
961       j += 8 - ((i + j) % 8);
962     else
963       j++;
964   }
965   
966   return j;
967 }
968
969 #if 0
970 static void text_plain_flowed_handler (BODY *a, STATE *s)
971 {
972   char line[LONG_STRING];
973   char indent[LONG_STRING];
974
975   int  quoted = -1;
976   int  last_quoted;
977   int  full = 1;
978   int  last_full;
979   int  col = 0, tmpcol;
980
981   int  i_add = 0;
982   int  add = 0;
983   int  soft = 0;
984   int  l, rl;
985   
986   int  flowed_max;
987   int  bytes = a->length;
988   int  actually_wrap = 0;
989   
990   char *cont = NULL;
991   char *tail = NULL;
992   char *lc = NULL;
993   char *t;
994   
995   *indent = '\0';
996   
997   if (s->prefix)
998     add = 1;
999   
1000   /*
1001   if ((flowed_max = FLOWED_MAX) > COLS - 3)
1002     flowed_max = COLS - 3;
1003   if (flowed_max > COLS - WrapMargin)
1004     flowed_max = COLS - WrapMargin;
1005   if (flowed_max <= 0)
1006     flowed_max = COLS;
1007     */
1008   flowed_max = COLS - WrapMargin;
1009   if (flowed_max <= 0)
1010     flowed_max = COLS;
1011   
1012   fprintf(stderr,"flowed_max = %d\n",flowed_max);
1013
1014   while (bytes > 0 && fgets (line, sizeof (line), s->fpin))
1015   {
1016     bytes        -= strlen (line);
1017     tail          = NULL;
1018
1019     last_full     = full;
1020     
1021     /* 
1022      * If the last line wasn't fully read, this is the
1023      * tail of some line. 
1024      */
1025     actually_wrap = !last_full; 
1026     
1027     if ((t = strrchr (line, '\r')) || (t = strrchr (line, '\n')))
1028     {
1029       *t   = '\0';
1030       full = 1;
1031     }
1032     else if ((t = strrchr (line, ' ')) || (t = strrchr (line, '\t')))
1033     {
1034       /* 
1035        * Bad: We have a line of more than LONG_STRING characters.
1036        * (Which SHOULD NOT happen, since lines SHOULD be <= 79
1037        * characters long.)
1038        * 
1039        * Try to simulate a soft line break at a word boundary.
1040        * Handle the rest of the line next time.
1041        * 
1042        * Give up when we have a single word which is longer than
1043        * LONG_STRING characters.  It will just be split into parts,
1044        * with a hard line break in between. 
1045        */
1046
1047       full = 0;
1048       l    = strlen (t + 1);
1049       t[0] = ' ';
1050       t[1] = '\0';
1051
1052       if (l)
1053       {
1054         fseek (s->fpin, -l, SEEK_CUR);
1055         bytes += l;
1056       }
1057     }
1058     else
1059       full = 0;
1060
1061     last_quoted = quoted;
1062
1063     if (last_full)
1064     {
1065       /* 
1066        * We are in the beginning of a new line. Determine quote level
1067        * and indentation prefix 
1068        */
1069       for (quoted = 0; line[quoted] == '>'; quoted++)
1070         ;
1071       
1072       cont = line + quoted;
1073       
1074       /* undo space stuffing */
1075       if (*cont == ' ')
1076         cont++;
1077
1078       /* If there is an indentation, record it. */
1079       cont  = flowed_skip_indent (indent, cont);
1080       i_add = flowed_visual_strlen (indent, quoted + add);
1081     }
1082     else
1083     {
1084       /* 
1085        * This is just the tail of some over-long line. Keep
1086        * indentation and quote levels.  Don't unstuff.
1087        */
1088       cont = line;
1089     }
1090
1091     /* If we have a change in quoting depth, wrap. */
1092
1093     if (col && last_quoted != quoted && last_quoted >= 0)
1094     {
1095       state_putc ('\n', s);
1096       col = 0;
1097     }
1098     
1099     do 
1100     {
1101       if (tail)
1102         cont = tail;
1103
1104       SKIPWS (cont);
1105       
1106       tail = NULL;
1107       soft = 0;
1108       
1109       /* try to find a point for word wrapping */
1110
1111     retry_wrap:
1112       l  = flowed_visual_strlen (cont, quoted + i_add + add + col);
1113       rl = mutt_strlen (cont);
1114       if (quoted + i_add + add + col + l > flowed_max)
1115       {
1116         actually_wrap = 1;
1117
1118         for (tmpcol = quoted + i_add + add + col, t = cont;
1119              *t && tmpcol < flowed_max; t++)
1120         {
1121           if (*t == ' ' || *t == '\t')
1122             tail = t;
1123           if (*t == '\t')
1124             tmpcol = (tmpcol & ~7) + 8;
1125           else
1126             tmpcol++;
1127         }
1128         
1129         if (tail)
1130         {
1131           *tail++ = '\0';
1132           soft = 2;
1133         }
1134       }
1135
1136       /* We seem to be desperate.  Get me a new line, and retry. */
1137       if (!tail && (quoted + add + col + i_add + l > flowed_max) && col)
1138       {
1139         state_putc ('\n', s);
1140         col = 0;
1141         goto retry_wrap;
1142       }
1143
1144       /* Detect soft line breaks. */
1145       if (!soft && ascii_strcmp (cont, "-- "))
1146       {
1147         lc = strrchr (cont, ' ');
1148         if (lc && lc[1] == '\0')
1149           soft = 1;
1150       }
1151
1152       /* 
1153        * If we are in the beginning of an output line, do quoting
1154        * and stuffing. 
1155        * 
1156        * We have to temporarily assemble the line since display
1157        * stuffing (i.e., turning off quote coloring) may depend on
1158        * the line's actual content.  You never know what people put
1159        * into their regular expressions. 
1160        */
1161       if (!col)
1162       {
1163         char tmp[LONG_STRING];
1164         snprintf (tmp, sizeof (tmp), "%s%s", indent, cont);
1165
1166         flowed_quote (s, quoted);
1167         flowed_stuff (s, tmp, quoted + add);
1168
1169         state_puts (indent, s);
1170       }
1171
1172       /* output the text */
1173       state_puts (cont, s);
1174       col += flowed_visual_strlen (cont, quoted + i_add + add + col);
1175       
1176       /* possibly indicate a soft line break */
1177       if (soft == 2)
1178       {
1179         state_putc (' ', s);
1180         col++;
1181       }
1182       
1183       /* 
1184        * Wrap if this display line corresponds to a 
1185        * text line. Don't wrap if we changed the line.
1186        */
1187       if (!soft || (!actually_wrap && full))
1188       {
1189         state_putc ('\n', s);
1190         col = 0;
1191       }
1192     }
1193     while (tail);
1194   }
1195
1196   if (col)
1197     state_putc ('\n', s);
1198   
1199 }
1200 #endif
1201
1202 static int get_quote_level(char * line) {
1203   int quoted;
1204   for (quoted = 0; line[quoted] == '>'; quoted++);
1205   return quoted;
1206 }
1207
1208 static void print_flowed_line(char * line, STATE *s,int ql) {
1209   int width;
1210   char * pos, * oldpos;
1211   char * t;
1212   int len = strlen(line);
1213   int i;
1214
1215   width = COLS - WrapMargin - ql - 1;
1216   if (option(OPTSTUFFQUOTED))
1217     --width;
1218   if (width < 0)
1219     width = COLS;
1220
1221   /* fprintf(stderr,"print_flowed_line will print `%s' with ql = %d\n",line,ql); */
1222
1223   if (strlen(line)==0) {
1224     if (s->prefix)
1225       state_puts(s->prefix,s);
1226     for (i=0;i<ql;++i) state_putc('>',s);
1227     if (option(OPTSTUFFQUOTED))
1228       state_putc(' ',s);
1229     state_putc('\n',s);
1230     return;
1231   }
1232
1233   pos=line+ql+width;
1234   oldpos=line+ql;
1235   if (ql>0 && ISBLANK(*oldpos)) ++oldpos;
1236
1237   /* fprintf(stderr,"oldpos = %p line+len = %p\n",oldpos,line+len); */
1238
1239   for (;oldpos<line+len;pos+=width) {
1240     /* fprintf(stderr,"outer for loop\n"); */
1241     if (pos<line+len) { /* only search a new position when we're not over the end of the string w/ pos */
1242       /* fprintf(stderr,"if 1\n"); */
1243       if (*pos == ' ') {
1244         /* fprintf(stderr,"if 2: good luck! found a space\n"); */
1245         *pos = '\0';
1246         ++pos;
1247       } else {
1248         /* fprintf(stderr,"if 2: else\n"); */
1249         char * save = pos;
1250         while (pos>=oldpos && !isspace(*pos)) {
1251           /* fprintf(stderr,"pos(%p) > oldpos(%p)\n",pos,oldpos); */
1252           --pos;
1253         }
1254         if (pos < oldpos) {
1255           /* fprintf(stderr,"wow, no space found, searching the other direction\n"); */
1256           pos = save;
1257           while (pos < line+len && *pos && !isspace(*pos)) {
1258             /* fprintf(stderr,"pos(%p) < line+len(%p)\n",pos,line+len); */
1259             ++pos;
1260           }
1261           /* fprintf(stderr,"found a space pos = %p\n",pos); */
1262         }
1263         *pos = '\0';
1264         ++pos;
1265       }
1266     } else {
1267       /* fprintf(stderr,"if 1 else\n"); */
1268     }
1269     if (s->prefix)
1270       state_puts(s->prefix,s);
1271     for (i=0;i<ql;++i)
1272       state_putc('>',s);
1273     if (option(OPTSTUFFQUOTED) && (ql>0 || s->prefix)) state_putc(' ',s);
1274     state_puts(oldpos,s);
1275     /* fprintf(stderr,"print_flowed_line: `%s'\n",oldpos); */
1276     if (pos<line+len)
1277       state_putc(' ',s);
1278     state_putc('\n',s);
1279     oldpos = pos;
1280   }
1281   /*state_puts(line,s);
1282   state_putc('\n',s);*/
1283 }
1284
1285 static void text_plain_flowed_handler (BODY *a, STATE *s)
1286 {
1287   int bytes = a->length;
1288   char buf[LONG_STRING];
1289   char * curline = strdup("");
1290   char * t;
1291   unsigned int curline_len = 1;
1292   unsigned int quotelevel = 0, newql = 0;
1293   int append_next_line = 0;
1294   int first_line = 1;
1295
1296   while (bytes > 0 && fgets(buf,sizeof(buf),s->fpin)) {
1297
1298     /* fprintf(stderr,"read `%s'",buf); */
1299     bytes -= strlen(buf);
1300
1301     newql = get_quote_level(buf);
1302
1303     if ((t=strrchr(buf,'\n')) || (t=strrchr(buf,'\r'))) {
1304       *t = '\0';
1305       if (strlen(curline)>0 && curline[strlen(curline)-1]==' ' && newql==quotelevel && strcmp(curline+quotelevel,"-- ")!=0) {
1306         if (buf[newql]==' ')
1307           curline[strlen(curline)-1] = '\0';
1308
1309         curline = realloc(curline,curline_len+strlen(buf));
1310         if (curline_len == 1) *curline = '\0';
1311         curline_len+=strlen(buf);
1312         safe_strncat(curline,curline_len,buf+newql,strlen(buf+newql));
1313       } else {
1314         if (first_line) {
1315           first_line = 0;
1316         } else {
1317           print_flowed_line(curline,s,quotelevel);
1318         }
1319         FREE(&curline);
1320         curline_len = 1;
1321         curline = realloc(curline,curline_len+strlen(buf));
1322         if (curline_len == 1) *curline = '\0';
1323         curline_len+=strlen(buf);
1324         safe_strncat(curline,curline_len,buf,strlen(buf));
1325         quotelevel = newql;
1326       }
1327     } else {
1328       append_next_line = 1;
1329       /* @todo: add handling of very long lines */
1330     }
1331   }
1332   if (curline) {
1333     print_flowed_line(curline,s,quotelevel);
1334     FREE(&curline);
1335   }
1336 }
1337
1338
1339
1340 #define TXTHTML     1
1341 #define TXTPLAIN    2
1342 #define TXTENRICHED 3
1343
1344 static void alternative_handler (BODY *a, STATE *s)
1345 {
1346   BODY *choice = NULL;
1347   BODY *b;
1348   LIST *t;
1349   char buf[STRING];
1350   int type = 0;
1351   int mustfree = 0;
1352
1353   if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
1354       a->encoding == ENCUUENCODED)
1355   {
1356     struct stat st;
1357     mustfree = 1;
1358     fstat (fileno (s->fpin), &st);
1359     b = mutt_new_body ();
1360     b->length = (long) st.st_size;
1361     b->parts = mutt_parse_multipart (s->fpin,
1362                   mutt_get_parameter ("boundary", a->parameter),
1363                   (long) st.st_size, ascii_strcasecmp ("digest", a->subtype) == 0);
1364   }
1365   else
1366     b = a;
1367
1368   a = b;
1369
1370   /* First, search list of prefered types */
1371   t = AlternativeOrderList;
1372   while (t && !choice)
1373   {
1374     char *c;
1375     int btlen;  /* length of basetype */
1376     int wild;   /* do we have a wildcard to match all subtypes? */
1377
1378     c = strchr (t->data, '/');
1379     if (c)
1380     {
1381       wild = (c[1] == '*' && c[2] == 0);
1382       btlen = c - t->data;
1383     }
1384     else
1385     {
1386       wild = 1;
1387       btlen = mutt_strlen (t->data);
1388     }
1389
1390     if (a && a->parts) 
1391       b = a->parts;
1392     else
1393       b = a;
1394     while (b)
1395     {
1396       const char *bt = TYPE(b);
1397       if (!ascii_strncasecmp (bt, t->data, btlen) && bt[btlen] == 0)
1398       {
1399         /* the basetype matches */
1400         if (wild || !ascii_strcasecmp (t->data + btlen + 1, b->subtype))
1401         {
1402           choice = b;
1403         }
1404       }
1405       b = b->next;
1406     }
1407     t = t->next;
1408   }
1409
1410   /* Next, look for an autoviewable type */
1411   if (!choice)
1412   {
1413     if (a && a->parts) 
1414       b = a->parts;
1415     else
1416       b = a;
1417     while (b)
1418     {
1419       snprintf (buf, sizeof (buf), "%s/%s", TYPE (b), b->subtype);
1420       if (mutt_is_autoview (b, buf))
1421       {
1422         rfc1524_entry *entry = rfc1524_new_entry ();
1423
1424         if (rfc1524_mailcap_lookup (b, buf, entry, M_AUTOVIEW))
1425         {
1426           choice = b;
1427         }
1428         rfc1524_free_entry (&entry);
1429       }
1430       b = b->next;
1431     }
1432   }
1433
1434   /* Then, look for a text entry */
1435   if (!choice)
1436   {
1437     if (a && a->parts) 
1438       b = a->parts;
1439     else
1440       b = a;
1441     while (b)
1442     {
1443       if (b->type == TYPETEXT)
1444       {
1445         if (! ascii_strcasecmp ("plain", b->subtype) && type <= TXTPLAIN)
1446         {
1447           choice = b;
1448           type = TXTPLAIN;
1449         }
1450         else if (! ascii_strcasecmp ("enriched", b->subtype) && type <= TXTENRICHED)
1451         {
1452           choice = b;
1453           type = TXTENRICHED;
1454         }
1455         else if (! ascii_strcasecmp ("html", b->subtype) && type <= TXTHTML)
1456         {
1457           choice = b;
1458           type = TXTHTML;
1459         }
1460       }
1461       b = b->next;
1462     }
1463   }
1464
1465   /* Finally, look for other possibilities */
1466   if (!choice)
1467   {
1468     if (a && a->parts) 
1469       b = a->parts;
1470     else
1471       b = a;
1472     while (b)
1473     {
1474       if (mutt_can_decode (b))
1475         choice = b;
1476       b = b->next;
1477     }
1478   }
1479
1480   if (choice)
1481   {
1482     if (s->flags & M_DISPLAY && !option (OPTWEED))
1483     {
1484       fseek (s->fpin, choice->hdr_offset, 0);
1485       mutt_copy_bytes(s->fpin, s->fpout, choice->offset-choice->hdr_offset);
1486     }
1487     mutt_body_handler (choice, s);
1488   }
1489   else if (s->flags & M_DISPLAY)
1490   {
1491     /* didn't find anything that we could display! */
1492     state_mark_attach (s);
1493     state_puts(_("[-- Error:  Could not display any parts of Multipart/Alternative! --]\n"), s);
1494   }
1495
1496   if (mustfree)
1497     mutt_free_body(&a);
1498 }
1499
1500 /* handles message/rfc822 body parts */
1501 void message_handler (BODY *a, STATE *s)
1502 {
1503   struct stat st;
1504   BODY *b;
1505   long off_start;
1506
1507   off_start = ftell (s->fpin);
1508   if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE || 
1509       a->encoding == ENCUUENCODED)
1510   {
1511     fstat (fileno (s->fpin), &st);
1512     b = mutt_new_body ();
1513     b->length = (long) st.st_size;
1514     b->parts = mutt_parse_messageRFC822 (s->fpin, b);
1515   }
1516   else
1517     b = a;
1518
1519   if (b->parts)
1520   {
1521     mutt_copy_hdr (s->fpin, s->fpout, off_start, b->parts->offset,
1522         (((s->flags & M_WEED) || ((s->flags & (M_DISPLAY|M_PRINTING)) && option (OPTWEED))) ? (CH_WEED | CH_REORDER) : 0) |
1523         (s->prefix ? CH_PREFIX : 0) | CH_DECODE | CH_FROM, s->prefix);
1524
1525     if (s->prefix)
1526       state_puts (s->prefix, s);
1527     state_putc ('\n', s);
1528
1529     mutt_body_handler (b->parts, s);
1530   }
1531
1532   if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
1533       a->encoding == ENCUUENCODED)
1534     mutt_free_body (&b);
1535 }
1536
1537 /* returns 1 if decoding the attachment will produce output */
1538 int mutt_can_decode (BODY *a)
1539 {
1540   char type[STRING];
1541
1542   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
1543   if (mutt_is_autoview (a, type))
1544     return (rfc1524_mailcap_lookup (a, type, NULL, M_AUTOVIEW));
1545   else if (a->type == TYPETEXT)
1546     return (1);
1547   else if (a->type == TYPEMESSAGE)
1548     return (1);
1549   else if (a->type == TYPEMULTIPART)
1550   {
1551     BODY *p;
1552
1553     if (WithCrypto)
1554     {
1555       if (ascii_strcasecmp (a->subtype, "signed") == 0 ||
1556           ascii_strcasecmp (a->subtype, "encrypted") == 0)
1557         return (1);
1558     }
1559
1560     for (p = a->parts; p; p = p->next)
1561     {
1562       if (mutt_can_decode (p))
1563         return (1);
1564     }
1565     
1566   }
1567   else if (WithCrypto && a->type == TYPEAPPLICATION)
1568   {
1569     if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp(a))
1570       return (1);
1571     if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(a))
1572       return (1);
1573   }
1574
1575   return (0);
1576 }
1577
1578 void multipart_handler (BODY *a, STATE *s)
1579 {
1580   BODY *b, *p;
1581   char length[5];
1582   struct stat st;
1583   int count;
1584
1585   if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
1586       a->encoding == ENCUUENCODED)
1587   {
1588     fstat (fileno (s->fpin), &st);
1589     b = mutt_new_body ();
1590     b->length = (long) st.st_size;
1591     b->parts = mutt_parse_multipart (s->fpin,
1592                   mutt_get_parameter ("boundary", a->parameter),
1593                   (long) st.st_size, ascii_strcasecmp ("digest", a->subtype) == 0);
1594   }
1595   else
1596     b = a;
1597
1598   for (p = b->parts, count = 1; p; p = p->next, count++)
1599   {
1600     if (s->flags & M_DISPLAY)
1601     {
1602       state_mark_attach (s);
1603       state_printf (s, _("[-- Attachment #%d"), count);
1604       if (p->description || p->filename || p->form_name)
1605       {
1606         state_puts (": ", s);
1607         state_puts (p->description ? p->description :
1608                     p->filename ? p->filename : p->form_name, s);
1609       }
1610       state_puts (" --]\n", s);
1611
1612       mutt_pretty_size (length, sizeof (length), p->length);
1613       
1614       state_mark_attach (s);
1615       state_printf (s, _("[-- Type: %s/%s, Encoding: %s, Size: %s --]\n"),
1616                     TYPE (p), p->subtype, ENCODING (p->encoding), length);
1617       if (!option (OPTWEED))
1618       {
1619         fseek (s->fpin, p->hdr_offset, 0);
1620         mutt_copy_bytes(s->fpin, s->fpout, p->offset-p->hdr_offset);
1621       }
1622       else
1623         state_putc ('\n', s);
1624     }
1625     else
1626     {
1627       if (p->description && mutt_can_decode (p))
1628         state_printf (s, "Content-Description: %s\n", p->description);
1629
1630       if (p->form_name)
1631         state_printf(s, "%s: \n", p->form_name);
1632
1633     }
1634     mutt_body_handler (p, s);
1635     state_putc ('\n', s);
1636     if ((s->flags & M_REPLYING)
1637         && (option (OPTINCLUDEONLYFIRST)) && (s->flags & M_FIRSTDONE))
1638       break;
1639   }
1640
1641   if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE ||
1642       a->encoding == ENCUUENCODED)
1643     mutt_free_body (&b);
1644 }
1645
1646 void autoview_handler (BODY *a, STATE *s)
1647 {
1648   rfc1524_entry *entry = rfc1524_new_entry ();
1649   char buffer[LONG_STRING];
1650   char type[STRING];
1651   char command[LONG_STRING];
1652   char tempfile[_POSIX_PATH_MAX] = "";
1653   char *fname;
1654   FILE *fpin = NULL;
1655   FILE *fpout = NULL;
1656   FILE *fperr = NULL;
1657   int piped = FALSE;
1658   pid_t thepid;
1659
1660   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
1661   rfc1524_mailcap_lookup (a, type, entry, M_AUTOVIEW);
1662
1663   fname = safe_strdup (a->filename);
1664   mutt_sanitize_filename (fname, 1);
1665   rfc1524_expand_filename (entry->nametemplate, fname, tempfile, sizeof (tempfile));
1666   FREE (&fname);
1667
1668   if (entry->command)
1669   {
1670     strfcpy (command, entry->command, sizeof (command));
1671
1672     /* rfc1524_expand_command returns 0 if the file is required */
1673     piped = rfc1524_expand_command (a, tempfile, type, command, sizeof (command));
1674
1675     if (s->flags & M_DISPLAY)
1676     {
1677       state_mark_attach (s);
1678       state_printf (s, _("[-- Autoview using %s --]\n"), command);
1679       mutt_message(_("Invoking autoview command: %s"),command);
1680     }
1681
1682     if ((fpin = safe_fopen (tempfile, "w+")) == NULL)
1683     {
1684       mutt_perror ("fopen");
1685       rfc1524_free_entry (&entry);
1686       return;
1687     }
1688     
1689     mutt_copy_bytes (s->fpin, fpin, a->length);
1690
1691     if(!piped)
1692     {
1693       safe_fclose (&fpin);
1694       thepid = mutt_create_filter (command, NULL, &fpout, &fperr);
1695     }
1696     else
1697     {
1698       unlink (tempfile);
1699       fflush (fpin);
1700       rewind (fpin);
1701       thepid = mutt_create_filter_fd (command, NULL, &fpout, &fperr,
1702                                       fileno(fpin), -1, -1);
1703     }
1704
1705     if (thepid < 0)
1706     {
1707       mutt_perror _("Can't create filter");
1708       if (s->flags & M_DISPLAY)
1709       {
1710         state_mark_attach (s);
1711         state_printf (s, _("[-- Can't run %s. --]\n"), command);
1712       }
1713       goto bail;
1714     }
1715     
1716     if (s->prefix)
1717     {
1718       while (fgets (buffer, sizeof(buffer), fpout) != NULL)
1719       {
1720         state_puts (s->prefix, s);
1721         state_puts (buffer, s);
1722       }
1723       /* check for data on stderr */
1724       if (fgets (buffer, sizeof(buffer), fperr)) 
1725       {
1726         if (s->flags & M_DISPLAY)
1727         {
1728           state_mark_attach (s);
1729           state_printf (s, _("[-- Autoview stderr of %s --]\n"), command);
1730         }
1731
1732         state_puts (s->prefix, s);
1733         state_puts (buffer, s);
1734         while (fgets (buffer, sizeof(buffer), fperr) != NULL)
1735         {
1736           state_puts (s->prefix, s);
1737           state_puts (buffer, s);
1738         }
1739       }
1740     }
1741     else
1742     {
1743       mutt_copy_stream (fpout, s->fpout);
1744       /* Check for stderr messages */
1745       if (fgets (buffer, sizeof(buffer), fperr))
1746       {
1747         if (s->flags & M_DISPLAY)
1748         {
1749           state_mark_attach (s);
1750           state_printf (s, _("[-- Autoview stderr of %s --]\n"), 
1751                         command);
1752         }
1753         
1754         state_puts (buffer, s);
1755         mutt_copy_stream (fperr, s->fpout);
1756       }
1757     }
1758
1759   bail:
1760     safe_fclose (&fpout);
1761     safe_fclose (&fperr);
1762
1763     mutt_wait_filter (thepid);
1764     if (piped)
1765       safe_fclose (&fpin);
1766     else
1767       mutt_unlink (tempfile);
1768
1769     if (s->flags & M_DISPLAY) 
1770       mutt_clear_error ();
1771   }
1772   rfc1524_free_entry (&entry);
1773 }
1774
1775 static void external_body_handler (BODY *b, STATE *s)
1776 {
1777   const char *access_type;
1778   const char *expiration;
1779   time_t expire;
1780
1781   access_type = mutt_get_parameter ("access-type", b->parameter);
1782   if (!access_type)
1783   {
1784     if (s->flags & M_DISPLAY)
1785     {
1786       state_mark_attach (s);
1787       state_puts (_("[-- Error: message/external-body has no access-type parameter --]\n"), s);
1788     }
1789     return;
1790   }
1791
1792   expiration = mutt_get_parameter ("expiration", b->parameter);
1793   if (expiration)
1794     expire = mutt_parse_date (expiration, NULL);
1795   else
1796     expire = -1;
1797
1798   if (!ascii_strcasecmp (access_type, "x-mutt-deleted"))
1799   {
1800     if (s->flags & (M_DISPLAY|M_PRINTING))
1801     {
1802       char *length;
1803       char pretty_size[10];
1804       
1805       state_mark_attach (s);
1806       state_printf (s, _("[-- This %s/%s attachment "),
1807                TYPE(b->parts), b->parts->subtype);
1808       length = mutt_get_parameter ("length", b->parameter);
1809       if (length)
1810       {
1811         mutt_pretty_size (pretty_size, sizeof (pretty_size),
1812                           strtol (length, NULL, 10));
1813         state_printf (s, _("(size %s bytes) "), pretty_size);
1814       }
1815       state_puts (_("has been deleted --]\n"), s);
1816
1817       if (expire != -1)
1818       {
1819         state_mark_attach (s);
1820         state_printf (s, _("[-- on %s --]\n"), expiration);
1821       }
1822       if (b->parts->filename)
1823       {
1824         state_mark_attach (s);
1825         state_printf (s, _("[-- name: %s --]\n"), b->parts->filename);
1826       }
1827
1828       mutt_copy_hdr (s->fpin, s->fpout, ftell (s->fpin), b->parts->offset,
1829                      (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
1830                      CH_DECODE , NULL);
1831     }
1832   }
1833   else if(expiration && expire < time(NULL))
1834   {
1835     if (s->flags & M_DISPLAY)
1836     {
1837       state_mark_attach (s);
1838       state_printf (s, _("[-- This %s/%s attachment is not included, --]\n"),
1839                     TYPE(b->parts), b->parts->subtype);
1840       state_attach_puts (_("[-- and the indicated external source has --]\n"
1841                            "[-- expired. --]\n"), s);
1842
1843       mutt_copy_hdr(s->fpin, s->fpout, ftell (s->fpin), b->parts->offset,
1844                     (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
1845                     CH_DECODE, NULL);
1846     }
1847   }
1848   else
1849   {
1850     if (s->flags & M_DISPLAY)
1851     {
1852       state_mark_attach (s);
1853       state_printf (s,
1854                     _("[-- This %s/%s attachment is not included, --]\n"),
1855                     TYPE (b->parts), b->parts->subtype);
1856       state_mark_attach (s);
1857       state_printf (s, 
1858                     _("[-- and the indicated access-type %s is unsupported --]\n"),
1859                     access_type);
1860       mutt_copy_hdr (s->fpin, s->fpout, ftell (s->fpin), b->parts->offset,
1861                      (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
1862                      CH_DECODE , NULL);
1863     }
1864   }
1865 }
1866
1867 void mutt_decode_attachment (BODY *b, STATE *s)
1868 {
1869   int istext = mutt_is_text_part (b);
1870   iconv_t cd = (iconv_t)(-1);
1871
1872   Quotebuf[0] = '\0';
1873
1874   if (istext)
1875   {
1876     if(s->flags & M_CHARCONV)
1877     {
1878       char *charset = mutt_get_parameter ("charset", b->parameter);
1879       if (!option (OPTSTRICTMIME) && !charset)
1880         charset = mutt_get_first_charset (AssumedCharset);
1881       if (charset && Charset)
1882         cd = mutt_iconv_open (Charset, charset, M_ICONV_HOOK_FROM);
1883     }
1884     else
1885     {
1886       if (b->file_charset)
1887         cd = mutt_iconv_open (Charset, b->file_charset, M_ICONV_HOOK_FROM);
1888     }
1889   }
1890
1891   fseek (s->fpin, b->offset, 0);
1892   switch (b->encoding)
1893   {
1894     case ENCQUOTEDPRINTABLE:
1895       mutt_decode_quoted (s, b->length, istext, cd);
1896       break;
1897     case ENCBASE64:
1898       mutt_decode_base64 (s, b->length, istext, cd);
1899       break;
1900     case ENCUUENCODED:
1901       mutt_decode_uuencoded (s, b->length, istext, cd);
1902       break;
1903     default:
1904       mutt_decode_xbit (s, b->length, istext, cd);
1905       break;
1906   }
1907
1908   if (cd != (iconv_t)(-1))
1909     iconv_close (cd);
1910 }
1911
1912 void mutt_body_handler (BODY *b, STATE *s)
1913 {
1914   int decode = 0;
1915   int plaintext = 0;
1916   FILE *fp = NULL;
1917   char tempfile[_POSIX_PATH_MAX];
1918   handler_t handler = NULL;
1919   long tmpoffset = 0;
1920   size_t tmplength = 0;
1921   char type[STRING];
1922
1923   int oflags = s->flags;
1924   
1925   /* first determine which handler to use to process this part */
1926
1927   snprintf (type, sizeof (type), "%s/%s", TYPE (b), b->subtype);
1928   if (mutt_is_autoview (b, type))
1929   {
1930     rfc1524_entry *entry = rfc1524_new_entry ();
1931
1932     if (rfc1524_mailcap_lookup (b, type, entry, M_AUTOVIEW))
1933     {
1934       handler   = autoview_handler;
1935       s->flags &= ~M_CHARCONV;
1936     }
1937     rfc1524_free_entry (&entry);
1938   }
1939   else if (b->type == TYPETEXT)
1940   {
1941     if (ascii_strcasecmp ("plain", b->subtype) == 0)
1942     {
1943       /* avoid copying this part twice since removing the transfer-encoding is
1944        * the only operation needed.
1945        */
1946       if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b))
1947         handler = crypt_pgp_application_pgp_handler;
1948       else if (ascii_strcasecmp ("flowed", mutt_get_parameter ("format", b->parameter)) == 0)
1949         handler = text_plain_flowed_handler;
1950       else
1951         plaintext = 1;
1952     }
1953     else if (ascii_strcasecmp ("enriched", b->subtype) == 0)
1954       handler = text_enriched_handler;
1955     else /* text body type without a handler */
1956       plaintext = 1;
1957   }
1958   else if (b->type == TYPEMESSAGE)
1959   {
1960     if(mutt_is_message_type(b->type, b->subtype))
1961       handler = message_handler;
1962     else if (!ascii_strcasecmp ("delivery-status", b->subtype))
1963       plaintext = 1;
1964     else if (!ascii_strcasecmp ("external-body", b->subtype))
1965       handler = external_body_handler;
1966   }
1967   else if (b->type == TYPEMULTIPART)
1968   {
1969     char *p;
1970
1971     if (ascii_strcasecmp ("alternative", b->subtype) == 0)
1972       handler = alternative_handler;
1973     else if (WithCrypto && ascii_strcasecmp ("signed", b->subtype) == 0)
1974     {
1975       p = mutt_get_parameter ("protocol", b->parameter);
1976
1977       if (!p)
1978         mutt_error _("Error: multipart/signed has no protocol.");
1979       else if (s->flags & M_VERIFY)
1980         handler = mutt_signed_handler;
1981     }
1982     else if ((WithCrypto & APPLICATION_PGP)
1983              && mutt_strcasecmp ("encrypted", b->subtype) == 0)
1984     {
1985       p = mutt_get_parameter ("protocol", b->parameter);
1986
1987       if (!p)
1988         mutt_error _("Error: multipart/encrypted has no protocol parameter!");
1989       else if (ascii_strcasecmp ("application/pgp-encrypted", p) == 0)
1990         handler = crypt_pgp_encrypted_handler;
1991     }
1992
1993     if (!handler)
1994       handler = multipart_handler;
1995   }
1996   else if (WithCrypto && b->type == TYPEAPPLICATION)
1997   {
1998     if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b))
1999       handler = crypt_pgp_application_pgp_handler;
2000     if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(b))
2001       handler = crypt_smime_application_smime_handler;
2002   }
2003
2004
2005   if (plaintext || handler)
2006   {
2007     fseek (s->fpin, b->offset, 0);
2008
2009     /* see if we need to decode this part before processing it */
2010     if (b->encoding == ENCBASE64 || b->encoding == ENCQUOTEDPRINTABLE ||
2011         b->encoding == ENCUUENCODED || plaintext || 
2012         mutt_is_text_part (b))                          /* text subtypes may
2013                                                          * require character
2014                                                          * set conversion even
2015                                                          * with 8bit encoding.
2016                                                          */
2017     {
2018       int origType = b->type;
2019       char *savePrefix = NULL;
2020
2021       if (!plaintext)
2022       {
2023         /* decode to a tempfile, saving the original destination */
2024         fp = s->fpout;
2025         mutt_mktemp (tempfile);
2026         if ((s->fpout = safe_fopen (tempfile, "w")) == NULL)
2027         {
2028           mutt_error _("Unable to open temporary file!");
2029           goto bail;
2030         }
2031         /* decoding the attachment changes the size and offset, so save a copy
2032          * of the "real" values now, and restore them after processing
2033          */
2034         tmplength = b->length;
2035         tmpoffset = b->offset;
2036
2037         /* if we are decoding binary bodies, we don't want to prefix each
2038          * line with the prefix or else the data will get corrupted.
2039          */
2040         savePrefix = s->prefix;
2041         s->prefix = NULL;
2042
2043         decode = 1;
2044       }
2045       else
2046         b->type = TYPETEXT;
2047
2048       mutt_decode_attachment (b, s);
2049
2050       if (decode)
2051       {
2052         b->length = ftell (s->fpout);
2053         b->offset = 0;
2054         fclose (s->fpout);
2055
2056         /* restore final destination and substitute the tempfile for input */
2057         s->fpout = fp;
2058         fp = s->fpin;
2059         s->fpin = safe_fopen (tempfile, "r");
2060         unlink (tempfile);
2061
2062         /* restore the prefix */
2063         s->prefix = savePrefix;
2064       }
2065
2066       b->type = origType;
2067     }
2068
2069     /* process the (decoded) body part */
2070     if (handler)
2071     {
2072       handler (b, s);
2073
2074       if (decode)
2075       {
2076         b->length = tmplength;
2077         b->offset = tmpoffset;
2078
2079         /* restore the original source stream */
2080         fclose (s->fpin);
2081         s->fpin = fp;
2082       }
2083     }
2084     s->flags |= M_FIRSTDONE;
2085   }
2086   else if (s->flags & M_DISPLAY)
2087   {
2088     state_mark_attach (s);
2089     state_printf (s, _("[-- %s/%s is unsupported "), TYPE (b), b->subtype);
2090     if (!option (OPTVIEWATTACH))
2091     {
2092       if (km_expand_key (type, sizeof(type),
2093                         km_find_func (MENU_PAGER, OP_VIEW_ATTACHMENTS)))
2094         fprintf (s->fpout, _("(use '%s' to view this part)"), type);
2095       else
2096         fputs (_("(need 'view-attachments' bound to key!)"), s->fpout);
2097     }
2098     fputs (" --]\n", s->fpout);
2099   }
2100   
2101   bail:
2102   s->flags = oflags | (s->flags & M_FIRSTDONE);
2103 }