]> git.llucax.com Git - software/mutt-debian.git/blob - commands.c
upstream/548577-gpgme-1.2.patch: do not fail to open pgp signed message with libgpgme...
[software/mutt-debian.git] / commands.c
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * Copyright (C) 2000-4,2006 Thomas Roessler <roessler@does-not-exist.org>
4  * 
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  * 
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  * 
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */ 
19
20 #if HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 #include "mutt.h"
25 #include "mutt_curses.h"
26 #include "mutt_menu.h"
27 #include "mime.h"
28 #include "sort.h"
29 #include "mailbox.h"
30 #include "copy.h"
31 #include "mx.h"
32 #include "pager.h"
33 #include "mutt_crypt.h"
34 #include "mutt_idna.h"
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <fcntl.h>
38
39 #ifdef USE_IMAP
40 #include "imap.h"
41 #endif
42
43 #include "buffy.h"
44
45 #include <errno.h>
46 #include <unistd.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <sys/wait.h>
50 #include <sys/stat.h>
51 #include <sys/types.h>
52 #include <utime.h>
53
54 static const char *ExtPagerProgress = "all";
55
56 /* The folder the user last saved to.  Used by ci_save_message() */
57 static char LastSaveFolder[_POSIX_PATH_MAX] = "";
58
59 int mutt_display_message (HEADER *cur)
60 {
61   char tempfile[_POSIX_PATH_MAX], buf[LONG_STRING];
62   int rc = 0, builtin = 0;
63   int cmflags = M_CM_DECODE | M_CM_DISPLAY | M_CM_CHARCONV;
64   FILE *fpout = NULL;
65   FILE *fpfilterout = NULL;
66   pid_t filterpid = -1;
67   int res;
68
69   snprintf (buf, sizeof (buf), "%s/%s", TYPE (cur->content),
70             cur->content->subtype);
71
72   mutt_parse_mime_message (Context, cur);
73   mutt_message_hook (Context, cur, M_MESSAGEHOOK);
74
75   /* see if crytpo is needed for this message.  if so, we should exit curses */
76   if (WithCrypto && cur->security)
77   {
78     if (cur->security & ENCRYPT)
79     {
80       if (cur->security & APPLICATION_SMIME)
81         crypt_smime_getkeys (cur->env);
82       if(!crypt_valid_passphrase(cur->security))
83         return 0;
84
85       cmflags |= M_CM_VERIFY;
86     }
87     else if (cur->security & SIGN)
88     {
89       /* find out whether or not the verify signature */
90       if (query_quadoption (OPT_VERIFYSIG, _("Verify PGP signature?")) == M_YES)
91       {
92         cmflags |= M_CM_VERIFY;
93       }
94     }
95   }
96   
97   if (cmflags & M_CM_VERIFY || cur->security & ENCRYPT)
98   {
99     if (cur->security & APPLICATION_PGP)
100     {
101       if (cur->env->from)
102         crypt_pgp_invoke_getkeys (cur->env->from);
103       
104       crypt_invoke_message (APPLICATION_PGP);
105     }
106
107     if (cur->security & APPLICATION_SMIME)
108       crypt_invoke_message (APPLICATION_SMIME);
109   }
110
111
112   mutt_mktemp (tempfile);
113   if ((fpout = safe_fopen (tempfile, "w")) == NULL)
114   {
115     mutt_error _("Could not create temporary file!");
116     return (0);
117   }
118
119   if (DisplayFilter && *DisplayFilter) 
120   {
121     fpfilterout = fpout;
122     fpout = NULL;
123     /* mutt_endwin (NULL); */
124     filterpid = mutt_create_filter_fd (DisplayFilter, &fpout, NULL, NULL,
125                                        -1, fileno(fpfilterout), -1);
126     if (filterpid < 0)
127     {
128       mutt_error (_("Cannot create display filter"));
129       safe_fclose (&fpfilterout);
130       unlink (tempfile);
131       return 0;
132     }
133   }
134
135   if (!Pager || mutt_strcmp (Pager, "builtin") == 0)
136     builtin = 1;
137   else
138   {
139     struct hdr_format_info hfi;
140     hfi.ctx = Context;
141     hfi.pager_progress = ExtPagerProgress;
142     hfi.hdr = cur;
143     mutt_make_string_info (buf, sizeof (buf), NONULL(PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
144     fputs (buf, fpout);
145     fputs ("\n\n", fpout);
146   }
147
148   res = mutt_copy_message (fpout, Context, cur, cmflags,
149         (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) | CH_DECODE | CH_FROM | CH_DISPLAY);
150   if ((safe_fclose (&fpout) != 0 && errno != EPIPE) || res < 0)
151   {
152     mutt_error (_("Could not copy message"));
153     if (fpfilterout != NULL)
154     {
155       mutt_wait_filter (filterpid);
156       safe_fclose (&fpfilterout);
157     }
158     mutt_unlink (tempfile);
159     return 0;
160   }
161
162   if (fpfilterout != NULL && mutt_wait_filter (filterpid) != 0)
163     mutt_any_key_to_continue (NULL);
164
165   safe_fclose (&fpfilterout);   /* XXX - check result? */
166
167   
168   if (WithCrypto)
169   {
170     /* update crypto information for this message */
171     cur->security &= ~(GOODSIGN|BADSIGN);
172     cur->security |= crypt_query (cur->content);
173   
174     /* Remove color cache for this message, in case there
175        are color patterns for both ~g and ~V */
176     cur->pair = 0;
177   }
178
179   if (builtin)
180   {
181     pager_t info;
182
183     if (WithCrypto 
184         && (cur->security & APPLICATION_SMIME) && (cmflags & M_CM_VERIFY))
185     {
186       if (cur->security & GOODSIGN)
187       {
188         if (!crypt_smime_verify_sender(cur))
189           mutt_message ( _("S/MIME signature successfully verified."));
190         else
191           mutt_error ( _("S/MIME certificate owner does not match sender."));
192       }
193       else if (cur->security & PARTSIGN)
194         mutt_message (_("Warning: Part of this message has not been signed."));
195       else if (cur->security & SIGN || cur->security & BADSIGN)
196         mutt_error ( _("S/MIME signature could NOT be verified."));
197     }
198
199     if (WithCrypto 
200         && (cur->security & APPLICATION_PGP) && (cmflags & M_CM_VERIFY))
201     {
202       if (cur->security & GOODSIGN)
203         mutt_message (_("PGP signature successfully verified."));
204       else if (cur->security & PARTSIGN)
205         mutt_message (_("Warning: Part of this message has not been signed."));
206       else if (cur->security & SIGN)
207         mutt_message (_("PGP signature could NOT be verified."));
208     }
209
210     /* Invoke the builtin pager */
211     memset (&info, 0, sizeof (pager_t));
212     info.hdr = cur;
213     info.ctx = Context;
214     rc = mutt_pager (NULL, tempfile, M_PAGER_MESSAGE, &info);
215   }
216   else
217   {
218     int r;
219
220     mutt_endwin (NULL);
221     snprintf (buf, sizeof (buf), "%s %s", NONULL(Pager), tempfile);
222     if ((r = mutt_system (buf)) == -1)
223       mutt_error (_("Error running \"%s\"!"), buf);
224     unlink (tempfile);
225     keypad (stdscr, TRUE);
226     if (r != -1)
227       mutt_set_flag (Context, cur, M_READ, 1);
228     if (r != -1 && option (OPTPROMPTAFTER))
229     {
230       mutt_ungetch (mutt_any_key_to_continue _("Command: "), 0);
231       rc = km_dokey (MENU_PAGER);
232     }
233     else
234       rc = 0;
235   }
236
237   return rc;
238 }
239
240 void ci_bounce_message (HEADER *h, int *redraw)
241 {
242   char prompt[SHORT_STRING];
243   char scratch[SHORT_STRING];
244   char buf[HUGE_STRING] = { 0 };
245   ADDRESS *adr = NULL;
246   char *err = NULL;
247   int rc;
248
249  /* RfC 5322 mandates a From: header, so warn before bouncing
250   * messages without one */
251   if (h)
252   {
253     if (!h->env->from)
254     {
255       mutt_error _("Warning: message has no From: header");
256       mutt_sleep (2);
257     }
258   }
259   else if (Context)
260   {
261     for (rc = 0; rc < Context->msgcount; rc++)
262     {
263       if (Context->hdrs[rc]->tagged && !Context->hdrs[rc]->env->from)
264       {
265         mutt_error ("Warning: message has no From: header");
266         mutt_sleep (2);
267         break;
268       }
269     }
270   }
271
272   if(h)
273     strfcpy(prompt, _("Bounce message to: "), sizeof(prompt));
274   else
275     strfcpy(prompt, _("Bounce tagged messages to: "), sizeof(prompt));
276   
277   rc = mutt_get_field (prompt, buf, sizeof (buf), M_ALIAS);
278
279   if (option (OPTNEEDREDRAW))
280   {
281     unset_option (OPTNEEDREDRAW);
282     *redraw = REDRAW_FULL;
283   }
284
285   if (rc || !buf[0])
286     return;
287
288   if (!(adr = rfc822_parse_adrlist (adr, buf)))
289   {
290     mutt_error _("Error parsing address!");
291     return;
292   }
293
294   adr = mutt_expand_aliases (adr);
295
296   if (mutt_addrlist_to_idna (adr, &err) < 0)
297   {
298     mutt_error (_("Bad IDN: '%s'"), err);
299     FREE (&err);
300     rfc822_free_address (&adr);
301     return;
302   }
303
304   buf[0] = 0;
305   rfc822_write_address (buf, sizeof (buf), adr, 1);
306
307 #define extra_space (15 + 7 + 2)
308   snprintf (scratch, sizeof (scratch),
309            (h ? _("Bounce message to %s") : _("Bounce messages to %s")), buf);
310
311   if (mutt_strwidth (prompt) > COLS - extra_space)
312   {
313     mutt_format_string (prompt, sizeof (prompt),
314                         0, COLS-extra_space, FMT_LEFT, 0,
315                         scratch, sizeof (scratch), 0);
316     safe_strcat (prompt, sizeof (prompt), "...?");
317   }
318   else
319     snprintf (prompt, sizeof (prompt), "%s?", scratch);
320
321   if (query_quadoption (OPT_BOUNCE, prompt) != M_YES)
322   {
323     rfc822_free_address (&adr);
324     CLEARLINE (LINES - 1);
325     mutt_message (h ? _("Message not bounced.") : _("Messages not bounced."));
326     return;
327   }
328
329   CLEARLINE (LINES - 1);
330   
331   rc = mutt_bounce_message (NULL, h, adr);
332   rfc822_free_address (&adr);
333   /* If no error, or background, display message. */
334   if ((rc == 0) || (rc == S_BKG))
335     mutt_message (h ? _("Message bounced.") : _("Messages bounced."));
336 }
337
338 static void pipe_set_flags (int decode, int print, int *cmflags, int *chflags)
339 {
340   if (decode)
341   {
342     *cmflags |= M_CM_DECODE | M_CM_CHARCONV;
343     *chflags |= CH_DECODE | CH_REORDER;
344     
345     if (option (OPTWEED))
346     {
347       *chflags |= CH_WEED;
348       *cmflags |= M_CM_WEED;
349     }
350   }
351   
352   if (print)
353     *cmflags |= M_CM_PRINTING;
354   
355 }
356
357 static void pipe_msg (HEADER *h, FILE *fp, int decode, int print)
358 {
359   int cmflags = 0;
360   int chflags = CH_FROM;
361   
362   pipe_set_flags (decode, print, &cmflags, &chflags);
363
364   if (WithCrypto && decode && h->security & ENCRYPT)
365   {
366     if(!crypt_valid_passphrase(h->security))
367       return;
368     endwin ();
369   }
370
371   if (decode)
372     mutt_parse_mime_message (Context, h);
373
374   mutt_copy_message (fp, Context, h, cmflags, chflags);
375 }
376
377
378 /* the following code is shared between printing and piping */
379
380 static int _mutt_pipe_message (HEADER *h, char *cmd,
381                                int decode,
382                                int print,
383                                int split,
384                                char *sep)
385 {
386   
387   int i, rc = 0;
388   pid_t thepid;
389   FILE *fpout;
390   
391 /*   mutt_endwin (NULL); 
392
393      is this really needed here ? 
394      it makes the screen flicker on pgp and s/mime messages,
395      before asking for a passphrase...
396                                      Oliver Ehli */
397   if (h)
398   {
399
400     mutt_message_hook (Context, h, M_MESSAGEHOOK);
401
402     if (WithCrypto && decode)
403     {
404       mutt_parse_mime_message (Context, h);
405       if(h->security & ENCRYPT && !crypt_valid_passphrase(h->security))
406         return 1;
407     }
408     mutt_endwin (NULL);
409
410     if ((thepid = mutt_create_filter (cmd, &fpout, NULL, NULL)) < 0)
411     {
412       mutt_perror _("Can't create filter process");
413       return 1;
414     }
415       
416     pipe_msg (h, fpout, decode, print);
417     safe_fclose (&fpout);
418     rc = mutt_wait_filter (thepid);
419   }
420   else
421   { /* handle tagged messages */
422
423     if (WithCrypto && decode)
424     {
425       for (i = 0; i < Context->vcount; i++)
426         if(Context->hdrs[Context->v2r[i]]->tagged)
427         {
428           mutt_message_hook (Context, Context->hdrs[Context->v2r[i]], M_MESSAGEHOOK);
429           mutt_parse_mime_message(Context, Context->hdrs[Context->v2r[i]]);
430           if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT &&
431               !crypt_valid_passphrase(Context->hdrs[Context->v2r[i]]->security))
432             return 1;
433         }
434     }
435     
436     if (split)
437     {
438       for (i = 0; i < Context->vcount; i++)
439       {
440         if (Context->hdrs[Context->v2r[i]]->tagged)
441         {
442           mutt_message_hook (Context, Context->hdrs[Context->v2r[i]], M_MESSAGEHOOK);
443           mutt_endwin (NULL);
444           if ((thepid = mutt_create_filter (cmd, &fpout, NULL, NULL)) < 0)
445           {
446             mutt_perror _("Can't create filter process");
447             return 1;
448           }
449           pipe_msg (Context->hdrs[Context->v2r[i]], fpout, decode, print);
450           /* add the message separator */
451           if (sep)  fputs (sep, fpout);
452           safe_fclose (&fpout);
453           if (mutt_wait_filter (thepid) != 0)
454             rc = 1;
455         }
456       }
457     }
458     else
459     {
460       mutt_endwin (NULL);
461       if ((thepid = mutt_create_filter (cmd, &fpout, NULL, NULL)) < 0)
462       {
463         mutt_perror _("Can't create filter process");
464         return 1;
465       }
466       for (i = 0; i < Context->vcount; i++)
467       {
468         if (Context->hdrs[Context->v2r[i]]->tagged)
469         {
470           mutt_message_hook (Context, Context->hdrs[Context->v2r[i]], M_MESSAGEHOOK);
471           pipe_msg (Context->hdrs[Context->v2r[i]], fpout, decode, print);
472           /* add the message separator */
473           if (sep) fputs (sep, fpout);
474         }
475       }
476       safe_fclose (&fpout);
477       if (mutt_wait_filter (thepid) != 0)
478         rc = 1;
479     }
480   }
481
482   if (rc || option (OPTWAITKEY))
483     mutt_any_key_to_continue (NULL);
484   return rc;
485 }
486
487 void mutt_pipe_message (HEADER *h)
488 {
489   char buffer[LONG_STRING];
490
491   buffer[0] = 0;
492   if (mutt_get_field (_("Pipe to command: "), buffer, sizeof (buffer), M_CMD)
493       != 0 || !buffer[0])
494     return;
495
496   mutt_expand_path (buffer, sizeof (buffer));
497   _mutt_pipe_message (h, buffer,
498                       option (OPTPIPEDECODE),
499                       0, 
500                       option (OPTPIPESPLIT),
501                       PipeSep);
502 }
503
504 void mutt_print_message (HEADER *h)
505 {
506
507   if (quadoption (OPT_PRINT) && (!PrintCmd || !*PrintCmd))
508   {
509     mutt_message (_("No printing command has been defined."));
510     return;
511   }
512   
513   if (query_quadoption (OPT_PRINT,
514                         h ? _("Print message?") : _("Print tagged messages?"))
515                         != M_YES)
516     return;
517
518   if (_mutt_pipe_message (h, PrintCmd,
519                           option (OPTPRINTDECODE),
520                           1,
521                           option (OPTPRINTSPLIT),
522                           "\f") == 0)
523     mutt_message (h ? _("Message printed") : _("Messages printed"));
524   else
525     mutt_message (h ? _("Message could not be printed") :
526                   _("Messages could not be printed"));
527 }
528
529
530 int mutt_select_sort (int reverse)
531 {
532   int method = Sort; /* save the current method in case of abort */
533
534   switch (mutt_multi_choice (reverse ?
535                              _("Rev-Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore/s(p)am?: ") :
536                              _("Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore/s(p)am?: "),
537                              _("dfrsotuzcp")))
538   {
539   case -1: /* abort - don't resort */
540     return -1;
541
542   case 1: /* (d)ate */
543     Sort = SORT_DATE;
544     break;
545
546   case 2: /* (f)rm */
547     Sort = SORT_FROM;
548     break;
549   
550   case 3: /* (r)ecv */
551     Sort = SORT_RECEIVED;
552     break;
553   
554   case 4: /* (s)ubj */
555     Sort = SORT_SUBJECT;
556     break;
557   
558   case 5: /* t(o) */
559     Sort = SORT_TO;
560     break;
561   
562   case 6: /* (t)hread */
563     Sort = SORT_THREADS;
564     break;
565   
566   case 7: /* (u)nsort */
567     Sort = SORT_ORDER;
568     break;
569   
570   case 8: /* si(z)e */
571     Sort = SORT_SIZE;
572     break;
573   
574   case 9: /* s(c)ore */ 
575     Sort = SORT_SCORE;
576     break;
577
578   case 10: /* s(p)am */
579     Sort = SORT_SPAM;
580     break;
581   }
582   if (reverse)
583     Sort |= SORT_REVERSE;
584
585   return (Sort != method ? 0 : -1); /* no need to resort if it's the same */
586 }
587
588 /* invoke a command in a subshell */
589 void mutt_shell_escape (void)
590 {
591   char buf[LONG_STRING];
592
593   buf[0] = 0;
594   if (mutt_get_field (_("Shell command: "), buf, sizeof (buf), M_CMD) == 0)
595   {
596     if (!buf[0] && Shell)
597       strfcpy (buf, Shell, sizeof (buf));
598     if(buf[0])
599     {
600       CLEARLINE (LINES-1);
601       mutt_endwin (NULL);
602       fflush (stdout);
603       if (mutt_system (buf) != 0 || option (OPTWAITKEY))
604         mutt_any_key_to_continue (NULL);
605     }
606   }
607 }
608
609 /* enter a mutt command */
610 void mutt_enter_command (void)
611 {
612   BUFFER err, token;
613   char buffer[LONG_STRING], errbuf[LONG_STRING];
614   int r;
615
616   buffer[0] = 0;
617   if (mutt_get_field (":", buffer, sizeof (buffer), M_COMMAND) != 0 || !buffer[0])
618     return;
619   err.data = errbuf;
620   err.dsize = sizeof (errbuf);
621   memset (&token, 0, sizeof (token));
622   r = mutt_parse_rc_line (buffer, &token, &err);
623   FREE (&token.data);
624   if (errbuf[0])
625   {
626     /* since errbuf could potentially contain printf() sequences in it,
627        we must call mutt_error() in this fashion so that vsprintf()
628        doesn't expect more arguments that we passed */
629     if (r == 0)
630       mutt_message ("%s", errbuf);
631     else
632       mutt_error ("%s", errbuf);
633   }
634 }
635
636 void mutt_display_address (ENVELOPE *env)
637 {
638   char *pfx = NULL;
639   char buf[SHORT_STRING];
640   ADDRESS *adr = NULL;
641
642   adr = mutt_get_address (env, &pfx);
643
644   if (!adr) return;
645   
646   /* 
647    * Note: We don't convert IDNA to local representation this time.
648    * That is intentional, so the user has an opportunity to copy &
649    * paste the on-the-wire form of the address to other, IDN-unable
650    * software. 
651    */
652   
653   buf[0] = 0;
654   rfc822_write_address (buf, sizeof (buf), adr, 0);
655   mutt_message ("%s: %s", pfx, buf);
656 }
657
658 static void set_copy_flags (HEADER *hdr, int decode, int decrypt, int *cmflags, int *chflags)
659 {
660   *cmflags = 0;
661   *chflags = CH_UPDATE_LEN;
662   
663   if (WithCrypto && !decode && decrypt && (hdr->security & ENCRYPT))
664   {
665     if ((WithCrypto & APPLICATION_PGP)
666         && mutt_is_multipart_encrypted(hdr->content))
667     {
668       *chflags = CH_NONEWLINE | CH_XMIT | CH_MIME;
669       *cmflags = M_CM_DECODE_PGP;
670     }
671     else if ((WithCrypto & APPLICATION_PGP)
672               && mutt_is_application_pgp (hdr->content) & ENCRYPT)
673       decode = 1;
674     else if ((WithCrypto & APPLICATION_SMIME)
675              && mutt_is_application_smime(hdr->content) & ENCRYPT)
676     {
677       *chflags = CH_NONEWLINE | CH_XMIT | CH_MIME;
678       *cmflags = M_CM_DECODE_SMIME;
679     }
680   }
681
682   if (decode)
683   {
684     *chflags = CH_XMIT | CH_MIME | CH_TXTPLAIN;
685     *cmflags = M_CM_DECODE | M_CM_CHARCONV;
686
687     if (!decrypt)       /* If decode doesn't kick in for decrypt, */
688     {
689       *chflags |= CH_DECODE;    /* then decode RFC 2047 headers, */
690
691       if (option (OPTWEED))
692       {
693         *chflags |= CH_WEED;    /* and respect $weed. */
694         *cmflags |= M_CM_WEED;
695       }
696     }
697   }
698 }
699
700 int _mutt_save_message (HEADER *h, CONTEXT *ctx, int delete, int decode, int decrypt)
701 {
702   int cmflags, chflags;
703   int rc;
704   
705   set_copy_flags (h, decode, decrypt, &cmflags, &chflags);
706
707   if (decode || decrypt)
708     mutt_parse_mime_message (Context, h);
709
710   if ((rc = mutt_append_message (ctx, Context, h, cmflags, chflags)) != 0)
711     return rc;
712
713   if (delete)
714   {
715     mutt_set_flag (Context, h, M_DELETE, 1);
716     if (option (OPTDELETEUNTAG))
717       mutt_set_flag (Context, h, M_TAG, 0);
718   }
719   
720   return 0;
721 }
722
723 /* returns 0 if the copy/save was successful, or -1 on error/abort */
724 int mutt_save_message (HEADER *h, int delete, 
725                        int decode, int decrypt, int *redraw)
726 {
727   int i, need_buffy_cleanup;
728   int need_passphrase = 0, app=0;
729   char prompt[SHORT_STRING], buf[_POSIX_PATH_MAX];
730   CONTEXT ctx;
731   struct stat st;
732
733   *redraw = 0;
734
735   
736   snprintf (prompt, sizeof (prompt),
737             decode  ? (delete ? _("Decode-save%s to mailbox") :
738                        _("Decode-copy%s to mailbox")) :
739             (decrypt ? (delete ? _("Decrypt-save%s to mailbox") :
740                         _("Decrypt-copy%s to mailbox")) :
741              (delete ? _("Save%s to mailbox") : _("Copy%s to mailbox"))),
742             h ? "" : _(" tagged"));
743   
744
745   if (h)
746   {
747     if (WithCrypto)
748     {
749       need_passphrase = h->security & ENCRYPT;
750       app = h->security;
751     }
752     mutt_message_hook (Context, h, M_MESSAGEHOOK);
753     mutt_default_save (buf, sizeof (buf), h);
754   }
755   else
756   {
757     /* look for the first tagged message */
758
759     for (i = 0; i < Context->vcount; i++)
760     {
761       if (Context->hdrs[Context->v2r[i]]->tagged)
762       {
763         h = Context->hdrs[Context->v2r[i]];
764         break;
765       }
766     }
767
768
769     if (h)
770     {
771       mutt_message_hook (Context, h, M_MESSAGEHOOK);
772       mutt_default_save (buf, sizeof (buf), h);
773       if (WithCrypto)
774       {
775         need_passphrase = h->security & ENCRYPT;
776         app = h->security;
777       }
778       h = NULL;
779     }
780   }
781
782   mutt_pretty_mailbox (buf, sizeof (buf));
783   if (mutt_enter_fname (prompt, buf, sizeof (buf), redraw, 0) == -1)
784     return (-1);
785
786   if (*redraw != REDRAW_FULL)
787   {
788     if (!h)
789       *redraw = REDRAW_INDEX | REDRAW_STATUS;
790     else
791       *redraw = REDRAW_STATUS;
792   }
793
794   if (!buf[0])
795     return (-1);
796  
797   /* This is an undocumented feature of ELM pointed out to me by Felix von
798    * Leitner <leitner@prz.fu-berlin.de>
799    */
800   if (mutt_strcmp (buf, ".") == 0)
801     strfcpy (buf, LastSaveFolder, sizeof (buf));
802   else
803     strfcpy (LastSaveFolder, buf, sizeof (LastSaveFolder));
804
805   mutt_expand_path (buf, sizeof (buf));
806
807   /* check to make sure that this file is really the one the user wants */
808   if (mutt_save_confirm (buf, &st) != 0)
809     return -1;
810
811   if (WithCrypto && need_passphrase && (decode || decrypt)
812       && !crypt_valid_passphrase(app))
813     return -1;
814   
815   mutt_message (_("Copying to %s..."), buf);
816   
817 #ifdef USE_IMAP
818   if (Context->magic == M_IMAP && 
819       !(decode || decrypt) && mx_is_imap (buf))
820   {
821     switch (imap_copy_messages (Context, h, buf, delete))
822     {
823       /* success */
824       case 0: mutt_clear_error (); return 0;
825       /* non-fatal error: fall through to fetch/append */
826       case 1: break;
827       /* fatal error, abort */
828       case -1: return -1;
829     }
830   }
831 #endif
832
833   if (mx_open_mailbox (buf, M_APPEND, &ctx) != NULL)
834   {
835     if (h)
836     {
837       if (_mutt_save_message(h, &ctx, delete, decode, decrypt) != 0)
838       {
839         mx_close_mailbox (&ctx, NULL);
840         return -1;
841       }
842     }
843     else
844     {
845       for (i = 0; i < Context->vcount; i++)
846       {
847         if (Context->hdrs[Context->v2r[i]]->tagged)
848         {
849           mutt_message_hook (Context, Context->hdrs[Context->v2r[i]], M_MESSAGEHOOK);
850           if (_mutt_save_message(Context->hdrs[Context->v2r[i]],
851                              &ctx, delete, decode, decrypt) != 0)
852           {
853             mx_close_mailbox (&ctx, NULL);
854             return -1;
855           }
856         }
857       }
858     }
859
860     need_buffy_cleanup = (ctx.magic == M_MBOX || ctx.magic == M_MMDF);
861
862     mx_close_mailbox (&ctx, NULL);
863
864     if (need_buffy_cleanup)
865       mutt_buffy_cleanup (ctx.path, &st);
866
867     mutt_clear_error ();
868     return (0);
869   }
870   
871   return -1;
872 }
873
874
875 void mutt_version (void)
876 {
877   mutt_message ("Mutt %s (%s)", MUTT_VERSION, ReleaseDate);
878 }
879
880 void mutt_edit_content_type (HEADER *h, BODY *b, FILE *fp)
881 {
882   char buf[LONG_STRING];
883   char obuf[LONG_STRING];
884   char tmp[STRING];
885   PARAMETER *p;
886
887   char charset[STRING];
888   char *cp;
889
890   short charset_changed = 0;
891   short type_changed = 0;
892   
893   cp = mutt_get_parameter ("charset", b->parameter);
894   strfcpy (charset, NONULL (cp), sizeof (charset));
895
896   snprintf (buf, sizeof (buf), "%s/%s", TYPE (b), b->subtype);
897   strfcpy (obuf, buf, sizeof (obuf));
898   if (b->parameter)
899   {
900     size_t l;
901     
902     for (p = b->parameter; p; p = p->next)
903     {
904       l = strlen (buf);
905
906       rfc822_cat (tmp, sizeof (tmp), p->value, MimeSpecials);
907       snprintf (buf + l, sizeof (buf) - l, "; %s=%s", p->attribute, tmp);
908     }
909   }
910   
911   if (mutt_get_field ("Content-Type: ", buf, sizeof (buf), 0) != 0 ||
912       buf[0] == 0)
913     return;
914   
915   /* clean up previous junk */
916   mutt_free_parameter (&b->parameter);
917   FREE (&b->subtype);
918   
919   mutt_parse_content_type (buf, b);
920
921   
922   snprintf (tmp, sizeof (tmp), "%s/%s", TYPE (b), NONULL (b->subtype));
923   type_changed = ascii_strcasecmp (tmp, obuf);
924   charset_changed = ascii_strcasecmp (charset, mutt_get_parameter ("charset", b->parameter));
925
926   /* if in send mode, check for conversion - current setting is default. */
927
928   if (!h && b->type == TYPETEXT && charset_changed)
929   {
930     int r;
931     snprintf (tmp, sizeof (tmp), _("Convert to %s upon sending?"),
932               mutt_get_parameter ("charset", b->parameter));
933     if ((r = mutt_yesorno (tmp, !b->noconv)) != -1)
934       b->noconv = (r == M_NO);
935   }
936
937   /* inform the user */
938   
939   snprintf (tmp, sizeof (tmp), "%s/%s", TYPE (b), NONULL (b->subtype));
940   if (type_changed)
941     mutt_message (_("Content-Type changed to %s."), tmp);
942   if (b->type == TYPETEXT && charset_changed)
943   {
944     if (type_changed)
945       mutt_sleep (1);
946     mutt_message (_("Character set changed to %s; %s."),
947                   mutt_get_parameter ("charset", b->parameter),
948                   b->noconv ? _("not converting") : _("converting"));
949   }
950
951   b->force_charset |= charset_changed ? 1 : 0;
952
953   if (!is_multipart (b) && b->parts)
954     mutt_free_body (&b->parts);
955   if (!mutt_is_message_type (b->type, b->subtype) && b->hdr)
956   {
957     b->hdr->content = NULL;
958     mutt_free_header (&b->hdr);
959   }
960
961   if (fp && (is_multipart (b) || mutt_is_message_type (b->type, b->subtype)))
962     mutt_parse_part (fp, b);
963   
964   if (WithCrypto && h)
965   {
966     if (h->content == b)
967       h->security  = 0;
968
969     h->security |= crypt_query (b);
970   }
971 }
972
973
974 static int _mutt_check_traditional_pgp (HEADER *h, int *redraw)
975 {
976   MESSAGE *msg;
977   int rv = 0;
978   
979   h->security |= PGP_TRADITIONAL_CHECKED;
980   
981   mutt_parse_mime_message (Context, h);
982   if ((msg = mx_open_message (Context, h->msgno)) == NULL)
983     return 0;
984   if (crypt_pgp_check_traditional (msg->fp, h->content, 0))
985   {
986     h->security = crypt_query (h->content);
987     *redraw |= REDRAW_FULL;
988     rv = 1;
989   }
990   
991   h->security |= PGP_TRADITIONAL_CHECKED;
992   mx_close_message (&msg);
993   return rv;
994 }
995
996 int mutt_check_traditional_pgp (HEADER *h, int *redraw)
997 {
998   int i;
999   int rv = 0;
1000   if (h && !(h->security & PGP_TRADITIONAL_CHECKED))
1001     rv = _mutt_check_traditional_pgp (h, redraw);
1002   else
1003   {
1004     for (i = 0; i < Context->vcount; i++)
1005       if (Context->hdrs[Context->v2r[i]]->tagged && 
1006           !(Context->hdrs[Context->v2r[i]]->security & PGP_TRADITIONAL_CHECKED))
1007         rv = _mutt_check_traditional_pgp (Context->hdrs[Context->v2r[i]], redraw)
1008           || rv;
1009   }
1010   return rv;
1011 }
1012
1013