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