+2009-06-12 21:32 +0200 Rocco Rutte <pdmef@gmx.net> (a9117f697b27)
+
+ * handler.c: Don't insert Content-Description/form name into reply.
+ Closes #3164.
+
+2009-06-12 18:00 +0200 Rocco Rutte <pdmef@gmx.net> (d7afcf9a9f76)
+
+ * ChangeLog, pgpkey.c: Allow ! suffix for pgp keys via $pgp_sign_as
+ and prompt. Closes #1928.
+
2009-06-12 13:43 +0200 Rocco Rutte <pdmef@gmx.net> (ed206ad41108)
* ChangeLog, commands.c, recvcmd.c: Warn before bouncing messages
!: modified feature, -: deleted feature, +: new feature
hg tip:
+ ! $fcc_attach is a quadoption now
+ $honor_disposition to honor Content-Disposition headers
+ $search_context specifies number of context lines for search results
in pager/page-based menus
** \fBNote:\fP this variable has no effect when the $$autoedit
** variable is \fIset\fP.
*/
- { "fcc_attach", DT_BOOL, R_NONE, OPTFCCATTACH, 1 },
+ { "fcc_attach", DT_QUAD, R_NONE, OPT_FCCATTACH, M_YES },
/*
** .pp
** This variable controls whether or not attachments on outgoing messages
OPT_COPY,
OPT_DELETE,
OPT_FORWEDIT,
+ OPT_FCCATTACH,
OPT_INCLUDE,
OPT_MFUPTO,
OPT_MIMEFWD,
OPTENCODEFROM,
OPTENVFROM,
OPTFASTREPLY,
- OPTFCCATTACH,
OPTFCCCLEAR,
OPTFOLLOWUPTO,
OPTFORCENAME,
msg->content = clear_content;
/* check to see if the user wants copies of all attachments */
- if (!option (OPTFCCATTACH) && msg->content->type == TYPEMULTIPART)
+ if (query_quadoption (OPT_FCCATTACH, _("Save attachments in Fcc?")) != M_YES &&
+ msg->content->type == TYPEMULTIPART)
{
if (WithCrypto
&& (mutt_strcmp (msg->content->subtype, "encrypted") == 0 ||