Even less options.
[apps/madmutt.git] / attach.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 #include <lib-lib/lib-lib.h>
12
13 #include <lib-sys/unix.h>
14 #include <lib-mime/mime.h>
15 #include <lib-ui/lib-ui.h>
16 #include <lib-ui/menu.h>
17 #include <lib-mx/mx.h>
18
19 #include "mutt.h"
20 #include "handler.h"
21 #include "recvattach.h"
22 #include "keymap.h"
23 #include "pager.h"
24 #include "copy.h"
25 #include "crypt.h"
26
27 int mutt_get_tmp_attachment (BODY * a)
28 {
29   char type[STRING];
30   char tempfile[_POSIX_PATH_MAX];
31   rfc1524_entry *entry = rfc1524_entry_new();
32   FILE *fpin = NULL, *fpout = NULL;
33   struct stat st;
34
35   if (a->unlink)
36     return 0;
37
38   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
39   rfc1524_mailcap_lookup (a, type, entry, 0);
40   rfc1524_expand_filename (entry->nametemplate, a->filename,
41                            tempfile, sizeof (tempfile));
42
43   rfc1524_entry_delete(&entry);
44
45   if (stat (a->filename, &st) == -1)
46     return -1;
47
48   if ((fpin = fopen (a->filename, "r")) && (fpout = safe_fopen (tempfile, "w"))) {
49     mutt_copy_stream (fpin, fpout);
50     m_strreplace(&a->filename, tempfile);
51     a->unlink = 1;
52
53     if (a->stamp >= st.st_mtime)
54       mutt_stamp_attachment (a);
55   } else {
56     mutt_perror(fpin ? tempfile : a->filename);
57   }
58
59   m_fclose(&fpin);
60   m_fclose(&fpout);
61
62   return a->unlink ? 0 : -1;
63 }
64
65
66 /* return 1 if require full screen redraw, 0 otherwise */
67 int mutt_compose_attachment (BODY * a)
68 {
69   char type[STRING];
70   char command[STRING];
71   char newfile[_POSIX_PATH_MAX] = "";
72   rfc1524_entry *entry = rfc1524_entry_new();
73   short unlink_newfile = 0;
74   int rc = 0;
75
76   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
77   if (rfc1524_mailcap_lookup (a, type, entry, M_COMPOSE)) {
78     if (entry->composecommand || entry->composetypecommand) {
79
80       if (entry->composetypecommand)
81         m_strcpy(command, sizeof(command), entry->composetypecommand);
82       else
83         m_strcpy(command, sizeof(command), entry->composecommand);
84       if (rfc1524_expand_filename (entry->nametemplate,
85                                    a->filename, newfile, sizeof (newfile))) {
86         if (safe_symlink (a->filename, newfile) == -1) {
87           if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
88               != M_YES)
89             goto bailout;
90         } else {
91           unlink_newfile = 1;
92         }
93       } else {
94         m_strcpy(newfile, sizeof(newfile), a->filename);
95       }
96
97       if (rfc1524_expand_command (a, newfile, type,
98                                   command, sizeof (command))) {
99         /* For now, editing requires a file, no piping */
100         mutt_error _("Mailcap compose entry requires %%s");
101       } else {
102         int r;
103
104         mutt_endwin (NULL);
105         if ((r = mutt_system (command)) == -1)
106           mutt_error (_("Error running \"%s\"!"), command);
107
108         if (r != -1 && entry->composetypecommand) {
109           BODY *b;
110           FILE *fp, *tfp;
111
112           if ((fp = safe_fopen (a->filename, "r")) == NULL) {
113             mutt_perror (_("Failure to open file to parse headers."));
114
115             goto bailout;
116           }
117
118           b = mutt_read_mime_header (fp, 0);
119           if (b) {
120             char tempfile[_POSIX_PATH_MAX];
121
122             if (b->parameter) {
123               parameter_list_wipe(&a->parameter);
124               a->parameter = b->parameter;
125               b->parameter = NULL;
126             }
127             if (b->description) {
128               p_delete(&a->description);
129               a->description = b->description;
130               b->description = NULL;
131             }
132             if (b->form_name) {
133               p_delete(&a->form_name);
134               a->form_name = b->form_name;
135               b->form_name = NULL;
136             }
137
138             /* Remove headers by copying out data to another file, then 
139              * copying the file back */
140             fseeko (fp, b->offset, 0);
141             tfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(mod_core.tmpdir), NULL);
142             if (!tfp) {
143               mutt_perror (_("Failure to open file to strip headers."));
144               goto bailout;
145             }
146             mutt_copy_stream (fp, tfp);
147             m_fclose(&fp);
148             m_fclose(&tfp);
149             mutt_unlink (a->filename);
150             if (mutt_rename_file (tempfile, a->filename) != 0) {
151               mutt_perror (_("Failure to rename file."));
152
153               goto bailout;
154             }
155
156             body_list_wipe(&b);
157           }
158         }
159       }
160     }
161   } else {
162     rfc1524_entry_delete(&entry);
163     mutt_message (_("No mailcap compose entry for %s, creating empty file."),
164                   type);
165     return 1;
166   }
167
168   rc = 1;
169
170 bailout:
171
172   if (unlink_newfile)
173     unlink (newfile);
174
175   rfc1524_entry_delete(&entry);
176   return rc;
177 }
178
179 /* 
180  * Currently, this only works for send mode, as it assumes that the 
181  * BODY->filename actually contains the information.  I'm not sure
182  * we want to deal with editing attachments we've already received,
183  * so this should be ok.
184  *
185  * Returns 1 if editor found, 0 if not (useful to tell calling menu to
186  * redraw)
187  */
188 int mutt_edit_attachment (BODY * a)
189 {
190   char type[STRING];
191   char command[STRING];
192   char newfile[_POSIX_PATH_MAX] = "";
193   rfc1524_entry *entry = rfc1524_entry_new();
194   short unlink_newfile = 0;
195   int rc = 0;
196
197   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
198   if (rfc1524_mailcap_lookup (a, type, entry, M_EDIT)) {
199     if (entry->editcommand) {
200
201       m_strcpy(command, sizeof(command), entry->editcommand);
202       if (rfc1524_expand_filename (entry->nametemplate,
203                                    a->filename, newfile, sizeof (newfile))) {
204           if (safe_symlink (a->filename, newfile) == -1) {
205           if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
206               != M_YES)
207             goto bailout;
208         } else {
209           unlink_newfile = 1;
210         }
211       } else {
212         m_strcpy(newfile, sizeof(newfile), a->filename);
213       }
214
215       if (rfc1524_expand_command (a, newfile, type,
216                                   command, sizeof (command))) {
217         /* For now, editing requires a file, no piping */
218         mutt_error _("Mailcap Edit entry requires %%s");
219         goto bailout;
220       } else {
221         mutt_endwin (NULL);
222         if (mutt_system (command) == -1) {
223           mutt_error (_("Error running \"%s\"!"), command);
224           goto bailout;
225         }
226       }
227     }
228   }
229   else if (a->type == TYPETEXT) {
230     /* On text, default to editor */
231     mutt_edit_file(a->filename);
232   } else {
233     rfc1524_entry_delete(&entry);
234     mutt_error (_("No mailcap edit entry for %s"), type);
235     return 0;
236   }
237
238   rc = 1;
239
240 bailout:
241
242   if (unlink_newfile)
243     unlink (newfile);
244
245   rfc1524_entry_delete(&entry);
246   return rc;
247 }
248
249
250 /* for compatibility with metamail */
251 static int is_mmnoask (const char *buf)
252 {
253   char tmp[LONG_STRING], *p, *q;
254   int lng;
255
256   if ((p = getenv ("MM_NOASK")) != NULL && *p) {
257     if (m_strcmp(p, "1") == 0)
258       return (1);
259
260     m_strcpy(tmp, sizeof(tmp), p);
261     p = tmp;
262
263     while ((p = strtok (p, ",")) != NULL) {
264       if ((q = strrchr (p, '/')) != NULL) {
265         if (*(q + 1) == '*') {
266           if (ascii_strncasecmp (buf, p, q - p) == 0)
267             return (1);
268         } else {
269           if (ascii_strcasecmp (buf, p) == 0)
270             return (1);
271         }
272       } else {
273         lng = m_strlen(p);
274         if (buf[lng] == '/' && m_strncasecmp(buf, p, lng) == 0)
275           return (1);
276       }
277
278       p = NULL;
279     }
280   }
281
282   return (0);
283 }
284
285 void mutt_check_lookup_list (BODY * b, char *type, int len)
286 {
287   string_list_t *t = MimeLookupList;
288   int i;
289
290   for (; t; t = t->next) {
291     i = m_strlen(t->data) - 1;
292     if ((i > 0 && t->data[i - 1] == '/' && t->data[i] == '*' &&
293          ascii_strncasecmp (type, t->data, i) == 0) ||
294         ascii_strcasecmp (type, t->data) == 0) {
295
296       BODY tmp;
297       int n;
298
299       p_clear(&tmp, 1);
300
301       if ((n = mutt_lookup_mime_type (&tmp, b->filename)) != TYPEOTHER) {
302         snprintf (type, len, "%s/%s",
303                   n == TYPEAUDIO ? "audio" :
304                   n == TYPEAPPLICATION ? "application" :
305                   n == TYPEIMAGE ? "image" :
306                   n == TYPEMESSAGE ? "message" :
307                   n == TYPEMODEL ? "model" :
308                   n == TYPEMULTIPART ? "multipart" :
309                   n == TYPETEXT ? "text" :
310                   n == TYPEVIDEO ? "video" : "other", tmp.subtype);
311       }
312       if (tmp.subtype)
313         p_delete(&tmp.subtype);
314       if (tmp.xtype)
315         p_delete(&tmp.xtype);
316     }
317   }
318 }
319
320 int mutt_is_autoview (BODY * b, const char *type)
321 {
322   string_list_t *t = AutoViewList;
323   char _type[STRING];
324   int i;
325
326   if (!type)
327     snprintf(_type, sizeof(_type), "%s/%s", TYPE(b), b->subtype);
328   else
329     m_strcpy(_type, sizeof(_type), type);
330
331   mutt_check_lookup_list (b, _type, sizeof (_type));
332   type = _type;
333
334   if (rfc1524_mailcap_isneeded(b)) {
335     if (option (OPTIMPLICITAUTOVIEW))
336       return 1;
337
338     if (is_mmnoask (type))
339       return 1;
340   }
341
342   for (; t; t = t->next) {
343     i = m_strlen(t->data) - 1;
344     if ((i > 0 && t->data[i - 1] == '/' && t->data[i] == '*' &&
345          ascii_strncasecmp (type, t->data, i) == 0) ||
346         ascii_strcasecmp (type, t->data) == 0)
347       return 1;
348   }
349
350   return 0;
351 }
352
353 /* returns -1 on error, 0 or the return code from mutt_do_pager() on success */
354 int mutt_view_attachment (FILE * fp, BODY * a, int flag, HEADER * hdr,
355                           ATTACHPTR ** idx, short idxlen)
356 {
357   char tempfile[_POSIX_PATH_MAX] = "";
358   char pagerfile[_POSIX_PATH_MAX] = "";
359   int is_message;
360   int use_mailcap;
361   int use_pipe = 0;
362   int use_pager = 1;
363   char type[STRING];
364   char command[STRING];
365   char descrip[STRING];
366   char *fname;
367   rfc1524_entry *entry = NULL;
368   int rc = -1;
369   int unlink_tempfile = 0;
370   int pagerfd = -1;
371
372   is_message = mutt_is_message_type(a);
373   use_mailcap = (flag == M_MAILCAP ||
374                  (flag == M_REGULAR && rfc1524_mailcap_isneeded(a)));
375   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
376
377   if (use_mailcap) {
378     entry = rfc1524_entry_new();
379     if (!rfc1524_mailcap_lookup (a, type, entry, 0)) {
380       if (flag == M_REGULAR) {
381         /* fallback to view as text */
382         rfc1524_entry_delete(&entry);
383         mutt_error _("No matching mailcap entry found.  Viewing as text.");
384
385         flag = M_AS_TEXT;
386         use_mailcap = 0;
387       }
388       else
389         goto return_error;
390     }
391   }
392
393   if (use_mailcap) {
394     if (!entry->command) {
395       mutt_error _("MIME type not defined.  Cannot view attachment.");
396
397       goto return_error;
398     }
399     m_strcpy(command, sizeof(command), entry->command);
400
401     if (fp) {
402       fname = m_strdup(a->filename);
403       mutt_sanitize_filename (fname, 1);
404     }
405     else
406       fname = a->filename;
407
408     if (rfc1524_expand_filename (entry->nametemplate, fname,
409                                  tempfile, sizeof (tempfile))) {
410       if (fp == NULL && m_strcmp(tempfile, a->filename)) {
411         /* send case: the file is already there */
412         if (safe_symlink (a->filename, tempfile) == -1) {
413           if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
414               == M_YES)
415             m_strcpy(tempfile, sizeof(tempfile), a->filename);
416           else
417             goto return_error;
418         }
419         else
420           unlink_tempfile = 1;
421       }
422     }
423     else if (fp == NULL)        /* send case */
424       m_strcpy(tempfile, sizeof(tempfile), a->filename);
425
426     if (fp) {
427       /* recv case: we need to save the attachment to a file */
428       p_delete(&fname);
429       if (mutt_save_attachment (fp, a, tempfile, 0, NULL) == -1)
430         goto return_error;
431     }
432
433     use_pipe = rfc1524_expand_command (a, tempfile, type,
434                                        command, sizeof (command));
435     use_pager = entry->copiousoutput;
436   }
437
438   if (use_pager) {
439     /* recv case */
440     pagerfd = m_tempfd(pagerfile, sizeof(pagerfile), NONULL(mod_core.tmpdir),
441                        fp && !use_mailcap ? a->filename : NULL);
442   }
443
444   if (use_mailcap) {
445     pid_t thepid = 0;
446     int tempfd = -1;
447
448     if (!use_pager)
449       mutt_endwin (NULL);
450
451     if (use_pager || use_pipe) {
452       if (use_pager && pagerfd == -1) {
453         mutt_perror ("open");
454         goto return_error;
455       }
456       if (use_pipe && ((tempfd = open (tempfile, 0)) == -1)) {
457         if (pagerfd != -1)
458           close (pagerfd);
459         mutt_perror ("open");
460         goto return_error;
461       }
462
463       if ((thepid = mutt_create_filter_fd (command, NULL, NULL, NULL,
464                                            use_pipe ? tempfd : -1,
465                                            use_pager ? pagerfd : -1,
466                                            -1)) == -1) {
467         if (pagerfd != -1)
468           close (pagerfd);
469
470         if (tempfd != -1)
471           close (tempfd);
472
473         mutt_error _("Cannot create filter");
474
475         goto return_error;
476       }
477
478       if (use_pager) {
479         if (a->description)
480           snprintf (descrip, sizeof (descrip),
481                     "---Command: %-20.20s Description: %s",
482                     command, a->description);
483         else
484           snprintf (descrip, sizeof (descrip),
485                     "---Command: %-30.30s Attachment: %s", command, type);
486       }
487
488       if ((mutt_wait_filter (thepid) || (entry->needsterminal &&
489                                          option (OPTWAITKEY))) && !use_pager)
490         mutt_any_key_to_continue (NULL);
491
492       close (tempfd);
493       close (pagerfd);
494
495     }
496     else {
497       /* interactive command */
498       if (mutt_system (command) ||
499           (entry->needsterminal && option (OPTWAITKEY)))
500         mutt_any_key_to_continue (NULL);
501     }
502   }
503   else {
504     /* Don't use mailcap; the attachment is viewed in the pager */
505
506     if (flag == M_AS_TEXT) {
507       unlink(pagerfile);
508       close(pagerfd);
509       /* just let me see the raw data */
510       if (mutt_save_attachment (fp, a, pagerfile, 0, NULL))
511         goto return_error;
512     }
513     else {
514       /* Use built-in handler */
515       set_option (OPTVIEWATTACH);       /* disable the "use 'v' to view this part"
516                                          * message in case of error */
517       if (mutt_decode_save_attachment (fp, a, pagerfd, M_DISPLAY)) {
518         unset_option (OPTVIEWATTACH);
519         goto return_error;
520       }
521       unset_option (OPTVIEWATTACH);
522     }
523
524     if (a->description)
525       m_strcpy(descrip, sizeof(descrip), a->description);
526     else if (a->filename)
527       snprintf (descrip, sizeof (descrip), "---Attachment: %s : %s",
528                 a->filename, type);
529     else
530       snprintf (descrip, sizeof (descrip), "---Attachment: %s", type);
531   }
532
533   /* We only reach this point if there have been no errors */
534
535   if (use_pager) {
536     pager_t info = { Context, hdr, a, fp, idx, idxlen };
537     rc = mutt_pager(descrip, pagerfile,
538                     M_PAGER_ATTACHMENT | (is_message ? M_PAGER_MESSAGE : 0),
539                     &info);
540     *pagerfile = '\0';
541   }
542   else
543     rc = 0;
544
545 return_error:
546
547   if (entry)
548     rfc1524_entry_delete(&entry);
549   if (fp && tempfile[0])
550     mutt_unlink (tempfile);
551   else if (unlink_tempfile)
552     unlink (tempfile);
553
554   if (pagerfile[0])
555     mutt_unlink (pagerfile);
556
557   return rc;
558 }
559
560 /* returns 1 on success, 0 on error */
561 int mutt_pipe_attachment(FILE * fp, BODY * b, const char *path, int out)
562 {
563   pid_t thepid;
564   int rv = 0;
565
566   mutt_endwin (NULL);
567
568   if (fp) {
569     /* recv case */
570     STATE s;
571     p_clear(&s, 1);
572
573     if (out >= 0)
574       thepid = mutt_create_filter_fd(path, &s.fpout, NULL, NULL, -1, out, -1);
575     else
576       thepid = mutt_create_filter(path, &s.fpout, NULL, NULL);
577
578     if (thepid < 0) {
579       mutt_perror (_("Can't create filter"));
580
581       goto bail;
582     }
583
584     s.fpin = fp;
585     mutt_decode_attachment (b, &s);
586     m_fclose(&s.fpout);
587   } else {
588     /* send case */
589
590     FILE *ifp, *ofp;
591
592     if ((ifp = fopen (b->filename, "r")) == NULL) {
593       mutt_perror ("fopen");
594       return 0;
595     }
596
597     if (out >= 0)
598       thepid = mutt_create_filter_fd(path, &ofp, NULL, NULL, -1, out, -1);
599     else
600       thepid = mutt_create_filter(path, &ofp, NULL, NULL);
601
602     if (thepid < 0) {
603       mutt_perror (_("Can't create filter"));
604
605       m_fclose(&ifp);
606       goto bail;
607     }
608
609     mutt_copy_stream (ifp, ofp);
610     m_fclose(&ofp);
611     m_fclose(&ifp);
612   }
613
614   rv = 1;
615
616 bail:
617
618   if (out >= 0)
619     close(out);
620
621   /*
622    * check for error exit from child process
623    */
624   if (mutt_wait_filter(thepid) != 0)
625     rv = 0;
626
627   if (rv == 0 || option(OPTWAITKEY))
628     mutt_any_key_to_continue (NULL);
629   return rv;
630 }
631
632 static FILE *mutt_save_attachment_open (char *path, int flags)
633 {
634   if (flags == M_SAVE_APPEND)
635     return fopen (path, "a");
636   /* be sure not to change the following fopen to safe_fopen
637    * as safe_fopen returns w/ an error if path exists
638    */
639   if (flags == M_SAVE_OVERWRITE)
640     return fopen (path, "w");
641
642   return safe_fopen (path, "w");
643 }
644
645 /* returns 0 on success, -1 on error */
646 int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags,
647                           HEADER * hdr)
648 {
649   if (fp) {
650
651     /* recv mode */
652
653     if (hdr &&
654         m->hdr &&
655         m->encoding != ENCBASE64 &&
656         m->encoding != ENCQUOTEDPRINTABLE &&
657         mutt_is_message_type(m)) {
658       /* message type attachments are written to mail folders. */
659
660       char buf[HUGE_STRING];
661       HEADER *hn;
662       CONTEXT ctx;
663       MESSAGE *msg;
664       int chflags = 0;
665       int r = -1;
666
667       hn = m->hdr;
668       hn->msgno = hdr->msgno;   /* required for MH/maildir */
669       hn->read = 1;
670
671       fseeko (fp, m->offset, 0);
672       if (fgets (buf, sizeof (buf), fp) == NULL)
673         return -1;
674       if (mx_open_mailbox (path, M_APPEND | M_QUIET, &ctx) == NULL)
675         return -1;
676       if ((msg =
677            mx_open_new_message (&ctx, hn,
678                                 is_from (buf, NULL, 0,
679                                          NULL) ? 0 : M_ADD_FROM)) == NULL) {
680         mx_close_mailbox (&ctx, NULL);
681         return -1;
682       }
683       if (ctx.magic == M_MBOX)
684         chflags = CH_FROM;
685       chflags |= (ctx.magic == M_MAILDIR ? CH_NOSTATUS : CH_UPDATE);
686       if (_mutt_copy_message (msg->fp, fp, hn, hn->content, 0, chflags) == 0
687           && mx_commit_message (msg, &ctx) == 0)
688         r = 0;
689       else
690         r = -1;
691
692       mx_close_message (&msg);
693       mx_close_mailbox (&ctx, NULL);
694       return r;
695     }
696     else {
697       /* In recv mode, extract from folder and decode */
698
699       STATE s;
700       p_clear(&s, 1);
701
702       if ((s.fpout = mutt_save_attachment_open (path, flags)) == NULL) {
703         mutt_perror ("fopen");
704         return (-1);
705       }
706       fseeko ((s.fpin = fp), m->offset, 0);
707       mutt_decode_attachment (m, &s);
708
709       if (m_fclose(&s.fpout) != 0) {
710         mutt_perror ("fclose");
711         return (-1);
712       }
713     }
714   } else {
715     /* In send mode, just copy file */
716
717     FILE *ofp, *nfp;
718
719     if ((ofp = fopen (m->filename, "r")) == NULL) {
720       mutt_perror ("fopen");
721       return (-1);
722     }
723
724     if ((nfp = mutt_save_attachment_open (path, flags)) == NULL) {
725       mutt_perror ("fopen");
726       m_fclose(&ofp);
727       return (-1);
728     }
729
730     if (mutt_copy_stream (ofp, nfp) == -1) {
731       mutt_error _("Write fault!");
732
733       m_fclose(&ofp);
734       m_fclose(&nfp);
735       return (-1);
736     }
737     m_fclose(&ofp);
738     m_fclose(&nfp);
739   }
740
741   return 0;
742 }
743
744 /* returns 0 on success, -1 on error */
745 int mutt_decode_save_attachment (FILE * fp, BODY * m, int pathfd,
746                                  int displaying)
747 {
748   STATE s;
749   unsigned int saved_encoding = 0;
750   BODY *saved_parts = NULL;
751   HEADER *saved_hdr = NULL;
752
753   p_clear(&s, 1);
754   s.flags = displaying;
755   s.fpout = fdopen (pathfd, "w");
756
757   if (s.fpout == NULL) {
758     close(pathfd);
759     mutt_perror ("fopen");
760     return (-1);
761   }
762
763   if (fp == NULL) {
764     /* When called from the compose menu, the attachment isn't parsed,
765      * so we need to do it here. */
766     struct stat st;
767
768     if (stat (m->filename, &st) == -1) {
769       mutt_perror ("stat");
770       m_fclose(&s.fpout);
771       return (-1);
772     }
773
774     if ((s.fpin = fopen (m->filename, "r")) == NULL) {
775       mutt_perror ("fopen");
776       return (-1);
777     }
778
779     saved_encoding = m->encoding;
780     if (!is_multipart (m))
781       m->encoding = ENC8BIT;
782
783     m->length = st.st_size;
784     m->offset = 0;
785     saved_parts = m->parts;
786     saved_hdr = m->hdr;
787     mutt_parse_part (s.fpin, m);
788
789     if (m->noconv || is_multipart (m))
790       s.flags |= M_CHARCONV;
791   }
792   else {
793     s.fpin = fp;
794     s.flags |= M_CHARCONV;
795   }
796
797   mutt_body_handler (m, &s);
798
799   m_fclose(&s.fpout);
800   if (fp == NULL) {
801     m->length = 0;
802     m->encoding = saved_encoding;
803     if (saved_parts) {
804       header_delete(&m->hdr);
805       m->parts = saved_parts;
806       m->hdr = saved_hdr;
807     }
808     m_fclose(&s.fpin);
809   }
810
811   return (0);
812 }
813
814 /* Ok, the difference between send and receive:
815  * recv: BODY->filename is a suggested name, and Context|HEADER points
816  *       to the attachment in mailbox which is encooded
817  * send: BODY->filename points to the un-encoded file which contains the 
818  *       attachment
819  */
820
821 int mutt_print_attachment (FILE * fp, BODY * a)
822 {
823   char newfile[_POSIX_PATH_MAX] = "";
824   char type[STRING];
825   pid_t thepid;
826   FILE *ifp, *fpout;
827   short unlink_newfile = 0;
828   int tok;
829
830   snprintf (type, sizeof (type), "%s/%s", TYPE (a), a->subtype);
831
832   if (rfc1524_mailcap_lookup (a, type, NULL, M_PRINT)) {
833     char command[_POSIX_PATH_MAX + STRING];
834     rfc1524_entry *entry;
835     int piped = FALSE;
836
837     entry = rfc1524_entry_new();
838     rfc1524_mailcap_lookup (a, type, entry, M_PRINT);
839     if (rfc1524_expand_filename (entry->nametemplate, a->filename,
840                                  newfile, sizeof (newfile))) {
841       if (!fp) {
842         if (safe_symlink (a->filename, newfile) == -1) {
843           if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)
844               != M_YES) {
845             rfc1524_entry_delete(&entry);
846             return 0;
847           }
848           m_strcpy(newfile, sizeof(newfile), a->filename);
849         }
850         else
851           unlink_newfile = 1;
852       }
853     }
854
855     /* in recv mode, save file to newfile first */
856     if (fp)
857       mutt_save_attachment (fp, a, newfile, 0, NULL);
858
859     m_strcpy(command, sizeof(command), entry->printcommand);
860     piped = rfc1524_expand_command(a, newfile, type, command,
861                                    sizeof(command));
862
863     mutt_endwin (NULL);
864
865     /* interactive program */
866     if (piped) {
867       if ((ifp = fopen (newfile, "r")) == NULL) {
868         mutt_perror ("fopen");
869         rfc1524_entry_delete(&entry);
870         return (0);
871       }
872
873       if ((thepid = mutt_create_filter (command, &fpout, NULL, NULL)) < 0) {
874         mutt_perror (_("Can't create filter"));
875
876         rfc1524_entry_delete(&entry);
877         m_fclose(&ifp);
878         return 0;
879       }
880       mutt_copy_stream (ifp, fpout);
881       m_fclose(&fpout);
882       m_fclose(&ifp);
883       if (mutt_wait_filter (thepid) || option (OPTWAITKEY))
884         mutt_any_key_to_continue (NULL);
885     }
886     else {
887       if (mutt_system (command) || option (OPTWAITKEY))
888         mutt_any_key_to_continue (NULL);
889     }
890
891     if (fp)
892       mutt_unlink (newfile);
893     else if (unlink_newfile)
894       unlink (newfile);
895
896     rfc1524_entry_delete(&entry);
897     return (1);
898   }
899
900   tok = mime_which_token(type, -1);
901   if (tok == MIME_TEXT_PLAIN || tok == MIME_APPLICATION_POSTSCRIPT) {
902     return mutt_pipe_attachment(fp, a, NONULL (PrintCmd), -1);
903   }
904
905   if (mutt_can_decode (a)) {
906     /* decode and print */
907
908     int rc = 0;
909     int newfile_fd = 0;
910
911     ifp = NULL;
912     fpout = NULL;
913
914     newfile_fd = m_tempfd(newfile, sizeof(newfile), NONULL(mod_core.tmpdir), NULL);
915     if (mutt_decode_save_attachment (fp, a, newfile_fd, M_PRINTING) == 0) {
916
917       if ((ifp = fopen(newfile, "r")) == NULL) {
918         mutt_perror ("fopen");
919         goto bail0;
920       }
921
922       mutt_endwin (NULL);
923       if ((thepid =
924            mutt_create_filter (NONULL (PrintCmd), &fpout, NULL, NULL)) < 0) {
925         mutt_perror (_("Can't create filter"));
926
927         goto bail0;
928       }
929
930       mutt_copy_stream(ifp, fpout);
931       m_fclose(&fpout);
932       m_fclose(&ifp);
933
934       if (mutt_wait_filter (thepid) != 0 || option (OPTWAITKEY))
935         mutt_any_key_to_continue (NULL);
936       rc = 1;
937     }
938   bail0:
939     m_fclose(&ifp);
940     m_fclose(&fpout);
941     mutt_unlink (newfile);
942     return rc;
943   } else {
944     mutt_error _("I don't know how to print that!");
945
946     return 0;
947   }
948 }
949
950 int mutt_attach_check (HEADER* hdr) {
951   int found = 0;
952   char buf[LONG_STRING];
953   char *p = NULL;
954   FILE* fp = NULL;
955   regmatch_t pmatch[1];
956
957   if (!hdr || !hdr->content || !((regex_t*) AttachRemindRegexp.rx) ||
958       (fp = safe_fopen (hdr->content->filename, "r")) == NULL)
959     return (0);
960
961   while (!found && fgets (buf, sizeof (buf), fp)) {
962     p = buf;
963     while (p && *p) {
964       if (regexec ((regex_t*) AttachRemindRegexp.rx, p, 1,
965                   pmatch, 0) == 0) {
966         found = 1;
967         break;
968       }
969       p++;
970     }
971   }
972   m_fclose(&fp);
973
974   return (found);
975 }