mutt_perror _("Can't create filter process");
return 1;
}
-
+
+ set_option (OPTKEEPQUIET);
pipe_msg (h, fpout, decode, print);
safe_fclose (&fpout);
rc = mutt_wait_filter (thepid);
+ unset_option (OPTKEEPQUIET);
}
else
{ /* handle tagged messages */
mutt_perror _("Can't create filter process");
return 1;
}
+ set_option (OPTKEEPQUIET);
pipe_msg (Context->hdrs[Context->v2r[i]], fpout, decode, print);
/* add the message separator */
if (sep) fputs (sep, fpout);
safe_fclose (&fpout);
if (mutt_wait_filter (thepid) != 0)
rc = 1;
+ unset_option (OPTKEEPQUIET);
}
}
}
mutt_perror _("Can't create filter process");
return 1;
}
+ set_option (OPTKEEPQUIET);
for (i = 0; i < Context->vcount; i++)
{
if (Context->hdrs[Context->v2r[i]]->tagged)
safe_fclose (&fpout);
if (mutt_wait_filter (thepid) != 0)
rc = 1;
+ unset_option (OPTKEEPQUIET);
}
}