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