2 * Copyright (C) 1996-2000,2002,2007 Michael R. Elkins <me@mutt.org>
3 * Copyright (C) 1999-2006 Thomas Roessler <roessler@does-not-exist.org>
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.
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.
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.
25 #include "mutt_curses.h"
26 #include "mutt_menu.h"
33 #include "mutt_crypt.h"
43 static const char *Mailbox_is_read_only = N_("Mailbox is read-only.");
45 #define CHECK_READONLY if (Context->readonly) \
48 mutt_error _(Mailbox_is_read_only); \
52 static struct mapping_t AttachHelp[] = {
53 { N_("Exit"), OP_EXIT },
54 { N_("Save"), OP_SAVE },
55 { N_("Pipe"), OP_PIPE },
56 { N_("Print"), OP_PRINT },
57 { N_("Help"), OP_HELP },
61 void mutt_update_tree (ATTACHPTR **idx, short idxlen)
67 for (x = 0; x < idxlen; x++)
70 if (2 * (idx[x]->level + 2) < sizeof (buf))
74 s = buf + 2 * (idx[x]->level - 1);
75 *s++ = (idx[x]->content->next) ? M_TREE_LTEE : M_TREE_LLCORNER;
86 if (mutt_strcmp (idx[x]->tree, buf) != 0)
87 mutt_str_replace (&idx[x]->tree, buf);
90 idx[x]->tree = safe_strdup (buf);
92 if (2 * (idx[x]->level + 2) < sizeof (buf) && idx[x]->level)
94 s = buf + 2 * (idx[x]->level - 1);
95 *s++ = (idx[x]->content->next) ? '\005' : '\006';
101 ATTACHPTR **mutt_gen_attach_list (BODY *m,
112 for (; m; m = m->next)
114 if (*idxlen == *idxmax)
116 safe_realloc (&idx, sizeof (ATTACHPTR *) * ((*idxmax) += 5));
117 for (i = *idxlen; i < *idxmax; i++)
121 if (m->type == TYPEMULTIPART && m->parts
122 && (compose || (parent_type == -1 && ascii_strcasecmp ("alternative", m->subtype)))
123 && (!(WithCrypto & APPLICATION_PGP) || !mutt_is_multipart_encrypted(m))
126 idx = mutt_gen_attach_list (m->parts, m->type, idx, idxlen, idxmax, level, compose);
131 idx[*idxlen] = (ATTACHPTR *) safe_calloc (1, sizeof (ATTACHPTR));
133 new = idx[(*idxlen)++];
136 new->parent_type = parent_type;
139 /* We don't support multipart messages in the compose menu yet */
140 if (!compose && !m->collapsed &&
141 ((m->type == TYPEMULTIPART
142 && (!(WithCrypto & APPLICATION_PGP)
143 || !mutt_is_multipart_encrypted (m))
145 || mutt_is_message_type(m->type, m->subtype)))
147 idx = mutt_gen_attach_list (m->parts, m->type, idx, idxlen, idxmax, level + 1, compose);
153 mutt_update_tree (idx, *idxlen);
158 /* %c = character set: convert?
162 * %e = MIME content-transfer-encoding
164 * %I = content-disposition, either I (inline) or A (attachment)
167 * %m = major MIME type
169 * %n = attachment number
173 const char *mutt_attach_fmt (char *dest,
179 const char *ifstring,
180 const char *elsestring,
185 char tmp[SHORT_STRING];
186 char charset[SHORT_STRING];
187 ATTACHPTR *aptr = (ATTACHPTR *) data;
188 int optional = (flags & M_FORMAT_OPTIONAL);
196 if (mutt_is_text_part (aptr->content) &&
197 mutt_get_body_charset (charset, sizeof (charset), aptr->content))
198 mutt_format_s (dest, destlen, prefix, charset);
200 mutt_format_s (dest, destlen, prefix, "");
202 else if (!mutt_is_text_part (aptr->content) ||
203 !mutt_get_body_charset (charset, sizeof (charset), aptr->content))
210 snprintf (fmt, sizeof (fmt), "%%%sc", prefix);
211 snprintf (dest, destlen, fmt, aptr->content->type != TYPETEXT ||
212 aptr->content->noconv ? 'n' : 'c');
214 else if (aptr->content->type != TYPETEXT || aptr->content->noconv)
220 if (aptr->content->description)
222 mutt_format_s (dest, destlen, prefix, aptr->content->description);
225 if (mutt_is_message_type(aptr->content->type, aptr->content->subtype) &&
226 MsgFmt && aptr->content->hdr)
228 char s[SHORT_STRING];
229 _mutt_make_string (s, sizeof (s), MsgFmt, NULL, aptr->content->hdr,
230 M_FORMAT_FORCESUBJ | M_FORMAT_MAKEPRINT | M_FORMAT_ARROWCURSOR);
233 mutt_format_s (dest, destlen, prefix, s);
237 if (!aptr->content->filename)
239 mutt_format_s (dest, destlen, prefix, "<no description>");
243 else if(aptr->content->description ||
244 (mutt_is_message_type (aptr->content->type, aptr->content->subtype)
245 && MsgFmt && aptr->content->hdr))
247 /* FALLS THROUGH TO 'f' */
251 if (aptr->content->filename && *aptr->content->filename == '/')
253 char path[_POSIX_PATH_MAX];
255 strfcpy (path, aptr->content->filename, sizeof (path));
256 mutt_pretty_mailbox (path, sizeof (path));
257 mutt_format_s (dest, destlen, prefix, path);
260 mutt_format_s (dest, destlen, prefix, NONULL (aptr->content->filename));
262 else if(!aptr->content->filename)
267 snprintf (dest, destlen, "%c", aptr->content->deleted ? 'D' : ' ');
268 else if(!aptr->content->deleted)
273 mutt_format_s (dest, destlen, prefix,
274 ENCODING (aptr->content->encoding));
279 snprintf (dest, destlen, "%c",
280 (aptr->content->disposition == DISPINLINE) ? 'I' : 'A');
285 mutt_format_s (dest, destlen, prefix, TYPE (aptr->content));
289 mutt_format_s (dest, destlen, prefix, aptr->content->subtype);
290 else if(!aptr->content->subtype)
296 snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
297 snprintf (dest, destlen, fmt, aptr->num + 1);
302 optional = aptr->content->attach_qualifies;
304 snprintf (fmt, sizeof (fmt), "%%%sc", prefix);
305 mutt_format_s (dest, destlen, fmt, "Q");
309 if (flags & M_FORMAT_STAT_FILE)
312 stat (aptr->content->filename, &st);
316 l = aptr->content->length;
320 mutt_pretty_size (tmp, sizeof(tmp), l);
321 mutt_format_s (dest, destlen, prefix, tmp);
329 snprintf (dest, destlen, "%c", aptr->content->tagged ? '*' : ' ');
330 else if(!aptr->content->tagged)
335 mutt_format_s_tree (dest, destlen, prefix, NONULL (aptr->tree));
336 else if (!aptr->tree)
341 snprintf (dest, destlen, "%c", aptr->content->unlink ? '-' : ' ');
342 else if (!aptr->content->unlink)
347 optional = (aptr->content->attach_count + aptr->content->attach_qualifies) != 0;
350 snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
351 snprintf (dest, destlen, fmt, aptr->content->attach_count + aptr->content->attach_qualifies);
359 mutt_FormatString (dest, destlen, col, ifstring, mutt_attach_fmt, data, 0);
360 else if (flags & M_FORMAT_OPTIONAL)
361 mutt_FormatString (dest, destlen, col, elsestring, mutt_attach_fmt, data, 0);
365 static void attach_entry (char *b, size_t blen, MUTTMENU *menu, int num)
367 mutt_FormatString (b, blen, 0, NONULL (AttachFormat), mutt_attach_fmt, (unsigned long) (((ATTACHPTR **)menu->data)[num]), M_FORMAT_ARROWCURSOR);
370 int mutt_tag_attach (MUTTMENU *menu, int n, int m)
372 BODY *cur = ((ATTACHPTR **) menu->data)[n]->content;
373 int ot = cur->tagged;
375 cur->tagged = (m >= 0 ? m : !cur->tagged);
376 return cur->tagged - ot;
379 int mutt_is_message_type (int type, const char *subtype)
381 if (type != TYPEMESSAGE)
384 subtype = NONULL(subtype);
385 return (ascii_strcasecmp (subtype, "rfc822") == 0 || ascii_strcasecmp (subtype, "news") == 0);
388 static void prepend_curdir (char *dst, size_t dstlen)
392 if (!dst || !*dst || *dst == '/' || dstlen < 3 ||
393 /* XXX bad modularization, these are special to mutt_expand_path() */
394 !strchr ("~=+@<>!-^", *dst))
398 l = strlen (dst) + 2;
399 l = (l > dstlen ? dstlen : l);
400 memmove (dst + 2, dst, l);
406 static int mutt_query_save_attachment (FILE *fp, BODY *body, HEADER *hdr, char **directory)
409 char buf[_POSIX_PATH_MAX], tfile[_POSIX_PATH_MAX];
416 if (directory && *directory)
417 mutt_concat_path (buf, *directory, mutt_basename (body->filename), sizeof (buf));
419 strfcpy (buf, body->filename, sizeof (buf));
422 body->encoding != ENCBASE64 &&
423 body->encoding != ENCQUOTEDPRINTABLE &&
424 mutt_is_message_type(body->type, body->subtype))
425 mutt_default_save(buf, sizeof(buf), body->hdr);
429 prepend_curdir (buf, sizeof (buf));
431 prompt = _("Save to file: ");
434 if (mutt_get_field (prompt, buf, sizeof (buf), M_FILE | M_CLEAR) != 0
442 mutt_expand_path (buf, sizeof (buf));
446 body->encoding != ENCBASE64 &&
447 body->encoding != ENCQUOTEDPRINTABLE &&
448 mutt_is_message_type (body->type, body->subtype));
454 /* check to make sure that this file is really the one the user wants */
455 if ((rc = mutt_save_confirm (buf, &st)) == 1)
457 prompt = _("Save to file: ");
462 strfcpy(tfile, buf, sizeof(tfile));
466 if ((rc = mutt_check_overwrite (body->filename, buf, tfile, sizeof (tfile), &append, directory)) == -1)
470 prompt = _("Save to file: ");
475 mutt_message _("Saving...");
476 if (mutt_save_attachment (fp, body, tfile, append, (hdr || !is_message) ? hdr : body->hdr) == 0)
478 mutt_message _("Attachment saved.");
483 prompt = _("Save to file: ");
490 void mutt_save_attachment_list (FILE *fp, int tag, BODY *top, HEADER *hdr, MUTTMENU *menu)
492 char buf[_POSIX_PATH_MAX], tfile[_POSIX_PATH_MAX];
493 char *directory = NULL;
495 int last = menu ? menu->current : -1;
500 for (; top; top = top->next)
502 if (!tag || top->tagged)
504 if (!option (OPTATTACHSPLIT))
510 strfcpy (buf, mutt_basename (NONULL (top->filename)), sizeof (buf));
511 prepend_curdir (buf, sizeof (buf));
513 if (mutt_get_field (_("Save to file: "), buf, sizeof (buf),
514 M_FILE | M_CLEAR) != 0 || !buf[0])
516 mutt_expand_path (buf, sizeof (buf));
517 if (mutt_check_overwrite (top->filename, buf, tfile,
518 sizeof (tfile), &append, NULL))
520 rc = mutt_save_attachment (fp, top, tfile, append, hdr);
521 if (rc == 0 && AttachSep && (fpout = fopen (tfile,"a")) != NULL)
523 fprintf(fpout, "%s", AttachSep);
524 safe_fclose (&fpout);
529 rc = mutt_save_attachment (fp, top, tfile, M_SAVE_APPEND, hdr);
530 if (rc == 0 && AttachSep && (fpout = fopen (tfile,"a")) != NULL)
532 fprintf(fpout, "%s", AttachSep);
533 safe_fclose (&fpout);
539 if (tag && menu && top->aptr)
541 menu->oldcurrent = menu->current;
542 menu->current = top->aptr->num;
543 menu_check_recenter (menu);
544 menu->redraw |= REDRAW_MOTION;
548 if (mutt_query_save_attachment (fp, top, hdr, &directory) == -1)
553 mutt_save_attachment_list (fp, 1, top->parts, hdr, menu);
562 menu->oldcurrent = menu->current;
563 menu->current = last;
564 menu_check_recenter (menu);
565 menu->redraw |= REDRAW_MOTION;
568 if (!option (OPTATTACHSPLIT) && (rc == 0))
569 mutt_message _("Attachment saved.");
573 mutt_query_pipe_attachment (char *command, FILE *fp, BODY *body, int filter)
575 char tfile[_POSIX_PATH_MAX];
576 char warning[STRING+_POSIX_PATH_MAX];
580 snprintf (warning, sizeof (warning),
581 _("WARNING! You are about to overwrite %s, continue?"),
583 if (mutt_yesorno (warning, M_NO) != M_YES) {
592 if (mutt_pipe_attachment (fp, body, command, tfile))
596 mutt_unlink (body->filename);
597 mutt_rename_file (tfile, body->filename);
598 mutt_update_encoding (body);
599 mutt_message _("Attachment filtered.");
604 if (filter && tfile[0])
609 static void pipe_attachment (FILE *fp, BODY *b, STATE *state)
616 mutt_decode_attachment (b, state);
618 state_puts (AttachSep, state);
622 if ((ifp = fopen (b->filename, "r")) == NULL)
624 mutt_perror ("fopen");
627 mutt_copy_stream (ifp, state->fpout);
630 state_puts (AttachSep, state);
635 pipe_attachment_list (char *command, FILE *fp, int tag, BODY *top, int filter,
638 for (; top; top = top->next)
640 if (!tag || top->tagged)
642 if (!filter && !option (OPTATTACHSPLIT))
643 pipe_attachment (fp, top, state);
645 mutt_query_pipe_attachment (command, fp, top, filter);
648 pipe_attachment_list (command, fp, tag, top->parts, filter, state);
654 void mutt_pipe_attachment_list (FILE *fp, int tag, BODY *top, int filter)
657 char buf[SHORT_STRING];
661 filter = 0; /* sanity check: we can't filter in the recv case yet */
664 memset (&state, 0, sizeof (STATE));
666 if (mutt_get_field ((filter ? _("Filter through: ") : _("Pipe to: ")),
667 buf, sizeof (buf), M_CMD) != 0 || !buf[0])
670 mutt_expand_path (buf, sizeof (buf));
672 if (!filter && !option (OPTATTACHSPLIT))
675 thepid = mutt_create_filter (buf, &state.fpout, NULL, NULL);
676 pipe_attachment_list (buf, fp, tag, top, filter, &state);
677 safe_fclose (&state.fpout);
678 if (mutt_wait_filter (thepid) != 0 || option (OPTWAITKEY))
679 mutt_any_key_to_continue (NULL);
682 pipe_attachment_list (buf, fp, tag, top, filter, &state);
685 static int can_print (BODY *top, int tag)
689 for (; top; top = top->next)
691 snprintf (type, sizeof (type), "%s/%s", TYPE (top), top->subtype);
692 if (!tag || top->tagged)
694 if (!rfc1524_mailcap_lookup (top, type, NULL, M_PRINT))
696 if (ascii_strcasecmp ("text/plain", top->subtype) &&
697 ascii_strcasecmp ("application/postscript", top->subtype))
699 if (!mutt_can_decode (top))
701 mutt_error (_("I dont know how to print %s attachments!"), type);
708 return (can_print (top->parts, tag));
715 static void print_attachment_list (FILE *fp, int tag, BODY *top, STATE *state)
720 for (; top; top = top->next)
722 if (!tag || top->tagged)
724 snprintf (type, sizeof (type), "%s/%s", TYPE (top), top->subtype);
725 if (!option (OPTATTACHSPLIT) && !rfc1524_mailcap_lookup (top, type, NULL, M_PRINT))
727 if (!ascii_strcasecmp ("text/plain", top->subtype) ||
728 !ascii_strcasecmp ("application/postscript", top->subtype))
729 pipe_attachment (fp, top, state);
730 else if (mutt_can_decode (top))
732 /* decode and print */
734 char newfile[_POSIX_PATH_MAX] = "";
737 mutt_mktemp (newfile);
738 if (mutt_decode_save_attachment (fp, top, newfile, M_PRINTING, 0) == 0)
740 if ((ifp = fopen (newfile, "r")) != NULL)
742 mutt_copy_stream (ifp, state->fpout);
745 state_puts (AttachSep, state);
748 mutt_unlink (newfile);
752 mutt_print_attachment (fp, top);
755 print_attachment_list (fp, tag, top->parts, state);
761 void mutt_print_attachment_list (FILE *fp, int tag, BODY *top)
766 if (query_quadoption (OPT_PRINT, tag ? _("Print tagged attachment(s)?") : _("Print attachment?")) != M_YES)
769 if (!option (OPTATTACHSPLIT))
771 if (!can_print (top, tag))
774 memset (&state, 0, sizeof (STATE));
775 thepid = mutt_create_filter (NONULL (PrintCmd), &state.fpout, NULL, NULL);
776 print_attachment_list (fp, tag, top, &state);
777 safe_fclose (&state.fpout);
778 if (mutt_wait_filter (thepid) != 0 || option (OPTWAITKEY))
779 mutt_any_key_to_continue (NULL);
782 print_attachment_list (fp, tag, top, &state);
786 mutt_update_attach_index (BODY *cur, ATTACHPTR ***idxp,
787 short *idxlen, short *idxmax,
790 ATTACHPTR **idx = *idxp;
791 while (--(*idxlen) >= 0)
792 idx[(*idxlen)]->content = NULL;
795 idx = *idxp = mutt_gen_attach_list (cur, -1, idx, idxlen, idxmax, 0, 0);
800 if (menu->current >= menu->max)
801 menu->current = menu->max - 1;
802 menu_check_recenter (menu);
803 menu->redraw |= REDRAW_INDEX;
809 mutt_attach_display_loop (MUTTMENU *menu, int op, FILE *fp, HEADER *hdr,
810 BODY *cur, ATTACHPTR ***idxp, short *idxlen, short *idxmax,
813 ATTACHPTR **idx = *idxp;
815 int old_optweed = option (OPTWEED);
816 set_option (OPTWEED);
823 case OP_DISPLAY_HEADERS:
824 toggle_option (OPTWEED);
828 op = mutt_view_attachment (fp, idx[menu->current]->content, M_REGULAR,
833 case OP_MAIN_NEXT_UNDELETED: /* hack */
834 if (menu->current < menu->max - 1)
843 case OP_MAIN_PREV_UNDELETED: /* hack */
844 if (menu->current > 0)
853 /* when we edit the content-type, we should redisplay the attachment
855 mutt_edit_content_type (hdr, idx[menu->current]->content, fp);
858 mutt_update_attach_index (cur, idxp, idxlen, idxmax, menu);
863 /* functions which are passed through from the pager */
864 case OP_CHECK_TRADITIONAL:
865 if (!(WithCrypto & APPLICATION_PGP) || (hdr && hdr->security & PGP_TRADITIONAL_CHECKED))
871 case OP_ATTACH_COLLAPSE:
878 while (op != OP_NULL);
881 if (option (OPTWEED) != old_optweed)
882 toggle_option (OPTWEED);
887 static void attach_collapse (BODY *b, short collapse, short init, short just_one)
890 for (; b; b = b->next)
892 i = init || b->collapsed;
893 if (i && option (OPTDIGESTCOLLAPSE) && b->type == TYPEMULTIPART
894 && !ascii_strcasecmp (b->subtype, "digest"))
895 attach_collapse (b->parts, 1, 1, 0);
896 else if (b->type == TYPEMULTIPART || mutt_is_message_type (b->type, b->subtype))
897 attach_collapse (b->parts, collapse, i, 0);
898 b->collapsed = collapse;
904 void mutt_attach_init (BODY *b)
906 for (; b; b = b->next)
911 mutt_attach_init (b->parts);
915 static const char *Function_not_permitted = N_("Function not permitted in attach-message mode.");
917 #define CHECK_ATTACH if(option(OPTATTACHMSG)) \
920 mutt_error _(Function_not_permitted); \
927 void mutt_view_attachments (HEADER *hdr)
930 int need_secured = 0;
932 char helpstr[LONG_STRING];
937 ATTACHPTR **idx = NULL;
943 /* make sure we have parsed this message */
944 mutt_parse_mime_message (Context, hdr);
946 mutt_message_hook (Context, hdr, M_MESSAGEHOOK);
948 if ((msg = mx_open_message (Context, hdr->msgno)) == NULL)
952 if (WithCrypto && ((hdr->security & ENCRYPT) ||
953 (mutt_is_application_smime(hdr->content) & SMIMEOPAQUE)))
957 if ((hdr->security & ENCRYPT) && !crypt_valid_passphrase(hdr->security))
959 mx_close_message (&msg);
962 if ((WithCrypto & APPLICATION_SMIME) && (hdr->security & APPLICATION_SMIME))
965 crypt_smime_getkeys (hdr->env);
967 if (mutt_is_application_smime(hdr->content))
969 secured = ! crypt_smime_decrypt_mime (msg->fp, &fp,
973 if ((mutt_is_application_smime (cur) & SMIMEOPAQUE))
978 fp = NULL; cur = NULL;
979 secured = !crypt_smime_decrypt_mime (_fp, &fp, _cur, &cur);
981 mutt_free_body (&_cur);
988 if ((WithCrypto & APPLICATION_PGP) && (hdr->security & APPLICATION_PGP))
990 if (mutt_is_multipart_encrypted(hdr->content))
991 secured = !crypt_pgp_decrypt_mime (msg->fp, &fp, hdr->content, &cur);
996 if (need_secured && !secured)
998 mx_close_message (&msg);
999 mutt_error _("Can't decrypt encrypted message!");
1004 if (!WithCrypto || !need_secured)
1010 menu = mutt_new_menu (MENU_ATTACH);
1011 menu->title = _("Attachments");
1012 menu->make_entry = attach_entry;
1013 menu->tag = mutt_tag_attach;
1014 menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_ATTACH, AttachHelp);
1016 mutt_attach_init (cur);
1017 attach_collapse (cur, 0, 1, 0);
1018 mutt_update_attach_index (cur, &idx, &idxlen, &idxmax, menu);
1023 op = mutt_menuLoop (menu);
1026 case OP_ATTACH_VIEW_MAILCAP:
1027 mutt_view_attachment (fp, idx[menu->current]->content, M_MAILCAP,
1029 menu->redraw = REDRAW_FULL;
1032 case OP_ATTACH_VIEW_TEXT:
1033 mutt_view_attachment (fp, idx[menu->current]->content, M_AS_TEXT,
1035 menu->redraw = REDRAW_FULL;
1038 case OP_DISPLAY_HEADERS:
1039 case OP_VIEW_ATTACH:
1040 op = mutt_attach_display_loop (menu, op, fp, hdr, cur, &idx, &idxlen, &idxmax, 1);
1041 menu->redraw = REDRAW_FULL;
1044 case OP_ATTACH_COLLAPSE:
1045 if (!idx[menu->current]->content->parts)
1047 mutt_error _("There are no subparts to show!");
1050 if (!idx[menu->current]->content->collapsed)
1051 attach_collapse (idx[menu->current]->content, 1, 0, 1);
1053 attach_collapse (idx[menu->current]->content, 0, 1, 1);
1054 mutt_update_attach_index (cur, &idx, &idxlen, &idxmax, menu);
1057 case OP_FORGET_PASSPHRASE:
1058 crypt_forget_passphrase ();
1061 case OP_EXTRACT_KEYS:
1062 if ((WithCrypto & APPLICATION_PGP))
1064 crypt_pgp_extract_keys_from_attachment_list (fp, menu->tagprefix,
1065 menu->tagprefix ? cur : idx[menu->current]->content);
1066 menu->redraw = REDRAW_FULL;
1070 case OP_CHECK_TRADITIONAL:
1071 if ((WithCrypto & APPLICATION_PGP)
1072 && crypt_pgp_check_traditional (fp, menu->tagprefix ? cur
1073 : idx[menu->current]->content,
1076 hdr->security = crypt_query (cur);
1077 menu->redraw = REDRAW_FULL;
1082 mutt_print_attachment_list (fp, menu->tagprefix,
1083 menu->tagprefix ? cur : idx[menu->current]->content);
1087 mutt_pipe_attachment_list (fp, menu->tagprefix,
1088 menu->tagprefix ? cur : idx[menu->current]->content, 0);
1092 mutt_save_attachment_list (fp, menu->tagprefix,
1093 menu->tagprefix ? cur : idx[menu->current]->content, hdr, menu);
1095 if (!menu->tagprefix && option (OPTRESOLVE) && menu->current < menu->max - 1)
1098 menu->redraw = REDRAW_MOTION_RESYNCH | REDRAW_FULL;
1105 if (Context->magic == M_POP)
1108 mutt_error _("Can't delete attachment from POP server.");
1113 if (WithCrypto && hdr->security & ~PGP_TRADITIONAL_CHECKED)
1116 "Deletion of attachments from encrypted messages is unsupported.");
1120 if (!menu->tagprefix)
1122 if (idx[menu->current]->parent_type == TYPEMULTIPART)
1124 idx[menu->current]->content->deleted = 1;
1125 if (option (OPTRESOLVE) && menu->current < menu->max - 1)
1128 menu->redraw = REDRAW_MOTION_RESYNCH;
1131 menu->redraw = REDRAW_CURRENT;
1135 "Only deletion of multipart attachments is supported.");
1141 for (x = 0; x < menu->max; x++)
1143 if (idx[x]->content->tagged)
1145 if (idx[x]->parent_type == TYPEMULTIPART)
1147 idx[x]->content->deleted = 1;
1148 menu->redraw = REDRAW_INDEX;
1152 "Only deletion of multipart attachments is supported.");
1161 if (!menu->tagprefix)
1163 idx[menu->current]->content->deleted = 0;
1164 if (option (OPTRESOLVE) && menu->current < menu->max - 1)
1167 menu->redraw = REDRAW_MOTION_RESYNCH;
1170 menu->redraw = REDRAW_CURRENT;
1176 for (x = 0; x < menu->max; x++)
1178 if (idx[x]->content->tagged)
1180 idx[x]->content->deleted = 0;
1181 menu->redraw = REDRAW_INDEX;
1189 mutt_attach_resend (fp, hdr, idx, idxlen,
1190 menu->tagprefix ? NULL : idx[menu->current]->content);
1191 menu->redraw = REDRAW_FULL;
1194 case OP_BOUNCE_MESSAGE:
1196 mutt_attach_bounce (fp, hdr, idx, idxlen,
1197 menu->tagprefix ? NULL : idx[menu->current]->content);
1198 menu->redraw = REDRAW_FULL;
1201 case OP_FORWARD_MESSAGE:
1203 mutt_attach_forward (fp, hdr, idx, idxlen,
1204 menu->tagprefix ? NULL : idx[menu->current]->content);
1205 menu->redraw = REDRAW_FULL;
1209 case OP_GROUP_REPLY:
1215 (op == OP_GROUP_REPLY ? SENDGROUPREPLY : 0) |
1216 (op == OP_LIST_REPLY ? SENDLISTREPLY : 0);
1217 mutt_attach_reply (fp, hdr, idx, idxlen,
1218 menu->tagprefix ? NULL : idx[menu->current]->content, flags);
1219 menu->redraw = REDRAW_FULL;
1223 mutt_edit_content_type (hdr, idx[menu->current]->content, fp);
1224 mutt_update_attach_index (cur, &idx, &idxlen, &idxmax, menu);
1228 mx_close_message (&msg);
1229 hdr->attach_del = 0;
1230 while (idxmax-- > 0)
1234 if (idx[idxmax]->content && idx[idxmax]->content->deleted)
1235 hdr->attach_del = 1;
1236 if (idx[idxmax]->content)
1237 idx[idxmax]->content->aptr = NULL;
1238 FREE (&idx[idxmax]->tree);
1239 FREE (&idx[idxmax]);
1241 if (hdr->attach_del)
1246 if (WithCrypto && need_secured && secured)
1249 mutt_free_body (&cur);
1252 mutt_menuDestroy (&menu);