revamp lib.[hc] functions into lib-lib/file.[hc].
[apps/madmutt.git] / compose.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 2004 g10 Code GmbH
5  *
6  * Parts were written/modified by:
7  * Nico Golde <nico@ngolde.de>
8  *
9  * This file is part of mutt-ng, see http://www.muttng.org/.
10  * It's licensed under the GNU General Public License,
11  * please see the file GPL in the top level source directory.
12  */
13
14 #if HAVE_CONFIG_H
15 # include "config.h"
16 #endif
17
18 #include <lib-lib/mem.h>
19 #include <lib-lib/str.h>
20 #include <lib-lib/macros.h>
21 #include <lib-lib/file.h>
22
23 #include "mutt.h"
24 #include "enter.h"
25 #include "mutt_curses.h"
26 #include "mutt_idna.h"
27 #include "mutt_menu.h"
28 #include "rfc1524.h"
29 #include "mime.h"
30 #include "attach.h"
31 #include "recvattach.h"
32 #include "mapping.h"
33 #include "sort.h"
34 #include "charset.h"
35 #include "mx.h"
36 #include "buffy.h"
37 #include "compose.h"
38
39 #ifdef MIXMASTER
40 #include "remailer.h"
41 #endif
42
43 #ifdef USE_NNTP
44 #include "nntp.h"
45 #endif
46
47
48 #include <errno.h>
49 #include <string.h>
50 #include <sys/stat.h>
51 #include <sys/wait.h>
52 #include <unistd.h>
53 #include <stdlib.h>
54
55 static const char *There_are_no_attachments = N_("There are no attachments.");
56
57 #define CHECK_COUNT if (idxlen == 0) { mutt_error _(There_are_no_attachments); break; }
58
59
60
61 enum {
62   HDR_FROM = 1,
63   HDR_TO,
64   HDR_CC,
65   HDR_BCC,
66   HDR_SUBJECT,
67   HDR_REPLYTO,
68   HDR_FCC,
69
70 #ifdef MIXMASTER
71   HDR_MIX,
72 #endif
73
74   HDR_CRYPT,
75   HDR_CRYPTINFO,
76
77 #ifdef USE_NNTP
78   HDR_NEWSGROUPS,
79   HDR_FOLLOWUPTO,
80   HDR_XCOMMENTTO,
81 #endif
82
83 #ifndef USE_NNTP
84   HDR_ATTACH = (HDR_FCC + 5)    /* where to start printing the attachments */
85 #else
86   HDR_ATTACH = (HDR_FCC + 7)
87 #endif
88 };
89
90 #define HDR_XOFFSET     14
91 #define TITLE_FMT       "%14s"        /* Used for Prompts, which are ASCII */
92 #define SW              (option(OPTMBOXPANE)?SidebarWidth:0)
93 #define W               (COLS - HDR_XOFFSET - SW)
94
95 static const char *Prompts[] = {
96   "From: ",
97   "To: ",
98   "Cc: ",
99   "Bcc: ",
100   "Subject: ",
101   "Reply-To: ",
102   "Fcc: "
103 #ifdef USE_NNTP
104 #ifdef MIXMASTER
105     , ""
106 #endif
107     , "", "", "Newsgroups: ", "Followup-To: ", "X-Comment-To: "
108 #endif
109 };
110
111 static struct mapping_t ComposeHelp[] = {
112   {N_("Send"), OP_COMPOSE_SEND_MESSAGE},
113   {N_("Abort"), OP_EXIT},
114   {"To", OP_COMPOSE_EDIT_TO},
115   {"CC", OP_COMPOSE_EDIT_CC},
116   {"Subj", OP_COMPOSE_EDIT_SUBJECT},
117   {N_("Attach file"), OP_COMPOSE_ATTACH_FILE},
118   {N_("Descrip"), OP_COMPOSE_EDIT_DESCRIPTION},
119   {N_("Help"), OP_HELP},
120   {NULL, OP_NULL}
121 };
122
123 #ifdef USE_NNTP
124 static struct mapping_t ComposeNewsHelp[] = {
125   {N_("Send"), OP_COMPOSE_SEND_MESSAGE},
126   {N_("Abort"), OP_EXIT},
127   {"Newsgroups", OP_COMPOSE_EDIT_NEWSGROUPS},
128   {"Subj", OP_COMPOSE_EDIT_SUBJECT},
129   {N_("Attach file"), OP_COMPOSE_ATTACH_FILE},
130   {N_("Descrip"), OP_COMPOSE_EDIT_DESCRIPTION},
131   {N_("Help"), OP_HELP},
132   {NULL, OP_NULL}
133 };
134 #endif
135
136 static void snd_entry (char *b, size_t blen, MUTTMENU * menu, int num) {
137   int w=(COLS-SW)>blen?blen:COLS-SW;
138   mutt_FormatString (b, w, NONULL (AttachFormat), mutt_attach_fmt,
139                      (unsigned long) (((ATTACHPTR **) menu->data)[num]),
140                      M_FORMAT_STAT_FILE | M_FORMAT_ARROWCURSOR);
141 }
142
143 #include "mutt_crypt.h"
144
145 static void redraw_crypt_lines (HEADER * msg)
146 {
147   int off = 0;
148
149   if ((WithCrypto & APPLICATION_PGP) && (WithCrypto & APPLICATION_SMIME)) {
150     if (!msg->security)
151       mvaddstr (HDR_CRYPT, SW, "    Security: ");
152     else if (msg->security & APPLICATION_SMIME)
153       mvaddstr (HDR_CRYPT, SW, "      S/MIME: ");
154     else if (msg->security & APPLICATION_PGP)
155       mvaddstr (HDR_CRYPT, SW, "         PGP: ");
156   }
157   else if ((WithCrypto & APPLICATION_SMIME))
158     mvaddstr (HDR_CRYPT, SW, "      S/MIME: ");
159   else if ((WithCrypto & APPLICATION_PGP))
160     mvaddstr (HDR_CRYPT, SW, "         PGP: ");
161   else
162     return;
163
164   if ((msg->security & (ENCRYPT | SIGN)) == (ENCRYPT | SIGN))
165     addstr (_("Sign, Encrypt"));
166   else if (msg->security & ENCRYPT)
167     addstr (_("Encrypt"));
168   else if (msg->security & SIGN)
169     addstr (_("Sign"));
170   else
171     addstr (_("Clear"));
172
173   if ((WithCrypto & APPLICATION_PGP))
174     if ((msg->security & APPLICATION_PGP)
175         && (msg->security & (ENCRYPT | SIGN))) {
176       if ((msg->security & INLINE))
177         addstr (_(" (inline)"));
178       else
179         addstr (_(" (PGP/MIME)"));
180     }
181   clrtoeol ();
182
183   move (HDR_CRYPTINFO, SW);
184   clrtoeol ();
185   if ((WithCrypto & APPLICATION_PGP)
186       && msg->security & APPLICATION_PGP && msg->security & SIGN)
187     printw ("%s%s", _("     sign as: "),
188             PgpSignAs ? PgpSignAs : _("<default>"));
189
190   if ((WithCrypto & APPLICATION_SMIME)
191       && msg->security & APPLICATION_SMIME && msg->security & SIGN) {
192     printw ("%s%s", _("     sign as: "),
193             SmimeDefaultKey ? SmimeDefaultKey : _("<default>"));
194   }
195
196   if ((WithCrypto & APPLICATION_SMIME)
197       && (msg->security & APPLICATION_SMIME)
198       && (msg->security & ENCRYPT)
199       && SmimeCryptAlg && *SmimeCryptAlg) {
200     mvprintw (HDR_CRYPTINFO, SW + 40, "%s%s", _("Encrypt with: "),
201               NONULL (SmimeCryptAlg));
202     off = 20;
203   }
204 }
205
206
207 #ifdef MIXMASTER
208
209 static void redraw_mix_line (LIST * chain)
210 {
211   int c;
212   const char *t;
213
214   mvaddstr (HDR_MIX, SW, "         Mix: ");
215
216   if (!chain) {
217     addstr ("<no chain defined>");
218     clrtoeol ();
219     return;
220   }
221
222   for (c = 12; chain; chain = chain->next) {
223     t = chain->data;
224     if (t && t[0] == '0' && t[1] == '\0')
225       t = "<random>";
226
227     if (c + m_strlen(t) + 2 >= COLS - SW)
228       break;
229
230     addstr (NONULL (t));
231     if (chain->next)
232       addstr (", ");
233
234     c += m_strlen(t) + 2;
235   }
236 }
237 #endif /* MIXMASTER */
238
239 static int check_attachments (ATTACHPTR ** idx, short idxlen)
240 {
241   int i, r;
242   struct stat st;
243   char pretty[_POSIX_PATH_MAX], msg[_POSIX_PATH_MAX + SHORT_STRING];
244
245   for (i = 0; i < idxlen; i++) {
246     strfcpy (pretty, idx[i]->content->filename, sizeof (pretty));
247     if (stat (idx[i]->content->filename, &st) != 0) {
248       mutt_pretty_mailbox (pretty);
249       mutt_error (_("%s [#%d] no longer exists!"), pretty, i + 1);
250       return -1;
251     }
252
253     if (idx[i]->content->stamp < st.st_mtime) {
254       mutt_pretty_mailbox (pretty);
255       snprintf (msg, sizeof (msg), _("%s [#%d] modified. Update encoding?"),
256                 pretty, i + 1);
257
258       if ((r = mutt_yesorno (msg, M_YES)) == M_YES)
259         mutt_update_encoding (idx[i]->content);
260       else if (r == -1)
261         return -1;
262     }
263   }
264
265   return 0;
266 }
267
268 static void draw_envelope_addr (int line, ADDRESS * addr)
269 {
270   char buf[STRING];
271
272   buf[0] = 0;
273   rfc822_write_address (buf, sizeof (buf), addr, 1);
274   mvprintw (line, SW, TITLE_FMT, Prompts[line - 1]);
275   mutt_paddstr (W, buf);
276 }
277
278 static void draw_envelope (HEADER * msg, char *fcc)
279 {
280   draw_envelope_addr (HDR_FROM, msg->env->from);
281 #ifdef USE_NNTP
282   if (!option (OPTNEWSSEND)) {
283 #endif
284     draw_envelope_addr (HDR_TO, msg->env->to);
285     draw_envelope_addr (HDR_CC, msg->env->cc);
286     draw_envelope_addr (HDR_BCC, msg->env->bcc);
287 #ifdef USE_NNTP
288   }
289   else {
290     mvprintw (HDR_TO, SW, TITLE_FMT, Prompts[HDR_NEWSGROUPS - 1]);
291     mutt_paddstr (W, NONULL (msg->env->newsgroups));
292     mvprintw (HDR_CC, SW, TITLE_FMT, Prompts[HDR_FOLLOWUPTO - 1]);
293     mutt_paddstr (W, NONULL (msg->env->followup_to));
294     if (option (OPTXCOMMENTTO)) {
295       mvprintw (HDR_BCC, 0, TITLE_FMT, Prompts[HDR_XCOMMENTTO - 1]);
296       mutt_paddstr (W, NONULL (msg->env->x_comment_to));
297     }
298   }
299 #endif
300   mvprintw (HDR_SUBJECT, SW, TITLE_FMT, Prompts[HDR_SUBJECT - 1]);
301   mutt_paddstr (W, NONULL (msg->env->subject));
302   draw_envelope_addr (HDR_REPLYTO, msg->env->reply_to);
303   mvprintw (HDR_FCC, SW, TITLE_FMT, Prompts[HDR_FCC - 1]);
304   mutt_paddstr (W, fcc);
305
306   if (WithCrypto)
307     redraw_crypt_lines (msg);
308
309 #ifdef MIXMASTER
310   redraw_mix_line (msg->chain);
311 #endif
312
313   SETCOLOR (MT_COLOR_STATUS);
314   mvaddstr (HDR_ATTACH - 1, SW, _("-- Attachments"));
315   BKGDSET (MT_COLOR_STATUS);
316   clrtoeol ();
317
318   BKGDSET (MT_COLOR_NORMAL);
319   SETCOLOR (MT_COLOR_NORMAL);
320 }
321
322 static int edit_address_list (int line, ADDRESS ** addr)
323 {
324   char buf[HUGE_STRING] = "";   /* needs to be large for alias expansion */
325   char *err = NULL;
326
327   mutt_addrlist_to_local (*addr);
328   rfc822_write_address (buf, sizeof (buf), *addr, 0);
329   if (mutt_get_field (Prompts[line - 1], buf, sizeof (buf), M_ALIAS) == 0) {
330     rfc822_free_address (addr);
331     *addr = mutt_parse_adrlist (*addr, buf);
332     *addr = mutt_expand_aliases (*addr);
333   }
334
335   if (option (OPTNEEDREDRAW)) {
336     unset_option (OPTNEEDREDRAW);
337     return (REDRAW_FULL);
338   }
339
340   if (mutt_addrlist_to_idna (*addr, &err) != 0) {
341     mutt_error (_("Warning: '%s' is a bad IDN."), err);
342     mutt_refresh ();
343     p_delete(&err);
344   }
345
346   /* redraw the expanded list so the user can see the result */
347   buf[0] = 0;
348   rfc822_write_address (buf, sizeof (buf), *addr, 1);
349   move (line, HDR_XOFFSET + SW);
350   mutt_paddstr (W, buf);
351
352   return 0;
353 }
354
355 static int delete_attachment (MUTTMENU * menu, short *idxlen, int x)
356 {
357   ATTACHPTR **idx = (ATTACHPTR **) menu->data;
358   int y;
359
360   menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
361
362   if (x == 0 && menu->max == 1) {
363     mutt_error _("You may not delete the only attachment.");
364
365     idx[x]->content->tagged = 0;
366     return (-1);
367   }
368
369   for (y = 0; y < *idxlen; y++) {
370     if (idx[y]->content->next == idx[x]->content) {
371       idx[y]->content->next = idx[x]->content->next;
372       break;
373     }
374   }
375
376   idx[x]->content->next = NULL;
377   idx[x]->content->parts = NULL;
378   mutt_free_body (&(idx[x]->content));
379   p_delete(&idx[x]->tree);
380   p_delete(&idx[x]);
381   for (; x < *idxlen - 1; x++)
382     idx[x] = idx[x + 1];
383   menu->max = --(*idxlen);
384
385   return (0);
386 }
387
388 static void update_idx (MUTTMENU * menu, ATTACHPTR ** idx, short idxlen)
389 {
390   idx[idxlen]->level = (idxlen > 0) ? idx[idxlen - 1]->level : 0;
391   if (idxlen)
392     idx[idxlen - 1]->content->next = idx[idxlen]->content;
393   idx[idxlen]->content->aptr = idx[idxlen];
394   menu->current = idxlen++;
395   mutt_update_tree (idx, idxlen);
396   menu->max = idxlen;
397   return;
398 }
399
400
401 /* 
402  * cum_attachs_size: Cumulative Attachments Size
403  *
404  * Returns the total number of bytes used by the attachments in the
405  * attachment list _after_ content-transfer-encodings have been
406  * applied.
407  * 
408  */
409
410 static unsigned long cum_attachs_size (MUTTMENU * menu)
411 {
412   size_t s;
413   unsigned short i;
414   ATTACHPTR **idx = menu->data;
415   CONTENT *info;
416   BODY *b;
417
418   for (i = 0, s = 0; i < menu->max; i++) {
419     b = idx[i]->content;
420
421     if (!b->content)
422       b->content = mutt_get_content_info (b->filename, b);
423
424     if ((info = b->content)) {
425       switch (b->encoding) {
426       case ENCQUOTEDPRINTABLE:
427         s += 3 * (info->lobin + info->hibin) + info->ascii + info->crlf;
428         break;
429       case ENCBASE64:
430         s += (4 * (info->lobin + info->hibin + info->ascii + info->crlf)) / 3;
431         break;
432       default:
433         s += info->lobin + info->hibin + info->ascii + info->crlf;
434         break;
435       }
436     }
437   }
438
439   return s;
440 }
441
442 /*
443  * compose_format_str()
444  *
445  * %a = total number of attachments 
446  * %h = hostname  [option]
447  * %l = approx. length of current message (in bytes) 
448  * %v = Mutt version 
449  *
450  * This function is similar to status_format_str().  Look at that function for
451  * help when modifying this function.
452  */
453
454 static const char *compose_format_str (char *buf, size_t buflen, char op,
455                                        const char *src, const char *prefix,
456                                        const char *ifstring,
457                                        const char *elsestring,
458                                        unsigned long data, format_flag flags)
459 {
460   char fmt[SHORT_STRING], tmp[SHORT_STRING];
461   int optional = (flags & M_FORMAT_OPTIONAL);
462   MUTTMENU *menu = (MUTTMENU *) data;
463
464   *buf = 0;
465   switch (op) {
466   case 'a':                    /* total number of attachments */
467     snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
468     snprintf (buf, buflen, fmt, menu->max);
469     break;
470
471   case 'h':                    /* hostname */
472     snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
473     snprintf (buf, buflen, fmt, NONULL (Hostname));
474     break;
475
476   case 'l':                    /* approx length of current message in bytes */
477     snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
478     mutt_pretty_size (tmp, sizeof (tmp), menu ? cum_attachs_size (menu) : 0);
479     snprintf (buf, buflen, fmt, tmp);
480     break;
481
482   case 'v':
483     strncpy (buf, mutt_make_version (0), buflen);
484     break;
485
486   case 0:
487     *buf = 0;
488     return (src);
489
490   default:
491     snprintf (buf, buflen, "%%%s%c", prefix, op);
492     break;
493   }
494
495   if (optional)
496     compose_status_line (buf, buflen, menu, ifstring);
497   else if (flags & M_FORMAT_OPTIONAL)
498     compose_status_line (buf, buflen, menu, elsestring);
499
500   return (src);
501 }
502
503 static void compose_status_line (char *buf, size_t buflen, MUTTMENU * menu,
504                                  const char *p)
505 {
506   int w=(COLS-SW)>buflen?buflen:(COLS-SW);
507   mutt_FormatString (buf, w, p, compose_format_str,
508                      (unsigned long) menu, 0);
509 }
510
511
512 /* return values:
513  *
514  * 1    message should be postponed
515  * 0    normal exit
516  * -1   abort message
517  */
518 int mutt_compose_menu (HEADER * msg,    /* structure for new message */
519                        char *fcc,       /* where to save a copy of the message */
520                        size_t fcclen, HEADER * cur)
521 {                               /* current message */
522   char helpstr[SHORT_STRING];
523   char buf[LONG_STRING];
524   char fname[_POSIX_PATH_MAX];
525   MUTTMENU *menu;
526   ATTACHPTR **idx = NULL;
527   short idxlen = 0;
528   short idxmax = 0;
529   int i, close = 0;
530   int r = -1;                   /* return value */
531   int op = 0;
532   int loop = 1;
533   int fccSet = 0;               /* has the user edited the Fcc: field ? */
534   CONTEXT *ctx = NULL, *this = NULL;
535
536   /* Sort, SortAux could be changed in mutt_index_menu() */
537   int oldSort, oldSortAux;
538   struct stat st;
539
540 #ifdef USE_NNTP
541   int news = 0;                 /* is it a news article ? */
542
543   if (option (OPTNEWSSEND))
544     news++;
545 #endif
546
547   mutt_attach_init (msg->content);
548   idx = mutt_gen_attach_list (msg->content, -1, idx, &idxlen, &idxmax, 0, 1);
549
550   menu = mutt_new_menu ();
551   menu->menu = MENU_COMPOSE;
552   menu->offset = HDR_ATTACH;
553   menu->max = idxlen;
554   menu->make_entry = snd_entry;
555   menu->tag = mutt_tag_attach;
556   menu->data = idx;
557 #ifdef USE_NNTP
558   if (news)
559     menu->help =
560       mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE,
561                          ComposeNewsHelp);
562   else
563 #endif
564     menu->help =
565       mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE,
566                          ComposeHelp);
567
568   if (option (OPTMBOXPANE))
569     buffy_check (0);
570   while (loop) {
571 #ifdef USE_NNTP
572     unset_option (OPTNEWS);     /* for any case */
573 #endif
574     switch (op = mutt_menuLoop (menu)) {
575     case OP_REDRAW:
576       draw_envelope (msg, fcc);
577       menu->offset = HDR_ATTACH;
578       menu->pagelen = LINES - HDR_ATTACH - 2;
579       break;
580     case OP_COMPOSE_EDIT_FROM:
581       menu->redraw = edit_address_list (HDR_FROM, &msg->env->from);
582       mutt_message_hook (NULL, msg, M_SEND2HOOK);
583       break;
584     case OP_COMPOSE_EDIT_TO:
585 #ifdef USE_NNTP
586       if (!news) {
587 #endif
588         menu->redraw = edit_address_list (HDR_TO, &msg->env->to);
589         mutt_message_hook (NULL, msg, M_SEND2HOOK);
590 #ifdef USE_NNTP
591       }
592 #endif
593       break;
594     case OP_COMPOSE_EDIT_BCC:
595 #ifdef USE_NNTP
596       if (!news) {
597 #endif
598         menu->redraw = edit_address_list (HDR_BCC, &msg->env->bcc);
599         mutt_message_hook (NULL, msg, M_SEND2HOOK);
600 #ifdef USE_NNTP
601       }
602 #endif
603       break;
604     case OP_COMPOSE_EDIT_CC:
605 #ifdef USE_NNTP
606       if (!news) {
607 #endif
608         menu->redraw = edit_address_list (HDR_CC, &msg->env->cc);
609         mutt_message_hook (NULL, msg, M_SEND2HOOK);
610 #ifdef USE_NNTP
611       }
612 #endif
613       break;
614 #ifdef USE_NNTP
615     case OP_COMPOSE_EDIT_NEWSGROUPS:
616       if (news) {
617         if (msg->env->newsgroups)
618           strfcpy (buf, msg->env->newsgroups, sizeof (buf));
619         else
620           buf[0] = 0;
621         if (mutt_get_field ("Newsgroups: ", buf, sizeof (buf), 0) == 0
622             && buf[0]) {
623           p_delete(&msg->env->newsgroups);
624           str_skip_trailws (buf);
625           msg->env->newsgroups = m_strdup(str_skip_initws (buf));
626           move (HDR_TO, HDR_XOFFSET);
627           clrtoeol ();
628           if (msg->env->newsgroups)
629             printw ("%-*.*s", W, W, msg->env->newsgroups);
630         }
631       }
632       break;
633
634     case OP_COMPOSE_EDIT_FOLLOWUP_TO:
635       if (news) {
636         buf[0] = 0;
637         if (msg->env->followup_to)
638           strfcpy (buf, msg->env->followup_to, sizeof (buf));
639         if (mutt_get_field ("Followup-To: ", buf, sizeof (buf), 0) == 0
640             && buf[0]) {
641           p_delete(&msg->env->followup_to);
642           str_skip_trailws (buf);
643           msg->env->followup_to = m_strdup(str_skip_initws (buf));
644           move (HDR_CC, HDR_XOFFSET);
645           clrtoeol ();
646           if (msg->env->followup_to)
647             printw ("%-*.*s", W, W, msg->env->followup_to);
648         }
649       }
650       break;
651
652     case OP_COMPOSE_EDIT_X_COMMENT_TO:
653       if (news && option (OPTXCOMMENTTO)) {
654         buf[0] = 0;
655         if (msg->env->x_comment_to)
656           strfcpy (buf, msg->env->x_comment_to, sizeof (buf));
657         if (mutt_get_field ("X-Comment-To: ", buf, sizeof (buf), 0) == 0
658             && buf[0]) {
659           p_delete(&msg->env->x_comment_to);
660           msg->env->x_comment_to = m_strdup(buf);
661           move (HDR_BCC, HDR_XOFFSET);
662           clrtoeol ();
663           if (msg->env->x_comment_to)
664             printw ("%-*.*s", W, W, msg->env->x_comment_to);
665         }
666       }
667       break;
668 #endif
669     case OP_COMPOSE_EDIT_SUBJECT:
670       if (msg->env->subject)
671         strfcpy (buf, msg->env->subject, sizeof (buf));
672       else
673         buf[0] = 0;
674       if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0) {
675         str_replace (&msg->env->subject, buf);
676         move (HDR_SUBJECT, HDR_XOFFSET + SW);
677         clrtoeol ();
678         if (msg->env->subject)
679           mutt_paddstr (W, msg->env->subject);
680       }
681       mutt_message_hook (NULL, msg, M_SEND2HOOK);
682       break;
683     case OP_COMPOSE_EDIT_REPLY_TO:
684       menu->redraw = edit_address_list (HDR_REPLYTO, &msg->env->reply_to);
685       mutt_message_hook (NULL, msg, M_SEND2HOOK);
686       break;
687     case OP_COMPOSE_EDIT_FCC:
688       strfcpy (buf, fcc, sizeof (buf));
689       if (mutt_get_field ("Fcc: ", buf, sizeof (buf), M_FILE | M_CLEAR) == 0) {
690         strfcpy (fcc, buf, _POSIX_PATH_MAX);
691         mutt_pretty_mailbox (fcc);
692         move (HDR_FCC, HDR_XOFFSET + SW);
693         mutt_paddstr (W, fcc);
694         fccSet = 1;
695       }
696       MAYBE_REDRAW (menu->redraw);
697       mutt_message_hook (NULL, msg, M_SEND2HOOK);
698       break;
699     case OP_COMPOSE_EDIT_MESSAGE:
700       if (Editor && (m_strcmp("builtin", Editor) != 0)
701           && !option (OPTEDITHDRS)) {
702         mutt_edit_file (Editor, msg->content->filename);
703         mutt_update_encoding (msg->content);
704         menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
705         mutt_message_hook (NULL, msg, M_SEND2HOOK);
706         break;
707       }
708       /* fall through */
709     case OP_COMPOSE_EDIT_HEADERS:
710       if (m_strcmp("builtin", Editor) != 0 &&
711           (op == OP_COMPOSE_EDIT_HEADERS ||
712            (op == OP_COMPOSE_EDIT_MESSAGE && option (OPTEDITHDRS)))) {
713         const char *tag = NULL;
714         char *err = NULL;
715
716         mutt_env_to_local (msg->env);
717         mutt_edit_headers (NONULL (Editor), msg->content->filename, msg,
718                            fcc, fcclen);
719         if (mutt_env_to_idna (msg->env, &tag, &err)) {
720           mutt_error (_("Bad IDN in \"%s\": '%s'"), tag, err);
721           p_delete(&err);
722         }
723       }
724       else {
725         /* this is grouped with OP_COMPOSE_EDIT_HEADERS because the
726            attachment list could change if the user invokes ~v to edit
727            the message with headers, in which we need to execute the
728            code below to regenerate the index array */
729         mutt_builtin_editor (msg->content->filename, msg, cur);
730       }
731       mutt_update_encoding (msg->content);
732
733       /* attachments may have been added */
734       if (idxlen && idx[idxlen - 1]->content->next) {
735         for (i = 0; i < idxlen; i++)
736           p_delete(&idx[i]);
737         idxlen = 0;
738         idx =
739           mutt_gen_attach_list (msg->content, -1, idx, &idxlen, &idxmax, 0,
740                                 1);
741         menu->data = idx;
742         menu->max = idxlen;
743       }
744
745       menu->redraw = REDRAW_FULL;
746       mutt_message_hook (NULL, msg, M_SEND2HOOK);
747       break;
748
749
750
751     case OP_COMPOSE_ATTACH_KEY:
752       if (!(WithCrypto & APPLICATION_PGP))
753         break;
754       if (idxlen == idxmax) {
755         p_realloc(&idx, idxmax += 5);
756         menu->data = idx;
757       }
758
759       idx[idxlen] = p_new(ATTACHPTR, 1);
760       if ((idx[idxlen]->content =
761            crypt_pgp_make_key_attachment (NULL)) != NULL) {
762         update_idx (menu, idx, idxlen++);
763         menu->redraw |= REDRAW_INDEX;
764       }
765       else
766         p_delete(&idx[idxlen]);
767
768       menu->redraw |= REDRAW_STATUS;
769
770       if (option (OPTNEEDREDRAW)) {
771         menu->redraw = REDRAW_FULL;
772         unset_option (OPTNEEDREDRAW);
773       }
774
775       mutt_message_hook (NULL, msg, M_SEND2HOOK);
776       break;
777
778
779     case OP_COMPOSE_ATTACH_FILE:
780       {
781         char *prompt, **files;
782         int error, numfiles;
783
784         fname[0] = 0;
785         prompt = _("Attach file");
786         numfiles = 0;
787         files = NULL;
788
789         if (_mutt_enter_fname
790             (prompt, fname, sizeof (fname), &menu->redraw, 0, 1, &files,
791              &numfiles) == -1 || *fname == '\0')
792           break;
793
794         if (idxlen + numfiles >= idxmax) {
795           p_realloc(&idx, idxmax += 5 + numfiles);
796           menu->data = idx;
797         }
798
799         error = 0;
800         if (numfiles > 1)
801           mutt_message _("Attaching selected files...");
802
803         for (i = 0; i < numfiles; i++) {
804           char *att = files[i];
805
806           idx[idxlen] = p_new(ATTACHPTR, 1);
807           idx[idxlen]->unowned = 1;
808           idx[idxlen]->content = mutt_make_file_attach (att);
809           if (idx[idxlen]->content != NULL)
810             update_idx (menu, idx, idxlen++);
811           else {
812             error = 1;
813             mutt_error (_("Unable to attach %s!"), att);
814             p_delete(&idx[idxlen]);
815           }
816         }
817
818         p_delete(&files);
819         if (!error)
820           mutt_clear_error ();
821
822         menu->redraw |= REDRAW_INDEX | REDRAW_STATUS;
823       }
824       mutt_message_hook (NULL, msg, M_SEND2HOOK);
825       break;
826
827     case OP_COMPOSE_ATTACH_MESSAGE:
828 #ifdef USE_NNTP
829     case OP_COMPOSE_ATTACH_NEWS_MESSAGE:
830 #endif
831       {
832         char *prompt;
833         HEADER *h;
834
835         fname[0] = 0;
836         prompt = _("Open mailbox to attach message from");
837
838 #ifdef USE_NNTP
839         unset_option (OPTNEWS);
840         if (op == OP_COMPOSE_ATTACH_NEWS_MESSAGE) {
841           if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer)))
842             break;
843
844           prompt = _("Open newsgroup to attach message from");
845           set_option (OPTNEWS);
846         }
847 #endif
848
849         if (Context)
850 #ifdef USE_NNTP
851           if ((op == OP_COMPOSE_ATTACH_MESSAGE) ^ (Context->magic == M_NNTP))
852 #endif
853           {
854             strfcpy (fname, NONULL (Context->path), sizeof (fname));
855             mutt_pretty_mailbox (fname);
856           }
857
858         if (mutt_enter_fname (prompt, fname, sizeof (fname), &menu->redraw, 1)
859             == -1 || !fname[0])
860           break;
861
862 #ifdef USE_NNTP
863         if (option (OPTNEWS))
864           nntp_expand_path (fname, sizeof (fname),
865                             &CurrentNewsSrv->conn->account);
866         else
867 #endif
868           mutt_expand_path (fname, sizeof (fname));
869 #ifdef USE_IMAP
870         if (mx_get_magic (fname) != M_IMAP)
871 #endif
872 #ifdef USE_POP
873           if (mx_get_magic (fname) != M_POP)
874 #endif
875 #ifdef USE_NNTP
876             if (mx_get_magic (fname) != M_NNTP && !option (OPTNEWS))
877 #endif
878               /* check to make sure the file exists and is readable */
879               if (access (fname, R_OK) == -1) {
880                 mutt_perror (fname);
881                 break;
882               }
883
884         menu->redraw = REDRAW_FULL;
885
886         ctx = mx_open_mailbox (fname, M_READONLY, NULL);
887         if (ctx == NULL) {
888           mutt_perror (fname);
889           break;
890         }
891
892         if (!ctx->msgcount) {
893           mx_close_mailbox (ctx, NULL);
894           p_delete(&ctx);
895           mutt_error _("No messages in that folder.");
896
897           break;
898         }
899
900         this = Context;         /* remember current folder and sort methods */
901         oldSort = Sort;
902         oldSortAux = SortAux;
903
904         Context = ctx;
905         set_option (OPTATTACHMSG);
906         mutt_message _("Tag the messages you want to attach!");
907
908         close = mutt_index_menu ();
909         unset_option (OPTATTACHMSG);
910
911         if (!Context) {
912           /* go back to the folder we started from */
913           Context = this;
914           /* Restore old $sort and $sort_aux */
915           Sort = oldSort;
916           SortAux = oldSortAux;
917           menu->redraw |= REDRAW_INDEX | REDRAW_STATUS;
918           break;
919         }
920
921         if (idxlen + Context->tagged >= idxmax) {
922           p_realloc(&idx, idxmax += 5 + Context->tagged);
923           menu->data = idx;
924         }
925
926         for (i = 0; i < Context->msgcount; i++) {
927           h = Context->hdrs[i];
928           if (h->tagged) {
929             idx[idxlen] = p_new(ATTACHPTR, 1);
930             idx[idxlen]->content = mutt_make_message_attach (Context, h, 1);
931             if (idx[idxlen]->content != NULL)
932               update_idx (menu, idx, idxlen++);
933             else {
934               mutt_error _("Unable to attach!");
935
936               p_delete(&idx[idxlen]);
937             }
938           }
939         }
940         menu->redraw |= REDRAW_FULL;
941
942         if (close == OP_QUIT)
943           mx_close_mailbox (Context, NULL);
944         else
945           mx_fastclose_mailbox (Context);
946         p_delete(&Context);
947
948         /* go back to the folder we started from */
949         Context = this;
950         /* Restore old $sort and $sort_aux */
951         Sort = oldSort;
952         SortAux = oldSortAux;
953       }
954       mutt_message_hook (NULL, msg, M_SEND2HOOK);
955       break;
956
957     case OP_DELETE:
958       CHECK_COUNT;
959       if (idx[menu->current]->unowned)
960         idx[menu->current]->content->unlink = 0;
961       if (delete_attachment (menu, &idxlen, menu->current) == -1)
962         break;
963       mutt_update_tree (idx, idxlen);
964       if (idxlen) {
965         if (menu->current > idxlen - 1)
966           menu->current = idxlen - 1;
967       }
968       else
969         menu->current = 0;
970
971       if (menu->current == 0)
972         msg->content = idx[0]->content;
973
974       menu->redraw |= REDRAW_STATUS;
975       mutt_message_hook (NULL, msg, M_SEND2HOOK);
976       break;
977
978 #define CURRENT idx[menu->current]->content
979
980     case OP_COMPOSE_TOGGLE_RECODE:
981       {
982         CHECK_COUNT;
983         if (!mutt_is_text_part (CURRENT)) {
984           mutt_error (_("Recoding only affects text attachments."));
985           break;
986         }
987         CURRENT->noconv = !CURRENT->noconv;
988         if (CURRENT->noconv)
989           mutt_message (_("The current attachment won't be converted."));
990         else
991           mutt_message (_("The current attachment will be converted."));
992         menu->redraw = REDRAW_CURRENT;
993         mutt_message_hook (NULL, msg, M_SEND2HOOK);
994         break;
995       }
996 #undef CURRENT
997
998     case OP_COMPOSE_EDIT_DESCRIPTION:
999       CHECK_COUNT;
1000       strfcpy (buf,
1001                idx[menu->current]->content->description ?
1002                idx[menu->current]->content->description : "", sizeof (buf));
1003       /* header names should not be translated */
1004       if (mutt_get_field ("Description: ", buf, sizeof (buf), 0) == 0) {
1005         str_replace (&idx[menu->current]->content->description, buf);
1006         menu->redraw = REDRAW_CURRENT;
1007       }
1008       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1009       break;
1010
1011     case OP_COMPOSE_UPDATE_ENCODING:
1012       CHECK_COUNT;
1013       if (menu->tagprefix) {
1014         BODY *top;
1015
1016         for (top = msg->content; top; top = top->next) {
1017           if (top->tagged)
1018             mutt_update_encoding (top);
1019         }
1020         menu->redraw = REDRAW_FULL;
1021       }
1022       else {
1023         mutt_update_encoding (idx[menu->current]->content);
1024         menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
1025       }
1026       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1027       break;
1028
1029     case OP_COMPOSE_TOGGLE_DISPOSITION:
1030       /* toggle the content-disposition between inline/attachment */
1031       idx[menu->current]->content->disposition =
1032         (idx[menu->current]->content->disposition ==
1033          DISPINLINE) ? DISPATTACH : DISPINLINE;
1034       menu->redraw = REDRAW_CURRENT;
1035       break;
1036
1037     case OP_EDIT_TYPE:
1038       CHECK_COUNT;
1039       {
1040         mutt_edit_content_type (NULL, idx[menu->current]->content, NULL);
1041
1042         /* this may have been a change to text/something */
1043         mutt_update_encoding (idx[menu->current]->content);
1044
1045         menu->redraw = REDRAW_CURRENT;
1046       }
1047       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1048       break;
1049
1050     case OP_COMPOSE_EDIT_ENCODING:
1051       CHECK_COUNT;
1052       strfcpy (buf, ENCODING (idx[menu->current]->content->encoding),
1053                sizeof (buf));
1054       if (mutt_get_field ("Content-Transfer-Encoding: ", buf,
1055                           sizeof (buf), 0) == 0 && buf[0]) {
1056         if ((i = mutt_check_encoding (buf)) != ENCOTHER && i != ENCUUENCODED) {
1057           idx[menu->current]->content->encoding = i;
1058           menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
1059           mutt_clear_error ();
1060         }
1061         else
1062           mutt_error _("Invalid encoding.");
1063       }
1064       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1065       break;
1066
1067     case OP_COMPOSE_SEND_MESSAGE:
1068
1069       /* Note: We don't invoke send2-hook here, since we want to leave
1070        * users an opportunity to change settings from the ":" prompt.
1071        */
1072
1073       if (check_attachments (idx, idxlen) != 0) {
1074         menu->redraw = REDRAW_FULL;
1075         break;
1076       }
1077
1078
1079 #ifdef MIXMASTER
1080       if (msg->chain && mix_check_message (msg) != 0)
1081         break;
1082 #endif
1083
1084       if (!fccSet && *fcc) {
1085         if ((i = query_quadoption (OPT_COPY,
1086                                    _("Save a copy of this message?"))) == -1)
1087           break;
1088         else if (i == M_NO)
1089           *fcc = 0;
1090       }
1091
1092       loop = 0;
1093       r = 0;
1094       break;
1095
1096     case OP_COMPOSE_EDIT_FILE:
1097       CHECK_COUNT;
1098       mutt_edit_file (NONULL (Editor), idx[menu->current]->content->filename);
1099       mutt_update_encoding (idx[menu->current]->content);
1100       menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
1101       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1102       break;
1103
1104     case OP_COMPOSE_TOGGLE_UNLINK:
1105       CHECK_COUNT;
1106       idx[menu->current]->content->unlink =
1107         !idx[menu->current]->content->unlink;
1108
1109 #if 0
1110       /* OPTRESOLVE is otherwise ignored on this menu.
1111        * Where's the bug?
1112        */
1113
1114       if (option (OPTRESOLVE) && menu->current + 1 < menu->max)
1115         menu->current++;
1116 # endif
1117       menu->redraw = REDRAW_INDEX;
1118       /* No send2hook since this doesn't change the message. */
1119       break;
1120
1121     case OP_COMPOSE_GET_ATTACHMENT:
1122       CHECK_COUNT;
1123       if (menu->tagprefix) {
1124         BODY *top;
1125
1126         for (top = msg->content; top; top = top->next) {
1127           if (top->tagged)
1128             mutt_get_tmp_attachment (top);
1129         }
1130         menu->redraw = REDRAW_FULL;
1131       }
1132       else if (mutt_get_tmp_attachment (idx[menu->current]->content) == 0)
1133         menu->redraw = REDRAW_CURRENT;
1134
1135       /* No send2hook since this doesn't change the message. */
1136       break;
1137
1138     case OP_COMPOSE_RENAME_FILE:
1139       CHECK_COUNT;
1140       strfcpy (fname, idx[menu->current]->content->filename, sizeof (fname));
1141       mutt_pretty_mailbox (fname);
1142       if (mutt_get_field (_("Rename to: "), fname, sizeof (fname), M_FILE)
1143           == 0 && fname[0]) {
1144         if (stat (idx[menu->current]->content->filename, &st) == -1) {
1145           mutt_error (_("Can't stat %s: %s"), fname, strerror (errno));
1146           break;
1147         }
1148
1149         mutt_expand_path (fname, sizeof (fname));
1150         if (mutt_rename_file (idx[menu->current]->content->filename, fname))
1151           break;
1152
1153         str_replace (&idx[menu->current]->content->filename, fname);
1154         menu->redraw = REDRAW_CURRENT;
1155
1156         if (idx[menu->current]->content->stamp >= st.st_mtime)
1157           mutt_stamp_attachment (idx[menu->current]->content);
1158
1159       }
1160       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1161       break;
1162
1163     case OP_COMPOSE_NEW_MIME:
1164       {
1165         char type[STRING];
1166         char *p;
1167         int itype;
1168         FILE *fp;
1169
1170         CLEARLINE (LINES - 1);
1171         fname[0] = 0;
1172         if (mutt_get_field (_("New file: "), fname, sizeof (fname), M_FILE)
1173             != 0 || !fname[0])
1174           continue;
1175         mutt_expand_path (fname, sizeof (fname));
1176
1177         /* Call to lookup_mime_type () ?  maybe later */
1178         type[0] = 0;
1179         if (mutt_get_field ("Content-Type: ", type, sizeof (type), 0) != 0
1180             || !type[0])
1181           continue;
1182
1183         if (!(p = strchr (type, '/'))) {
1184           mutt_error _("Content-Type is of the form base/sub");
1185
1186           continue;
1187         }
1188         *p++ = 0;
1189         if ((itype = mutt_check_mime_type (type)) == TYPEOTHER) {
1190           mutt_error (_("Unknown Content-Type %s"), type);
1191           continue;
1192         }
1193         if (idxlen == idxmax) {
1194           p_realloc(&idx, idxmax += 5);
1195           menu->data = idx;
1196         }
1197
1198         idx[idxlen] = p_new(ATTACHPTR, 1);
1199         /* Touch the file */
1200         if (!(fp = safe_fopen (fname, "w"))) {
1201           mutt_error (_("Can't create file %s"), fname);
1202           p_delete(&idx[idxlen]);
1203           continue;
1204         }
1205         fclose (fp);
1206
1207         if ((idx[idxlen]->content = mutt_make_file_attach (fname)) == NULL) {
1208           mutt_error
1209             _("What we have here is a failure to make an attachment");
1210           continue;
1211         }
1212         update_idx (menu, idx, idxlen++);
1213
1214         idx[menu->current]->content->type = itype;
1215         str_replace (&idx[menu->current]->content->subtype, p);
1216         idx[menu->current]->content->unlink = 1;
1217         menu->redraw |= REDRAW_INDEX | REDRAW_STATUS;
1218
1219         if (mutt_compose_attachment (idx[menu->current]->content)) {
1220           mutt_update_encoding (idx[menu->current]->content);
1221           menu->redraw = REDRAW_FULL;
1222         }
1223       }
1224       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1225       break;
1226
1227     case OP_COMPOSE_EDIT_MIME:
1228       CHECK_COUNT;
1229       if (mutt_edit_attachment (idx[menu->current]->content)) {
1230         mutt_update_encoding (idx[menu->current]->content);
1231         menu->redraw = REDRAW_FULL;
1232       }
1233       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1234       break;
1235
1236     case OP_VIEW_ATTACH:
1237     case OP_DISPLAY_HEADERS:
1238       CHECK_COUNT;
1239       mutt_attach_display_loop (menu, op, NULL, NULL, NULL, &idx, &idxlen,
1240                                 NULL, 0);
1241       menu->redraw = REDRAW_FULL;
1242       /* no send2hook, since this doesn't modify the message */
1243       break;
1244
1245     case OP_SAVE:
1246       CHECK_COUNT;
1247       mutt_save_attachment_list (NULL, menu->tagprefix,
1248                                  menu->tagprefix ? msg->content : idx[menu->
1249                                                                       current]->
1250                                  content, NULL, menu);
1251       MAYBE_REDRAW (menu->redraw);
1252       /* no send2hook, since this doesn't modify the message */
1253       break;
1254
1255     case OP_PRINT:
1256       CHECK_COUNT;
1257       mutt_print_attachment_list (NULL, menu->tagprefix,
1258                                   menu->tagprefix ? msg->content : idx[menu->
1259                                                                        current]->
1260                                   content);
1261       /* no send2hook, since this doesn't modify the message */
1262       break;
1263
1264     case OP_PIPE:
1265     case OP_FILTER:
1266       CHECK_COUNT;
1267       mutt_pipe_attachment_list (NULL, menu->tagprefix,
1268                                  menu->tagprefix ? msg->content : idx[menu->
1269                                                                       current]->
1270                                  content, op == OP_FILTER);
1271       if (op == OP_FILTER)      /* cte might have changed */
1272         menu->redraw = menu->tagprefix ? REDRAW_FULL : REDRAW_CURRENT;
1273       menu->redraw |= REDRAW_STATUS;
1274       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1275       break;
1276
1277     case OP_EXIT:
1278       if ((i =
1279            query_quadoption (OPT_POSTPONE,
1280                              _("Postpone this message?"))) == M_NO) {
1281         while (idxlen-- > 0) {
1282           /* avoid freeing other attachments */
1283           idx[idxlen]->content->next = NULL;
1284           idx[idxlen]->content->parts = NULL;
1285           if (idx[idxlen]->unowned)
1286             idx[idxlen]->content->unlink = 0;
1287           mutt_free_body (&idx[idxlen]->content);
1288           p_delete(&idx[idxlen]->tree);
1289           p_delete(&idx[idxlen]);
1290         }
1291         p_delete(&idx);
1292         idxlen = 0;
1293         idxmax = 0;
1294         r = -1;
1295         loop = 0;
1296         break;
1297       }
1298       else if (i == -1)
1299         break;                  /* abort */
1300
1301       /* fall through to postpone! */
1302
1303     case OP_COMPOSE_POSTPONE_MESSAGE:
1304
1305       if (check_attachments (idx, idxlen) != 0) {
1306         menu->redraw = REDRAW_FULL;
1307         break;
1308       }
1309
1310       loop = 0;
1311       r = 1;
1312       break;
1313
1314     case OP_COMPOSE_ISPELL:
1315       endwin ();
1316       snprintf (buf, sizeof (buf), "%s -x %s", NONULL (Ispell),
1317                 msg->content->filename);
1318       if (mutt_system (buf) == -1)
1319         mutt_error (_("Error running \"%s\"!"), buf);
1320       else {
1321         mutt_update_encoding (msg->content);
1322         menu->redraw |= REDRAW_STATUS;
1323       }
1324       break;
1325
1326     case OP_COMPOSE_WRITE_MESSAGE:
1327
1328       fname[0] = '\0';
1329       if (Context) {
1330         strfcpy (fname, NONULL (Context->path), sizeof (fname));
1331         mutt_pretty_mailbox (fname);
1332       }
1333       if (idxlen)
1334         msg->content = idx[0]->content;
1335       if (mutt_enter_fname
1336           (_("Write message to mailbox"), fname, sizeof (fname),
1337            &menu->redraw, 1) != -1 && fname[0]) {
1338         mutt_message (_("Writing message to %s ..."), fname);
1339         mutt_expand_path (fname, sizeof (fname));
1340
1341         if (msg->content->next)
1342           msg->content = mutt_make_multipart (msg->content);
1343
1344         if (mutt_write_fcc (NONULL (fname), msg, NULL, 1, NULL) < 0)
1345           msg->content = mutt_remove_multipart (msg->content);
1346         else
1347           mutt_message _("Message written.");
1348       }
1349       break;
1350
1351
1352
1353     case OP_COMPOSE_PGP_MENU:
1354       if (!(WithCrypto & APPLICATION_PGP))
1355         break;
1356       if ((WithCrypto & APPLICATION_SMIME)
1357           && msg->security & APPLICATION_SMIME) {
1358         if (mutt_yesorno (_("S/MIME already selected. Clear & continue ? "),
1359                           M_YES) != M_YES) {
1360           mutt_clear_error ();
1361           break;
1362         }
1363         msg->security = 0;
1364       }
1365       msg->security = crypt_pgp_send_menu (msg, &menu->redraw);
1366       redraw_crypt_lines (msg);
1367       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1368       break;
1369
1370
1371     case OP_FORGET_PASSPHRASE:
1372       crypt_forget_passphrase ();
1373       break;
1374
1375
1376     case OP_COMPOSE_SMIME_MENU:
1377       if (!(WithCrypto & APPLICATION_SMIME))
1378         break;
1379
1380       if ((WithCrypto & APPLICATION_PGP)
1381           && msg->security & APPLICATION_PGP) {
1382         if (mutt_yesorno (_("PGP already selected. Clear & continue ? "),
1383                           M_YES) != M_YES) {
1384           mutt_clear_error ();
1385           break;
1386         }
1387         msg->security = 0;
1388       }
1389       msg->security = crypt_smime_send_menu (msg, &menu->redraw);
1390       redraw_crypt_lines (msg);
1391       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1392       break;
1393
1394
1395 #ifdef MIXMASTER
1396     case OP_COMPOSE_MIX:
1397
1398       mix_make_chain (&msg->chain, &menu->redraw);
1399       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1400       break;
1401 #endif
1402
1403     }
1404
1405     /* Draw formated compose status line */
1406     if (menu->redraw & REDRAW_STATUS) {
1407       compose_status_line (buf, sizeof (buf), menu, NONULL (ComposeFormat));
1408       CLEARLINE (option (OPTSTATUSONTOP) ? 0 : LINES - 2);
1409       SETCOLOR (MT_COLOR_STATUS);
1410       move (option (OPTSTATUSONTOP) ? 0 : LINES - 2, SW);
1411       printw ("%-*.*s", COLS-SW, COLS-SW, buf);
1412       SETCOLOR (MT_COLOR_NORMAL);
1413       menu->redraw &= ~REDRAW_STATUS;
1414     }
1415   }
1416
1417   mutt_menuDestroy (&menu);
1418
1419   if (idxlen) {
1420     msg->content = idx[0]->content;
1421     for (i = 0; i < idxlen; i++) {
1422       idx[i]->content->aptr = NULL;
1423       p_delete(&idx[i]);
1424     }
1425   }
1426   else
1427     msg->content = NULL;
1428
1429   p_delete(&idx);
1430
1431   return (r);
1432 }