]> git.llucax.com Git - software/mutt-debian.git/blob - copy.c
611410-no-implicit_autoview-for-text-html.patch: blacklist text/html from implicit_au...
[software/mutt-debian.git] / copy.c
1 /*
2  * Copyright (C) 1996-2000,2002 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */ 
18
19 #if HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include "mutt.h"
24 #include "mailbox.h"
25 #include "mx.h"
26 #include "copy.h"
27 #include "rfc2047.h"
28 #include "mime.h"
29 #include "mutt_crypt.h"
30 #include "mutt_idna.h"
31 #include "mutt_curses.h"
32
33 #include <string.h>
34 #include <stdlib.h>
35 #include <ctype.h>
36 #include <unistd.h> /* needed for SEEK_SET under SunOS 4.1.4 */
37
38 static int address_header_decode (char **str);
39 static int copy_delete_attach (BODY *b, FILE *fpin, FILE *fpout, char *date);
40
41 /* Ok, the only reason for not merging this with mutt_copy_header()
42  * below is to avoid creating a HEADER structure in message_handler().
43  * Also, this one will wrap headers much more aggressively than the other one.
44  */
45 int
46 mutt_copy_hdr (FILE *in, FILE *out, LOFF_T off_start, LOFF_T off_end, int flags,
47                const char *prefix)
48 {
49   int from = 0;
50   int this_is_from;
51   int ignore = 0;
52   char buf[LONG_STRING]; /* should be long enough to get most fields in one pass */
53   char *nl;
54   LIST *t;
55   char **headers;
56   int hdr_count;
57   int x;
58   char *this_one = NULL;
59   size_t this_one_len = 0;
60   int error;
61
62   if (ftello (in) != off_start)
63     fseeko (in, off_start, 0);
64
65   buf[0] = '\n';
66   buf[1] = 0;
67
68   if ((flags & (CH_REORDER | CH_WEED | CH_MIME | CH_DECODE | CH_PREFIX | CH_WEED_DELIVERED)) == 0)
69   {
70     /* Without these flags to complicate things
71      * we can do a more efficient line to line copying
72      */
73     while (ftello (in) < off_end)
74     {
75       nl = strchr (buf, '\n');
76
77       if ((fgets (buf, sizeof (buf), in)) == NULL)
78         break;
79
80       /* Is it the begining of a header? */
81       if (nl && buf[0] != ' ' && buf[0] != '\t')
82       {
83         ignore = 1;
84         if (!from && mutt_strncmp ("From ", buf, 5) == 0)
85         {
86           if ((flags & CH_FROM) == 0)
87             continue;
88           from = 1;
89         }
90         else if (flags & (CH_NOQFROM) &&
91                         ascii_strncasecmp (">From ", buf, 6) == 0)
92                 continue;
93
94         else if (buf[0] == '\n' || (buf[0] == '\r' && buf[1] == '\n'))
95           break; /* end of header */
96
97         if ((flags & (CH_UPDATE | CH_XMIT | CH_NOSTATUS)) &&
98             (ascii_strncasecmp ("Status:", buf, 7) == 0 ||
99              ascii_strncasecmp ("X-Status:", buf, 9) == 0))
100           continue;
101         if ((flags & (CH_UPDATE_LEN | CH_XMIT | CH_NOLEN)) &&
102             (ascii_strncasecmp ("Content-Length:", buf, 15) == 0 ||
103              ascii_strncasecmp ("Lines:", buf, 6) == 0))
104           continue;
105         if ((flags & CH_UPDATE_REFS) &&
106             ascii_strncasecmp ("References:", buf, 11) == 0)
107           continue;
108         if ((flags & CH_UPDATE_IRT) &&
109             ascii_strncasecmp ("In-Reply-To:", buf, 12) == 0)
110           continue;
111         ignore = 0;
112       }
113
114       if (!ignore && fputs (buf, out) == EOF)
115         return (-1);
116     }
117     return 0;
118   }
119
120   hdr_count = 1;
121   x = 0;
122   error = FALSE;
123
124   /* We are going to read and collect the headers in an array
125    * so we are able to do re-ordering.
126    * First count the number of entries in the array
127    */
128   if (flags & CH_REORDER)
129   {
130     for (t = HeaderOrderList; t; t = t->next)
131     {
132       dprint(3, (debugfile, "Reorder list: %s\n", t->data));
133       hdr_count++;
134     }
135   }
136
137   dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not"));
138
139   headers = safe_calloc (hdr_count, sizeof (char *));
140
141   /* Read all the headers into the array */
142   while (ftello (in) < off_end)
143   {
144     nl = strchr (buf, '\n');
145
146     /* Read a line */
147     if ((fgets (buf, sizeof (buf), in)) == NULL)
148       break;
149
150     /* Is it the begining of a header? */
151     if (nl && buf[0] != ' ' && buf[0] != '\t')
152     {
153       /* Do we have anything pending? */
154       if (this_one)
155       {
156         if (flags & CH_DECODE) 
157         {
158           if (!address_header_decode (&this_one))
159             rfc2047_decode (&this_one);
160           this_one_len = mutt_strlen (this_one);
161         }
162
163         if (!headers[x])
164           headers[x] = this_one;
165         else 
166         {
167           int hlen = mutt_strlen (headers[x]);
168
169           safe_realloc (&headers[x], hlen + this_one_len + sizeof (char));
170           strcat (headers[x] + hlen, this_one); /* __STRCAT_CHECKED__ */
171           FREE (&this_one);
172         }
173
174         this_one = NULL;
175       }
176
177       ignore = 1;
178       this_is_from = 0;
179       if (!from && mutt_strncmp ("From ", buf, 5) == 0)
180       {
181         if ((flags & CH_FROM) == 0)
182           continue;
183         this_is_from = from = 1;
184       }
185       else if (buf[0] == '\n' || (buf[0] == '\r' && buf[1] == '\n'))
186         break; /* end of header */
187
188       /* note: CH_FROM takes precedence over header weeding. */
189       if (!((flags & CH_FROM) && (flags & CH_FORCE_FROM) && this_is_from) &&
190           (flags & CH_WEED) &&
191           mutt_matches_ignore (buf, Ignore) &&
192           !mutt_matches_ignore (buf, UnIgnore))
193         continue;
194       if ((flags & CH_WEED_DELIVERED) &&
195           ascii_strncasecmp ("Delivered-To:", buf, 13) == 0)
196         continue;
197       if ((flags & (CH_UPDATE | CH_XMIT | CH_NOSTATUS)) &&
198           (ascii_strncasecmp ("Status:", buf, 7) == 0 ||
199            ascii_strncasecmp ("X-Status:", buf, 9) == 0))
200         continue;
201       if ((flags & (CH_UPDATE_LEN | CH_XMIT | CH_NOLEN)) &&
202           (ascii_strncasecmp ("Content-Length:", buf, 15) == 0 ||
203            ascii_strncasecmp ("Lines:", buf, 6) == 0))
204         continue;
205       if ((flags & CH_MIME) &&
206           ((ascii_strncasecmp ("content-", buf, 8) == 0 &&
207             (ascii_strncasecmp ("transfer-encoding:", buf + 8, 18) == 0 ||
208              ascii_strncasecmp ("type:", buf + 8, 5) == 0)) ||
209            ascii_strncasecmp ("mime-version:", buf, 13) == 0))
210         continue;
211       if ((flags & CH_UPDATE_REFS) &&
212           ascii_strncasecmp ("References:", buf, 11) == 0)
213         continue;
214       if ((flags & CH_UPDATE_IRT) &&
215           ascii_strncasecmp ("In-Reply-To:", buf, 12) == 0)
216         continue;
217
218       /* Find x -- the array entry where this header is to be saved */
219       if (flags & CH_REORDER)
220       {
221         for (t = HeaderOrderList, x = 0 ; (t) ; t = t->next, x++)
222         {
223           if (!ascii_strncasecmp (buf, t->data, mutt_strlen (t->data)))
224           {
225             dprint(2, (debugfile, "Reorder: %s matches %s\n", t->data, buf));
226             break;
227           }
228         }
229       }
230
231       ignore = 0;
232     } /* If beginning of header */
233
234     if (!ignore)
235     {
236       dprint (2, (debugfile, "Reorder: x = %d; hdr_count = %d\n", x, hdr_count));
237       if (!this_one) {
238         this_one = safe_strdup (buf);
239         this_one_len = mutt_strlen (this_one);
240       } else {
241         int blen = mutt_strlen (buf);
242
243         safe_realloc (&this_one, this_one_len + blen + sizeof (char));
244         strcat (this_one + this_one_len, buf); /* __STRCAT_CHECKED__ */
245         this_one_len += blen;
246       }
247     }
248   } /* while (ftello (in) < off_end) */
249
250   /* Do we have anything pending?  -- XXX, same code as in above in the loop. */
251   if (this_one)
252   {
253     if (flags & CH_DECODE) 
254     {
255       if (!address_header_decode (&this_one))
256         rfc2047_decode (&this_one);
257     }
258     
259     if (!headers[x])
260       headers[x] = this_one;
261     else 
262     {
263       int hlen = mutt_strlen (headers[x]);
264
265       safe_realloc (&headers[x], hlen + this_one_len + sizeof (char));
266       strcat (headers[x] + hlen, this_one); /* __STRCAT_CHECKED__ */
267       FREE (&this_one);
268     }
269
270     this_one = NULL;
271   }
272
273   /* Now output the headers in order */
274   for (x = 0; x < hdr_count; x++)
275   {
276     if (headers[x])
277     {
278 #if 0
279       if (flags & CH_DECODE)
280         rfc2047_decode (&headers[x]);
281 #endif
282
283       /* We couldn't do the prefixing when reading because RFC 2047
284        * decoding may have concatenated lines.
285        */
286       
287       if (flags & (CH_DECODE|CH_PREFIX))
288       {
289         if (mutt_write_one_header (out, 0, headers[x], 
290                                    flags & CH_PREFIX ? prefix : 0, mutt_term_width (Wrap), flags) == -1)
291         {
292           error = TRUE;
293           break;
294         }
295       }
296       else
297       {      
298         if (fputs (headers[x], out) == EOF)
299         {
300           error = TRUE;
301           break;
302         }
303       }
304     }
305   }
306
307   /* Free in a separate loop to be sure that all headers are freed
308    * in case of error. */
309   for (x = 0; x < hdr_count; x++)
310     FREE (&headers[x]);
311   FREE (&headers);
312
313   if (error)
314     return (-1);
315   return (0);
316 }
317
318 /* flags
319         CH_DECODE       RFC2047 header decoding
320         CH_FROM         retain the "From " message separator
321         CH_FORCE_FROM   give CH_FROM precedence over CH_WEED
322         CH_MIME         ignore MIME fields
323         CH_NOLEN        don't write Content-Length: and Lines:
324         CH_NONEWLINE    don't output a newline after the header
325         CH_NOSTATUS     ignore the Status: and X-Status:
326         CH_PREFIX       quote header with $indent_str
327         CH_REORDER      output header in order specified by `hdr_order'
328         CH_TXTPLAIN     generate text/plain MIME headers [hack alert.]
329         CH_UPDATE       write new Status: and X-Status:
330         CH_UPDATE_LEN   write new Content-Length: and Lines:
331         CH_XMIT         ignore Lines: and Content-Length:
332         CH_WEED         do header weeding
333         CH_NOQFROM      ignore ">From " line
334         CH_UPDATE_IRT   update the In-Reply-To: header
335         CH_UPDATE_REFS  update the References: header
336
337    prefix
338         string to use if CH_PREFIX is set
339  */
340
341 int
342 mutt_copy_header (FILE *in, HEADER *h, FILE *out, int flags, const char *prefix)
343 {
344   char buffer[SHORT_STRING];
345
346   if (h->env)
347     flags |= (h->env->irt_changed ? CH_UPDATE_IRT : 0)
348       | (h->env->refs_changed ? CH_UPDATE_REFS : 0);
349   
350   if (mutt_copy_hdr (in, out, h->offset, h->content->offset, flags, prefix) == -1)
351     return -1;
352
353   if (flags & CH_TXTPLAIN)
354   {
355     char chsbuf[SHORT_STRING];
356     fputs ("MIME-Version: 1.0\n", out);
357     fputs ("Content-Transfer-Encoding: 8bit\n", out);
358     fputs ("Content-Type: text/plain; charset=", out);
359     mutt_canonical_charset (chsbuf, sizeof (chsbuf), Charset ? Charset : "us-ascii");
360     rfc822_cat(buffer, sizeof(buffer), chsbuf, MimeSpecials);
361     fputs(buffer, out);
362     fputc('\n', out);
363   }
364
365   if ((flags & CH_UPDATE_IRT) && h->env->in_reply_to)
366   {
367     LIST *listp = h->env->in_reply_to;
368     fputs ("In-Reply-To:", out);
369     for (; listp; listp = listp->next)
370     {
371       fputc (' ', out);
372       fputs (listp->data, out);
373     }
374     fputc ('\n', out);
375   }
376
377   if ((flags & CH_UPDATE_REFS) && h->env->references)
378   {
379     fputs ("References:", out);
380     mutt_write_references (h->env->references, out, 0);
381     fputc ('\n', out);
382   }
383
384   if ((flags & CH_UPDATE) && (flags & CH_NOSTATUS) == 0)
385   {
386     if (h->old || h->read)
387     {
388       fputs ("Status: ", out);
389       if (h->read)
390         fputs ("RO", out);
391       else if (h->old)
392         fputc ('O', out);
393       fputc ('\n', out);
394     }
395
396     if (h->flagged || h->replied)
397     {
398       fputs ("X-Status: ", out);
399       if (h->replied)
400         fputc ('A', out);
401       if (h->flagged)
402         fputc ('F', out);
403       fputc ('\n', out);
404     }
405   }
406
407   if (flags & CH_UPDATE_LEN &&
408       (flags & CH_NOLEN) == 0)
409   {
410     fprintf (out, "Content-Length: " OFF_T_FMT "\n", h->content->length);
411     if (h->lines != 0 || h->content->length == 0)
412       fprintf (out, "Lines: %d\n", h->lines);
413   }
414
415   if ((flags & CH_NONEWLINE) == 0)
416   {
417     if (flags & CH_PREFIX)
418       fputs(prefix, out);
419     fputc ('\n', out); /* add header terminator */
420   }
421
422   if (ferror (out) || feof (out))
423     return -1;
424   
425   return 0;
426 }
427
428 /* Count the number of lines and bytes to be deleted in this body*/
429 static int count_delete_lines (FILE *fp, BODY *b, LOFF_T *length, size_t datelen)
430 {
431   int dellines = 0;
432   long l;
433   int ch;
434
435   if (b->deleted)
436   {
437     fseeko (fp, b->offset, SEEK_SET);
438     for (l = b->length ; l ; l --)
439     {
440       ch = getc (fp);
441       if (ch == EOF)
442         break;
443       if (ch == '\n')
444         dellines ++;
445     }
446     dellines -= 3;
447     *length -= b->length - (84 + datelen);
448     /* Count the number of digits exceeding the first one to write the size */
449     for (l = 10 ; b->length >= l ; l *= 10)
450       (*length) ++;
451   }
452   else
453   {
454     for (b = b->parts ; b ; b = b->next)
455       dellines += count_delete_lines (fp, b, length, datelen);
456   }
457   return dellines;
458 }
459
460 /* make a copy of a message
461  * 
462  * fpout        where to write output
463  * fpin         where to get input
464  * hdr          header of message being copied
465  * body         structure of message being copied
466  * flags
467  *      M_CM_NOHEADER   don't copy header
468  *      M_CM_PREFIX     quote header and body
469  *      M_CM_DECODE     decode message body to text/plain
470  *      M_CM_DISPLAY    displaying output to the user
471  *      M_CM_PRINTING   printing the message
472  *      M_CM_UPDATE     update structures in memory after syncing
473  *      M_CM_DECODE_PGP used for decoding PGP messages
474  *      M_CM_CHARCONV   perform character set conversion 
475  * chflags      flags to mutt_copy_header()
476  */
477
478 int
479 _mutt_copy_message (FILE *fpout, FILE *fpin, HEADER *hdr, BODY *body,
480                     int flags, int chflags)
481 {
482   char prefix[SHORT_STRING];
483   STATE s;
484   LOFF_T new_offset = -1;
485   int rc = 0;
486
487   if (flags & M_CM_PREFIX)
488   {
489     if (option (OPTTEXTFLOWED))
490       strfcpy (prefix, ">", sizeof (prefix));
491     else
492       _mutt_make_string (prefix, sizeof (prefix), NONULL (Prefix), Context, hdr, 0);
493   }
494
495   if ((flags & M_CM_NOHEADER) == 0)
496   {
497     if (flags & M_CM_PREFIX)
498       chflags |= CH_PREFIX;
499
500     else if (hdr->attach_del && (chflags & CH_UPDATE_LEN))
501     {
502       int new_lines;
503       LOFF_T new_length = body->length;
504       char date[SHORT_STRING];
505
506       mutt_make_date (date, sizeof (date));
507       date[5] = date[mutt_strlen (date) - 1] = '\"';
508
509       /* Count the number of lines and bytes to be deleted */
510       fseeko (fpin, body->offset, SEEK_SET);
511       new_lines = hdr->lines -
512         count_delete_lines (fpin, body, &new_length, mutt_strlen (date));
513
514       /* Copy the headers */
515       if (mutt_copy_header (fpin, hdr, fpout,
516                             chflags | CH_NOLEN | CH_NONEWLINE, NULL))
517         return -1;
518       fprintf (fpout, "Content-Length: " OFF_T_FMT "\n", new_length);
519       if (new_lines <= 0)
520         new_lines = 0;
521       else
522         fprintf (fpout, "Lines: %d\n", new_lines);
523
524       putc ('\n', fpout);
525       if (ferror (fpout) || feof (fpout))
526         return -1;
527       new_offset = ftello (fpout);
528
529       /* Copy the body */
530       fseeko (fpin, body->offset, SEEK_SET);
531       if (copy_delete_attach (body, fpin, fpout, date))
532         return -1;
533
534 #ifdef DEBUG
535       {
536         LOFF_T fail = ((ftello (fpout) - new_offset) - new_length);
537
538         if (fail)
539         {
540           mutt_error ("The length calculation was wrong by %ld bytes", fail);
541           new_length += fail;
542           mutt_sleep (1);
543         }
544       }
545 #endif
546
547       /* Update original message if we are sync'ing a mailfolder */ 
548       if (flags & M_CM_UPDATE)
549       {
550         hdr->attach_del = 0;
551         hdr->lines = new_lines;
552         body->offset = new_offset;
553
554         /* update the total size of the mailbox to reflect this deletion */
555         Context->size -= body->length - new_length;
556         /*
557          * if the message is visible, update the visible size of the mailbox
558          * as well.
559          */
560         if (Context->v2r[hdr->msgno] != -1)
561           Context->vsize -= body->length - new_length;
562
563         body->length = new_length;
564         mutt_free_body (&body->parts);
565       }
566
567       return 0;
568     }
569
570     if (mutt_copy_header (fpin, hdr, fpout, chflags,
571                           (chflags & CH_PREFIX) ? prefix : NULL) == -1)
572       return -1;
573
574     new_offset = ftello (fpout);
575   }
576
577   if (flags & M_CM_DECODE)
578   {
579     /* now make a text/plain version of the message */
580     memset (&s, 0, sizeof (STATE));
581     s.fpin = fpin;
582     s.fpout = fpout;
583     if (flags & M_CM_PREFIX)
584       s.prefix = prefix;
585     if (flags & M_CM_DISPLAY)
586       s.flags |= M_DISPLAY;
587     if (flags & M_CM_PRINTING)
588       s.flags |= M_PRINTING;
589     if (flags & M_CM_WEED)
590       s.flags |= M_WEED;
591     if (flags & M_CM_CHARCONV)
592       s.flags |= M_CHARCONV;
593     if (flags & M_CM_REPLYING)
594       s.flags |= M_REPLYING;
595     
596     if (WithCrypto && flags & M_CM_VERIFY)
597       s.flags |= M_VERIFY;
598
599     rc = mutt_body_handler (body, &s);
600   }
601   else if (WithCrypto
602            && (flags & M_CM_DECODE_CRYPT) && (hdr->security & ENCRYPT))
603   {
604     BODY *cur = NULL;
605     FILE *fp;
606
607     if ((WithCrypto & APPLICATION_PGP)
608         && (flags & M_CM_DECODE_PGP) && (hdr->security & APPLICATION_PGP) &&
609         hdr->content->type == TYPEMULTIPART)
610     {
611       if (crypt_pgp_decrypt_mime (fpin, &fp, hdr->content, &cur))
612         return (-1);
613       fputs ("MIME-Version: 1.0\n", fpout);
614     }
615
616     if ((WithCrypto & APPLICATION_SMIME)
617         && (flags & M_CM_DECODE_SMIME) && (hdr->security & APPLICATION_SMIME)
618              && hdr->content->type == TYPEAPPLICATION)
619     {
620       if (crypt_smime_decrypt_mime (fpin, &fp, hdr->content, &cur))
621         return (-1);
622     }
623
624     if (!cur)
625     {
626       mutt_error (_("No decryption engine available for message"));
627       return -1;
628     }
629
630     mutt_write_mime_header (cur, fpout);
631     fputc ('\n', fpout);
632
633     fseeko (fp, cur->offset, 0);
634     if (mutt_copy_bytes (fp, fpout, cur->length) == -1)
635     {
636       safe_fclose (&fp);
637       mutt_free_body (&cur);
638       return (-1);
639     }
640     mutt_free_body (&cur);
641     safe_fclose (&fp);
642   }
643   else
644   {
645     fseeko (fpin, body->offset, 0);
646     if (flags & M_CM_PREFIX)
647     {
648       int c;
649       size_t bytes = body->length;
650       
651       fputs(prefix, fpout);
652       
653       while((c = fgetc(fpin)) != EOF && bytes--)
654       {
655         fputc(c, fpout);
656         if(c == '\n')
657         {
658           fputs(prefix, fpout);
659         }
660       } 
661     }
662     else if (mutt_copy_bytes (fpin, fpout, body->length) == -1)
663       return -1;
664   }
665
666   if ((flags & M_CM_UPDATE) && (flags & M_CM_NOHEADER) == 0 
667       && new_offset != -1)
668   {
669     body->offset = new_offset;
670     mutt_free_body (&body->parts);
671   }
672
673   return rc;
674 }
675
676 /* should be made to return -1 on fatal errors, and 1 on non-fatal errors
677  * like partial decode, where it is worth displaying as much as possible */
678 int
679 mutt_copy_message (FILE *fpout, CONTEXT *src, HEADER *hdr, int flags,
680                    int chflags)
681 {
682   MESSAGE *msg;
683   int r;
684   
685   if ((msg = mx_open_message (src, hdr->msgno)) == NULL)
686     return -1;
687   if ((r = _mutt_copy_message (fpout, msg->fp, hdr, hdr->content, flags, chflags)) == 0 
688       && (ferror (fpout) || feof (fpout)))
689   {
690     dprint (1, (debugfile, "_mutt_copy_message failed to detect EOF!\n"));
691     r = -1;
692   }
693   mx_close_message (&msg);
694   return r;
695 }
696
697 /* appends a copy of the given message to a mailbox
698  *
699  * dest         destination mailbox
700  * fpin         where to get input
701  * src          source mailbox
702  * hdr          message being copied
703  * body         structure of message being copied
704  * flags        mutt_copy_message() flags
705  * chflags      mutt_copy_header() flags
706  */
707
708 int
709 _mutt_append_message (CONTEXT *dest, FILE *fpin, CONTEXT *src, HEADER *hdr,
710                       BODY *body, int flags, int chflags)
711 {
712   char buf[STRING];
713   MESSAGE *msg;
714   int r;
715
716   fseeko (fpin, hdr->offset, 0);
717   if (fgets (buf, sizeof (buf), fpin) == NULL)
718     return -1;
719   
720   if ((msg = mx_open_new_message (dest, hdr, is_from (buf, NULL, 0, NULL) ? 0 : M_ADD_FROM)) == NULL)
721     return -1;
722   if (dest->magic == M_MBOX || dest->magic == M_MMDF)
723     chflags |= CH_FROM | CH_FORCE_FROM;
724   chflags |= (dest->magic == M_MAILDIR ? CH_NOSTATUS : CH_UPDATE);
725   r = _mutt_copy_message (msg->fp, fpin, hdr, body, flags, chflags);
726   if (mx_commit_message (msg, dest) != 0)
727     r = -1;
728
729   mx_close_message (&msg);
730   return r;
731 }
732
733 int
734 mutt_append_message (CONTEXT *dest, CONTEXT *src, HEADER *hdr, int cmflags,
735                      int chflags)
736 {
737   MESSAGE *msg;
738   int r;
739
740   if ((msg = mx_open_message (src, hdr->msgno)) == NULL)
741     return -1;
742   r = _mutt_append_message (dest, msg->fp, src, hdr, hdr->content, cmflags, chflags);
743   mx_close_message (&msg);
744   return r;
745 }
746
747 /*
748  * This function copies a message body, while deleting _in_the_copy_
749  * any attachments which are marked for deletion.
750  * Nothing is changed in the original message -- this is left to the caller.
751  *
752  * The function will return 0 on success and -1 on failure.
753  */
754 static int copy_delete_attach (BODY *b, FILE *fpin, FILE *fpout, char *date)
755 {
756   BODY *part;
757
758   for (part = b->parts ; part ; part = part->next)
759   {
760     if (part->deleted || part->parts)
761     {
762       /* Copy till start of this part */
763       if (mutt_copy_bytes (fpin, fpout, part->hdr_offset - ftello (fpin)))
764         return -1;
765
766       if (part->deleted)
767       {
768         fprintf (fpout,
769                  "Content-Type: message/external-body; access-type=x-mutt-deleted;\n"
770                  "\texpiration=%s; length=" OFF_T_FMT "\n"
771                  "\n", date + 5, part->length);
772         if (ferror (fpout))
773           return -1;
774
775         /* Copy the original mime headers */
776         if (mutt_copy_bytes (fpin, fpout, part->offset - ftello (fpin)))
777           return -1;
778
779         /* Skip the deleted body */
780         fseeko (fpin, part->offset + part->length, SEEK_SET);
781       }
782       else
783       {
784         if (copy_delete_attach (part, fpin, fpout, date))
785           return -1;
786       }
787     }
788   }
789
790   /* Copy the last parts */
791   if (mutt_copy_bytes (fpin, fpout, b->offset + b->length - ftello (fpin)))
792     return -1;
793
794   return 0;
795 }
796
797 /* 
798  * This function is the equivalent of mutt_write_address_list(),
799  * but writes to a buffer instead of writing to a stream.
800  * mutt_write_address_list could be re-used if we wouldn't store
801  * all the decoded headers in a huge array, first. 
802  *
803  * XXX - fix that. 
804  */
805
806 static void format_address_header (char **h, ADDRESS *a)
807 {
808   char buf[HUGE_STRING];
809   char cbuf[STRING];
810   char c2buf[STRING];
811   char *p = NULL;
812   int l, linelen, buflen, count, cbuflen, c2buflen, plen;
813
814   linelen = mutt_strlen (*h);
815   plen = linelen;
816   buflen  = linelen + 3;
817
818   safe_realloc (h, buflen);
819   for (count = 0; a; a = a->next, count++)
820   {
821     ADDRESS *tmp = a->next;
822     a->next = NULL;
823     *buf = *cbuf = *c2buf = '\0';
824     l = rfc822_write_address (buf, sizeof (buf), a, 0);
825     a->next = tmp;
826     
827     if (count && linelen + l > 74) 
828     {
829       strcpy (cbuf, "\n\t");    /* __STRCPY_CHECKED__ */
830       linelen = l + 8;
831     }
832     else
833     {
834       if (a->mailbox)
835       {
836         strcpy (cbuf, " ");     /* __STRCPY_CHECKED__ */
837         linelen++;
838       }
839       linelen += l;
840     }
841     if (!a->group && a->next && a->next->mailbox)
842     {
843       linelen++;
844       buflen++;
845       strcpy (c2buf, ",");      /* __STRCPY_CHECKED__ */
846     }
847
848     cbuflen = mutt_strlen (cbuf);
849     c2buflen = mutt_strlen (c2buf);
850     buflen += l + cbuflen + c2buflen;
851     safe_realloc (h, buflen);
852     p = *h;
853     strcat (p + plen, cbuf);            /* __STRCAT_CHECKED__ */
854     plen += cbuflen;
855     strcat (p + plen, buf);             /* __STRCAT_CHECKED__ */
856     plen += l;
857     strcat (p + plen, c2buf);           /* __STRCAT_CHECKED__ */
858     plen += c2buflen;
859   }
860   
861   /* Space for this was allocated in the beginning of this function. */
862   strcat (p + plen, "\n");              /* __STRCAT_CHECKED__ */
863 }
864
865 static int address_header_decode (char **h)
866 {
867   char *s = *h;
868   int l, rp = 0;
869
870   ADDRESS *a = NULL;
871   ADDRESS *cur = NULL;
872
873   switch (tolower ((unsigned char) *s))
874   {
875     case 'r': 
876     {
877       if (ascii_strncasecmp (s, "return-path:", 12) == 0)
878       {
879         l = 12;
880         rp = 1;
881         break;
882       }
883       else if (ascii_strncasecmp (s, "reply-to:", 9) == 0)
884       {
885         l = 9;
886         break;
887       }
888       return 0;
889     }
890     case 'f': 
891     {
892       if (ascii_strncasecmp (s, "from:", 5)) 
893         return 0; 
894       l = 5;
895       break;
896     }
897     case 'c':
898     {
899       if (ascii_strncasecmp (s, "cc:", 3))
900         return 0;
901       l = 3;
902       break;
903       
904     }
905     case 'b':
906     {
907       if (ascii_strncasecmp (s, "bcc:", 4))
908         return 0;
909       l = 4;
910       break;
911     }
912     case 's':
913     {
914       if (ascii_strncasecmp (s, "sender:", 7))
915         return 0;
916       l = 7;
917       break;
918     }
919     case 't':
920     {
921       if (ascii_strncasecmp (s, "to:", 3))
922         return 0;
923       l = 3;
924       break;
925     }
926     case 'm':
927     {
928       if (ascii_strncasecmp (s, "mail-followup-to:", 17))
929         return 0;
930       l = 17;
931       break;
932     }
933     default: return 0;    
934   }
935
936   if ((a = rfc822_parse_adrlist (a, s + l)) == NULL)
937     return 0;
938   
939   mutt_addrlist_to_local (a);
940   rfc2047_decode_adrlist (a);
941   for (cur = a; cur; cur = cur->next)
942     if (cur->personal)
943       rfc822_dequote_comment (cur->personal);
944
945   /* angle brackets for return path are mandated by RfC5322,
946    * so leave Return-Path as-is */
947   if (rp)
948     *h = safe_strdup (s);
949   else
950   {
951     *h = safe_calloc (1, l + 2);
952     strfcpy (*h, s, l + 1);
953     format_address_header (h, a);
954   }
955
956   rfc822_free_address (&a);
957
958   FREE (&s);
959   return 1;
960 }