mutt_parse_mime_message (Context, cur);
mutt_message_hook (Context, cur, M_MESSAGEHOOK);
- /* see if crytpo is needed for this message. if so, we should exit curses */
+ /* see if crypto is needed for this message. if so, we should exit curses */
if (WithCrypto && cur->security)
{
if (cur->security & ENCRYPT)
}
- mutt_mktemp (tempfile);
+ mutt_mktemp (tempfile, sizeof (tempfile));
if ((fpout = safe_fopen (tempfile, "w")) == NULL)
{
mutt_error _("Could not create temporary file!");
}
res = mutt_copy_message (fpout, Context, cur, cmflags,
- (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) | CH_DECODE | CH_FROM);
+ (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) | CH_DECODE | CH_FROM | CH_DISPLAY);
if ((safe_fclose (&fpout) != 0 && errno != EPIPE) || res < 0)
{
mutt_error (_("Could not copy message"));
if ((r = mutt_system (buf)) == -1)
mutt_error (_("Error running \"%s\"!"), buf);
unlink (tempfile);
- keypad (stdscr, TRUE);
+ if (!option (OPTNOCURSES))
+ keypad (stdscr, TRUE);
if (r != -1)
mutt_set_flag (Context, cur, M_READ, 1);
if (r != -1 && option (OPTPROMPTAFTER))
char *err = NULL;
int rc;
+ /* RfC 5322 mandates a From: header, so warn before bouncing
+ * messages without one */
+ if (h)
+ {
+ if (!h->env->from)
+ {
+ mutt_error _("Warning: message has no From: header");
+ mutt_sleep (2);
+ }
+ }
+ else if (Context)
+ {
+ for (rc = 0; rc < Context->msgcount; rc++)
+ {
+ if (Context->hdrs[rc]->tagged && !Context->hdrs[rc]->env->from)
+ {
+ mutt_error ("Warning: message has no From: header");
+ mutt_sleep (2);
+ break;
+ }
+ }
+ }
+
if(h)
strfcpy(prompt, _("Bounce message to: "), sizeof(prompt));
else
}
pipe_msg (h, fpout, decode, print);
- fclose (fpout);
+ safe_fclose (&fpout);
rc = mutt_wait_filter (thepid);
}
else
char prompt[SHORT_STRING], buf[_POSIX_PATH_MAX];
CONTEXT ctx;
struct stat st;
- BUFFY *tmp = NULL;
- struct utimbuf ut;
*redraw = 0;
mx_close_mailbox (&ctx, NULL);
if (need_buffy_cleanup)
- {
- if (option(OPTCHECKMBOXSIZE))
- {
- tmp = mutt_find_mailbox (buf);
- if (tmp && !tmp->new)
- mutt_update_mailbox (tmp);
- }
- else
- {
- /* fix up the times so buffy won't get confused */
- if (st.st_mtime > st.st_atime)
- {
- ut.actime = st.st_atime;
- ut.modtime = time (NULL);
- utime (buf, &ut);
- }
- else
- utime (buf, NULL);
- }
- }
+ mutt_buffy_cleanup (buf, &st);
mutt_clear_error ();
return (0);