]> Pileus Git - ~andy/fetchmail/blob - unmime.c
Kill alloca().
[~andy/fetchmail] / unmime.c
1 /*
2  * MIME mail decoding.
3  *
4  * This module contains decoding routines for converting
5  * quoted-printable data into pure 8-bit data, in MIME
6  * formatted messages.
7  *
8  * By Henrik Storner <storner@image.dk>
9  *
10  * Configuration file support for fetchmail 4.3.8 by 
11  * Frank Damgaard <frda@post3.tele.dk>
12  * 
13  * For license terms, see the file COPYING in this directory.
14  */
15
16 #include "config.h"
17 #include <string.h>
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <ctype.h>
21 #include "fetchmail.h"
22 #include "i18n.h"
23
24 static unsigned char unhex(unsigned char c)
25 {
26   if ((c >= '0') && (c <= '9'))
27     return (c - '0');
28   else if ((c >= 'A') && (c <= 'F'))
29     return (c - 'A' + 10);
30   else if ((c >= 'a') && (c <= 'f'))
31     return (c - 'a' + 10);
32   else
33       return 16;        /* invalid hex character */
34 }
35
36 static int qp_char(unsigned char c1, unsigned char c2, unsigned char *c_out)
37 {
38   c1 = unhex(c1);
39   c2 = unhex(c2);
40
41   if ((c1 > 15) || (c2 > 15)) 
42     return 1;
43   else {
44     *c_out = 16*c1+c2;
45     return 0;
46   }
47 }
48
49
50 /*
51  * Routines to decode MIME QP-encoded headers, as per RFC 2047.
52  */
53
54 /* States of the decoding state machine */
55 #define S_COPY_PLAIN        0   /* Just copy, but watch for the QP flag */
56 #define S_SKIP_MIMEINIT     1   /* Get the encoding, and skip header */
57 #define S_COPY_MIME         2   /* Decode a sequence of coded characters */
58
59 static const char MIMEHDR_INIT[]  = "=?";       /* Start of coded sequence */
60 static const char MIMEHDR_END[]   = "?=";       /* End of coded sequence */
61
62 void UnMimeHeader(unsigned char *hdr)
63 {
64   /* Decode a buffer containing data encoded according to RFC
65    * 2047. This only handles content-transfer-encoding; conversion
66    * between character sets is not implemented.  In other words: We
67    * assume the charsets used can be displayed by your mail program
68    * without problems. 
69    */
70
71   /* Note: Decoding is done "in-situ", i.e. without using an
72    * additional buffer for temp. storage. This is possible, since the
73    * decoded string will always be shorter than the encoded string,
74    * due to the encoding scheme.
75    */
76
77   int  state = S_COPY_PLAIN;
78   unsigned char *p_in, *p_out, *p;
79   unsigned char enc = '\0';             /* initialization pacifies -Wall */
80   int  i;
81
82   /* Speed up in case this is not a MIME-encoded header */
83   p = strstr(hdr, MIMEHDR_INIT);
84   if (p == NULL)
85     return;   /* No MIME header */
86
87   /* Loop through the buffer.
88    *  p_in : Next char to be processed.
89    *  p_out: Where to put the next processed char
90    *  enc  : Encoding used (usually, 'q' = quoted-printable)
91    */
92   for (p_out = p_in = hdr; (*p_in); ) {
93     switch (state) {
94     case S_COPY_PLAIN:
95       p = strstr(p_in, MIMEHDR_INIT);
96       if (p == NULL) {
97         /* 
98          * No more coded data in buffer, 
99          * just move remainder into place. 
100          */
101         i = strlen(p_in);   /* How much left */
102         memmove(p_out, p_in, i);
103         p_in += i; p_out += i;
104       }
105       else {
106         /* MIME header init found at location p */
107         if (p > p_in) {
108           /* There are some uncoded chars at the beginning. */
109           i = (p - p_in);
110           memmove(p_out, p_in, i);
111           p_out += i;
112         }
113         p_in = (p + 2);
114         state = S_SKIP_MIMEINIT;
115       }
116       break;
117
118     case S_SKIP_MIMEINIT:
119       /* Mime type definition: "charset?encoding?" */
120       p = strchr(p_in, '?');
121       if (p != NULL) {
122         /* p_in .. (p-1) holds the charset */
123
124         /* *(p+1) is the transfer encoding, *(p+2) must be a '?' */
125         if (*(p+2) == '?') {
126           enc = tolower(*(p+1));
127           p_in = p+3;
128           state = S_COPY_MIME;
129         }
130         else
131           state = S_COPY_PLAIN;
132       }
133       else
134         state = S_COPY_PLAIN;   /* Invalid data */
135       break;
136
137     case S_COPY_MIME:
138       p = strstr(p_in, MIMEHDR_END);  /* Find end of coded data */
139       if (p == NULL) p = p_in + strlen(p_in);
140       for (; (p_in < p); ) {
141         /* Decode all encoded data */
142         if (enc == 'q') {
143           if (*p_in == '=') {
144             /* Decode one char qp-coded at (p_in+1) and (p_in+2) */
145             if (qp_char(*(p_in+1), *(p_in+2), p_out) == 0)
146               p_in += 3;
147             else {
148               /* Invalid QP data - pass through unchanged. */
149               *p_out = *p_in;
150               p_in++;
151             }
152           }
153           else if (*p_in == '_') {
154             /* 
155              * RFC 2047: '_' inside encoded word represents 0x20.
156              * NOT a space - always the value 0x20.
157              */
158             *p_out = 0x20;
159             p_in++;
160           }
161           else {
162             /* Copy unchanged */
163             *p_out = *p_in;
164             p_in++;
165           }
166           p_out++;
167         }
168         else if (enc == 'b') {
169           /* Decode base64 encoded data */
170           char delimsave;
171           int decoded_count;
172
173           delimsave = *p; *p = '\r';
174           decoded_count = from64tobits(p_out, p_in, 0);
175           *p = delimsave;
176           if (decoded_count > 0) 
177             p_out += decoded_count;            
178           p_in = p;
179         }
180         else {
181           /* Copy unchanged */
182           *p_out = *p_in;
183           p_in++;
184           p_out++;
185         }
186       }
187       if (*p_in)
188         p_in += 2;   /* Skip the MIMEHDR_END delimiter */
189
190       /* 
191        * We've completed decoding one encoded sequence. But another
192        * may follow immediately, in which case whitespace before the
193        * new MIMEHDR_INIT delimiter must be discarded.
194        * See if that is the case 
195        */
196       p = strstr(p_in, MIMEHDR_INIT);
197       state = S_COPY_PLAIN;
198       if (p != NULL) {
199         /*
200          * There is more MIME data later on. Is there
201          * whitespace  only before the delimiter? 
202          */
203         unsigned char *q;
204         int  wsp_only = 1;
205
206         for (q=p_in; (wsp_only && (q < p)); q++)
207           wsp_only = isspace(*q);
208
209         if (wsp_only) {
210           /* 
211            * Whitespace-only before the MIME delimiter. OK,
212            * just advance p_in to past the new MIMEHDR_INIT,
213            * and prepare to process the new MIME charset/encoding
214            * header.
215            */
216           p_in = p + sizeof(MIMEHDR_INIT) - 1;
217           state = S_SKIP_MIMEINIT;
218         }
219       }
220       break;
221     }
222   }
223
224   *p_out = '\0';
225 }
226
227
228
229 /*
230  * Routines for decoding body-parts of a message.
231  *
232  * Since the "fetch" part of fetchmail gets a message body
233  * one line at a time, we need to maintain some state variables
234  * across multiple invokations of the UnMimeBodyline() routine.
235  * The driver routine should call MimeBodyType() when all
236  * headers have been received, and then UnMimeBodyline() for
237  * every line in the message body.
238  *
239  */
240 #define S_BODY_DATA 0
241 #define S_BODY_HDR  1
242
243 /* 
244  * Flag indicating if we are currently processing 
245  * the headers or the body of a (multipart) message.
246  */
247 static int  BodyState = S_BODY_DATA;
248
249 /* 
250  * Flag indicating if we are in the process of decoding
251  * a quoted-printable body part.
252  */
253 static int  CurrEncodingIsQP = 0;
254 static int  CurrTypeNeedsDecode = 0;
255
256 /* 
257  * Delimiter for multipart messages. RFC 2046 states that this must
258  * NEVER be longer than 70 characters. Add 3 for the two hyphens
259  * at the beginning, and a terminating null.
260  */
261 #define MAX_DELIM_LEN 70
262 static unsigned char MultipartDelimiter[MAX_DELIM_LEN+3];
263
264
265 /* This string replaces the "Content-Transfer-Encoding: quoted-printable"
266  * string in all headers, including those in body-parts. The replacement
267  * must be no longer than the original string.
268  */
269 static const char ENC8BIT[] = "Content-Transfer-Encoding: 8bit";
270 static void SetEncoding8bit(unsigned char *XferEncOfs)
271 {
272   unsigned char *p;
273
274   if (XferEncOfs != NULL) {
275      memcpy(XferEncOfs, ENC8BIT, sizeof(ENC8BIT) - 1);
276
277      /* If anything left, in this header, replace with whitespace */
278      for (p=XferEncOfs+sizeof(ENC8BIT)-1; (*p >= ' '); p++) *p=' ';
279   }
280 }
281
282 static char *GetBoundary(char *CntType)
283 {
284   char *p1, *p2;
285   int flag;
286
287   /* Find the "boundary" delimiter. It must be preceded with a ';'
288    * and optionally some whitespace.
289    */
290   p1 = CntType;
291   do {
292     p2 = strchr(p1, ';'); 
293     if (p2)
294       for (p2++; isspace((unsigned char)*p2); p2++);
295
296     p1 = p2;
297   } while ((p1) && (strncasecmp(p1, "boundary", 8) != 0));
298
299   if (p1 == NULL)
300     /* No boundary delimiter */
301     return NULL;
302
303   /* Skip "boundary", whitespace and '='; check that we do have a '=' */
304   for (p1+=8, flag=0; (isspace((unsigned char)*p1) || (*p1 == '=')); p1++)
305     flag |= (*p1 == '=');
306   if (!flag)
307     return NULL;
308
309   /* Find end of boundary delimiter string */
310   if (*p1 == '\"') {
311     /* The delimiter is inside quotes */
312     p1++;
313     p2 = strchr(p1, '\"');
314     if (p2 == NULL)
315       return NULL;  /* No closing '"' !?! */
316   }
317   else {
318     /* There might be more text after the "boundary" string. */
319     p2 = strchr(p1, ';');  /* Safe - delimiter with ';' must be in quotes */
320   }
321
322   /* Zero-terminate the boundary string */
323   if (p2 != NULL)
324     *p2 = '\0';
325
326   return (p1 && strlen(p1)) ? p1 : NULL;
327 }
328
329
330 static int CheckContentType(char *CntType)
331 {
332   /*
333    * Static array of Content-Type's for which we will do
334    * quoted-printable decoding, if requested. 
335    * It is probably wise to do this only on known text-only types;
336    * be really careful if you change this.
337    */
338
339   static char *DecodedTypes[] = {
340     "text/",        /* Will match ALL content-type's starting with 'text/' */
341     "message/rfc822", 
342     NULL
343   };
344
345   char *p = CntType;
346   int i;
347
348   /* If no Content-Type header, it isn't MIME - don't touch it */
349   if (CntType == NULL) return 0;
350
351   /* Skip whitespace, if any */
352   for (; isspace((unsigned char)*p); p++) ;
353
354   for (i=0; 
355        (DecodedTypes[i] && 
356         (strncasecmp(p, DecodedTypes[i], strlen(DecodedTypes[i])))); 
357        i++) ;
358
359   return (DecodedTypes[i] != NULL);
360 }
361
362
363 /*
364  * This routine does three things:
365  * 1) It determines - based on the message headers - whether the
366  *    message body is a MIME message that may hold 8 bit data.
367  *    - A message that has a "quoted-printable" or "8bit" transfer 
368  *      encoding is assumed to contain 8-bit data (when decoded).
369  *    - A multipart message is assumed to contain 8-bit data
370  *      when decoded (there might be quoted-printable body-parts).
371  *    - All other messages are assumed NOT to include 8-bit data.
372  * 2) It determines the delimiter-string used in multi-part message
373  *    bodies.
374  * 3) It sets the initial values of the CurrEncodingIsQP, 
375  *    CurrTypeNeedsDecode, and BodyState variables, from the header 
376  *    contents.
377  *
378  * The return value is a bitmask.
379  */
380 int MimeBodyType(unsigned char *hdrs, int WantDecode)
381 {
382     unsigned char *NxtHdr = hdrs;
383     unsigned char *XferEnc, *XferEncOfs, *CntType, *MimeVer, *p;
384     int  HdrsFound = 0;     /* We only look for three headers */
385     int  BodyType;          /* Return value */ 
386
387     /* Setup for a standard (no MIME, no QP, 7-bit US-ASCII) message */
388     MultipartDelimiter[0] = '\0';
389     CurrEncodingIsQP = CurrTypeNeedsDecode = 0;
390     BodyState = S_BODY_DATA;
391     BodyType = 0;
392
393     /* Just in case ... */
394     if (hdrs == NULL)
395         return BodyType;
396
397     XferEnc = XferEncOfs = CntType = MimeVer = NULL;
398
399     do {
400         if (strncasecmp("Content-Transfer-Encoding:", NxtHdr, 26) == 0) {
401             XferEncOfs = NxtHdr;
402             p = nxtaddr(NxtHdr);
403             if (p != NULL) {
404                 xfree(XferEnc);
405                 XferEnc = xstrdup(p);
406                 HdrsFound++;
407             }
408         }
409         else if (strncasecmp("Content-Type:", NxtHdr, 13) == 0) {
410             /*
411              * This one is difficult. We cannot use the standard
412              * nxtaddr() routine, since the boundary-delimiter is
413              * (probably) enclosed in quotes - and thus appears
414              * as an rfc822 comment, and nxtaddr() "eats" up any
415              * spaces in the delimiter. So, we have to do this
416              * by hand.
417              */
418
419             /* Skip the "Content-Type:" part and whitespace after it */
420             for (NxtHdr += 13; ((*NxtHdr == ' ') || (*NxtHdr == '\t')); NxtHdr++);
421
422             /* 
423              * Get the full value of the Content-Type header;
424              * it might span multiple lines. So search for
425              * a newline char, but ignore those that have a
426              * have a TAB or space just after the NL (continued
427              * lines).
428              */
429             p = NxtHdr-1;
430             do {
431                 p=strchr((p+1),'\n'); 
432             } while ( (p != NULL) && ((*(p+1) == '\t') || (*(p+1) == ' ')) );
433             if (p == NULL) p = NxtHdr + strlen(NxtHdr);
434
435             xfree(CntType);
436             CntType = xmalloc(p-NxtHdr+1);
437             strlcpy(CntType, NxtHdr, p-NxtHdr+1);
438             HdrsFound++;
439         }
440         else if (strncasecmp("MIME-Version:", NxtHdr, 13) == 0) {
441             p = nxtaddr(NxtHdr);
442             if (p != NULL) {
443                 xfree(MimeVer);
444                 MimeVer = xstrdup(p);
445                 HdrsFound++;
446             }
447         }
448
449         NxtHdr = (strchr(NxtHdr, '\n'));
450         if (NxtHdr != NULL) NxtHdr++;
451     } while ((NxtHdr != NULL) && (*NxtHdr) && (HdrsFound != 3));
452
453
454     /* Done looking through the headers, now check what they say */
455     if ((MimeVer != NULL) && (strcmp(MimeVer, "1.0") == 0)) {
456
457         CurrTypeNeedsDecode = CheckContentType(CntType);
458
459         /* Check Content-Type to see if this is a multipart message */
460         if ( (CntType != NULL) &&
461                 ((strncasecmp(CntType, "multipart/mixed", 16) == 0) ||
462                  (strncasecmp(CntType, "message/", 8) == 0)) ) {
463
464             char *p1 = GetBoundary(CntType);
465
466             if (p1 != NULL) {
467                 /* The actual delimiter is "--" followed by 
468                    the boundary string */
469                 strcpy(MultipartDelimiter, "--");
470                 strlcat(MultipartDelimiter, p1, sizeof(MultipartDelimiter));
471                 MultipartDelimiter[sizeof(MultipartDelimiter)-1] = '\0';
472                 BodyType = (MSG_IS_8BIT | MSG_NEEDS_DECODE);
473             }
474         }
475
476         /* 
477          * Check Content-Transfer-Encoding, but
478          * ONLY for non-multipart messages (BodyType == 0).
479          */
480         if ((XferEnc != NULL) && (BodyType == 0)) {
481             if (strcasecmp(XferEnc, "quoted-printable") == 0) {
482                 CurrEncodingIsQP = 1;
483                 BodyType = (MSG_IS_8BIT | MSG_NEEDS_DECODE);
484                 if (WantDecode && CurrTypeNeedsDecode) {
485                     SetEncoding8bit(XferEncOfs);
486                 }
487             }
488             else if (strcasecmp(XferEnc, "7bit") == 0) {
489                 CurrEncodingIsQP = 0;
490                 BodyType = (MSG_IS_7BIT);
491             }
492             else if (strcasecmp(XferEnc, "8bit") == 0) {
493                 CurrEncodingIsQP = 0;
494                 BodyType = (MSG_IS_8BIT);
495             }
496         }
497
498     }
499
500     xfree(XferEnc);
501     xfree(CntType);
502     xfree(MimeVer);
503
504     return BodyType;
505 }
506
507
508 /*
509  * Decode one line of data containing QP data.
510  * Return flag set if this line ends with a soft line-break.
511  * 'bufp' is modified to point to the end of the output buffer.
512  */
513 static int DoOneQPLine(unsigned char **bufp, flag delimited, flag issoftline)
514 {
515   unsigned char *buf = *bufp;
516   unsigned char *p_in, *p_out, *p;
517   int n;
518   int ret = 0;
519
520   /*
521    * Special case: line consists of a single =2E and messages are 
522    * dot-terminated.  Line has to be dot-stuffed after decoding.
523    */
524   if (delimited && !issoftline && buf[0]=='=' && !strncmp(*bufp, "=2E\r\n", 5))
525   {
526       strcpy(buf, "..\r\n");
527       *bufp += 5;
528       return(FALSE);
529   }
530
531   p_in = buf;
532   if (delimited && issoftline && (strncmp(buf, "..", 2) == 0))
533     p_in++;
534
535   for (p_out = buf; (*p_in); ) {
536     p = strchr(p_in, '=');
537     if (p == NULL) {
538       /* No more QP data, just move remainder into place */
539       n = strlen(p_in);
540       memmove(p_out, p_in, n);
541       p_in += n; p_out += n;
542     }
543     else {
544       if (p > p_in) {
545         /* There are some uncoded chars at the beginning. */
546         n = (p - p_in);
547         memmove(p_out, p_in, n);
548         p_out += n;
549       }
550               
551       switch (*(p+1)) {
552       case '\0': case '\r': case '\n':
553         /* Soft line break, skip '=' */
554         p_in = p+1; 
555         if (*p_in == '\r') p_in++;
556         if (*p_in == '\n') p_in++;
557         ret = 1;
558         break;
559
560       default:
561         /* There is a QP encoded byte */
562         if (qp_char(*(p+1), *(p+2), p_out) == 0) {
563           p_in = p+3;
564         }
565         else {
566           /* Invalid QP data - pass through unchanged. */
567           *p_out = '=';
568           p_in = p+1;
569         }
570         p_out++;
571         break;
572       }
573     }
574   }
575
576   *p_out = '\0';
577   *bufp = p_out;
578   return ret;
579 }
580
581
582 /* This is called once per line in the message body.  We need to scan
583  * all lines in the message body for the multipart delimiter string,
584  * and handle any body-part headers in such messages (these can toggle
585  * qp-decoding on and off).
586  *
587  * Note: Messages that are NOT multipart-messages go through this
588  * routine quickly, since BodyState will always be S_BODY_DATA,
589  * and MultipartDelimiter is NULL.
590  *
591  * Return flag set if this line ends with a soft line-break.
592  * 'bufp' is modified to point to the end of the output buffer.
593  */
594
595 int UnMimeBodyline(unsigned char **bufp, flag delimited, flag softline)
596 {
597   unsigned char *buf = *bufp;
598   int ret = 0;
599
600   switch (BodyState) {
601   case S_BODY_HDR:
602     UnMimeHeader(buf);   /* Headers in body-parts can be encoded, too! */
603     if ((*buf == '\0') || (*buf == '\n') || (strcmp(buf, "\r\n") == 0)) {
604       BodyState = S_BODY_DATA;
605     } 
606     else if (strncasecmp("Content-Transfer-Encoding:", buf, 26) == 0) {
607       char *XferEnc;
608
609       XferEnc = nxtaddr(buf);
610       if ((XferEnc != NULL) && (strcasecmp(XferEnc, "quoted-printable") == 0)) {
611         CurrEncodingIsQP = 1;
612
613         /*
614          * Hmm ... we cannot be really sure that CurrTypeNeedsDecode
615          * has been set - we may not have seen the Content-Type header
616          * yet. But *usually* the Content-Type header comes first, so
617          * this will work. And there is really no way of doing it 
618          * "right" as long as we stick with the line-by-line processing.
619          */
620         if (CurrTypeNeedsDecode)
621             SetEncoding8bit(buf);
622       }
623     }
624     else if (strncasecmp("Content-Type:", buf, 13) == 0) {
625       CurrTypeNeedsDecode = CheckContentType(nxtaddr(buf));
626     }
627
628     *bufp = (buf + strlen(buf));
629     break;
630
631   case S_BODY_DATA:
632     if ((*MultipartDelimiter) && 
633         (strncmp(buf, MultipartDelimiter, strlen(MultipartDelimiter)) == 0)) {
634       BodyState = S_BODY_HDR;
635       CurrEncodingIsQP = CurrTypeNeedsDecode = 0;
636     }
637
638     if (CurrEncodingIsQP && CurrTypeNeedsDecode) 
639       ret = DoOneQPLine(bufp, delimited, softline);
640     else
641      *bufp = (buf + strlen(buf));
642     break;
643   }
644
645   return ret;
646 }
647
648
649 #ifdef STANDALONE
650 #include <stdio.h>
651 #include <unistd.h>
652
653 char *program_name = "unmime";
654 int outlevel = 0;
655
656 #define BUFSIZE_INCREMENT 4096
657
658 #ifdef DEBUG
659 #define DBG_FWRITE(B,L,BS,FD) fwrite(B, L, BS, FD)
660 #else
661 #define DBG_FWRITE(B,L,BS,FD)
662 #endif
663
664 int main(int argc, char *argv[])
665 {
666   unsigned int BufSize;
667   unsigned char *buffer, *buf_p;
668   int nl_count, i, bodytype;
669
670 #ifdef DEBUG
671   pid_t pid;
672   FILE *fd_orig, *fd_conv;
673   char fnam[100];
674
675   /* we don't need snprintf here, but for consistency, we'll use it */
676   pid = getpid();
677   snprintf(fnam, sizeof(fnam), "/tmp/i_unmime.%lx", (long)pid);
678   fd_orig = fopen(fnam, "w");
679   snprintf(fnam, sizeof(fnam), "/tmp/o_unmime.%lx", (long)pid);
680   fd_conv = fopen(fnam, "w");
681 #endif
682
683   BufSize = BUFSIZE_INCREMENT;    /* Initial size of buffer */
684   buf_p = buffer = (unsigned char *) xmalloc(BufSize);
685   nl_count = 0;
686
687   do {
688     i = fread(buf_p, 1, 1, stdin);
689     switch (*buf_p) {
690      case '\n':
691        nl_count++;
692        break;
693
694      case '\r':
695        break;
696
697      default:
698        nl_count = 0;
699        break;
700     }
701
702     buf_p++;
703     if ((buf_p - buffer) == BufSize) {
704        /* Buffer is full! Get more room. */
705        buffer = xrealloc(buffer, BufSize+BUFSIZE_INCREMENT);
706        buf_p = buffer + BufSize;
707        BufSize += BUFSIZE_INCREMENT;
708     }
709   } while ((i > 0) && (nl_count < 2));
710
711   *buf_p = '\0';
712   DBG_FWRITE(buffer, strlen(buffer), 1, fd_orig);
713
714   UnMimeHeader(buffer);
715   bodytype = MimeBodyType(buffer, 1);
716
717   i = strlen(buffer);
718   fwrite(buffer, i, 1, stdout);
719   DBG_FWRITE(buffer, i, 1, fd_conv);
720   
721   do {
722      buf_p = (buffer - 1);
723      do {
724         buf_p++;
725         i = fread(buf_p, 1, 1, stdin);
726      } while ((i == 1) && (*buf_p != '\n'));
727      if (i == 1) buf_p++;
728      *buf_p = '\0';
729      DBG_FWRITE(buf, (buf_p - buffer), 1, fd_orig);
730
731      if (buf_p > buffer) {
732         if (bodytype & MSG_NEEDS_DECODE) {
733            buf_p = buffer;
734            UnMimeBodyline(&buf_p, 0, 0);
735         }
736         fwrite(buffer, (buf_p - buffer), 1, stdout);
737         DBG_FWRITE(buffer, (buf_p - buffer), 1, fd_conv);
738      }
739   } while (buf_p > buffer);
740
741   free(buffer);
742   fflush(stdout);
743
744 #ifdef DEBUG
745   fclose(fd_orig);
746   fclose(fd_conv);
747 #endif
748
749   return 0;
750 }
751 #endif
752