WHERE char *PopPass INITVAL (NULL);
WHERE char *PopUser INITVAL (NULL);
-WHERE char *PostIndentString;
WHERE char *Postponed;
WHERE char *Prefix;
WHERE char *PrintCmd;
** presents a security risk since the superuser of your machine may read it
** regardless of the file's permissions.
*/
- {"post_indent_string", DT_STR, R_NONE, UL &PostIndentString, ""},
- /*
- ** .pp
- ** Similar to the ``$$attribution'' variable, Madmutt will append this
- ** string after the inclusion of a message which is being replied to.
- */
#ifdef USE_NNTP
{"nntp_post_moderated", DT_QUAD, R_NONE, OPT_TOMODERATED, "ask-yes" },
/*
char *mutt_compile_help(char *, ssize_t, int, struct mapping_t *);
void mutt_make_misc_reply_headers (ENVELOPE * env, CONTEXT * ctx,
HEADER * cur, ENVELOPE * curenv);
-void mutt_make_post_indent (CONTEXT * ctx, HEADER * cur, FILE * out);
void mutt_message_to_7bit (BODY *, FILE *);
void mutt_prepare_envelope (ENVELOPE *, int);
}
_mutt_copy_message (tmpfp, fp, cur, cur->content, cmflags, chflags);
- mutt_make_post_indent (Context, cur, tmpfp);
}
void mutt_attach_reply (FILE * fp, HEADER * hdr,
}
}
- mutt_make_post_indent (Context, parent, tmpfp);
-
if (mime_reply_any && !cur &&
copy_problematic_attachments (fp, &tmphdr->content, idx, idxlen,
0) == NULL) {
}
}
-void mutt_make_post_indent (CONTEXT * ctx, HEADER * cur, FILE * out)
-{
- char buffer[STRING];
-
- if (PostIndentString) {
- mutt_make_string (buffer, sizeof (buffer), PostIndentString, ctx, cur);
- fputs (buffer, out);
- fputc ('\n', out);
- }
-}
-
static int include_reply (CONTEXT * ctx, HEADER * cur, FILE * out)
{
int cmflags = M_CM_PREFIX | M_CM_DECODE | M_CM_CHARCONV | M_CM_REPLYING;
mutt_parse_mime_message (ctx, cur);
mutt_message_hook (ctx, cur, M_MESSAGEHOOK);
-
mutt_make_attribution (ctx, cur, out);
if (!option (OPTHEADER))
}
mutt_copy_message (out, ctx, cur, cmflags, chflags);
-
- mutt_make_post_indent (ctx, cur, out);
-
return 0;
}