summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-06-19 12:52:04 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-06-19 12:52:04 +0000
commit9044dd4d58af4b4d64a6e68b7b76c42d317e7ce5 (patch)
tree6c7294a93c4adf68fa7544b13beb6f24a54923a2 /sendlib.c
parent705380445111ecdb41fa537b6b50625e84714429 (diff)
Removing the Attach-Menu feature for the next release
version.
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c34
1 files changed, 1 insertions, 33 deletions
diff --git a/sendlib.c b/sendlib.c
index a9bbeff4..b6eaac64 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -849,39 +849,7 @@ void mutt_update_encoding (BODY *a)
safe_free ((void **) &info);
}
-BODY *mutt_make_message_attach (CONTEXT *ctx, HEADER *hdr)
-{
- char buffer[LONG_STRING];
- BODY *body;
- FILE *fpout;
-
- mutt_mktemp (buffer);
- if ((fpout = safe_fopen (buffer, "w")) == NULL)
- return NULL;
-
- body = mutt_new_body ();
- body->type = TYPEMESSAGE;
- body->subtype = safe_strdup ("rfc822");
- body->filename = safe_strdup (buffer);
- body->unlink = 1;
- body->use_disp = 0;
-
- /* this MUST come after setting ->filename because we reuse buffer[] */
- strfcpy (buffer, "Forwarded message from ", sizeof (buffer));
- rfc822_write_address (buffer + 23, sizeof (buffer) - 23, hdr->env->from);
- body->description = safe_strdup (buffer);
-
- mutt_parse_mime_message (ctx, hdr);
- mutt_copy_message (fpout, ctx, hdr,
- option (OPTMIMEFORWDECODE) ? M_CM_DECODE : 0,
- CH_XMIT | (option (OPTMIMEFORWDECODE) ? (CH_MIME | CH_TXTPLAIN ) : 0));
-
- fclose (fpout);
- mutt_update_encoding (body);
- return (body);
-}
-
-BODY *mutt_make_file_attach (const char *path)
+BODY *mutt_make_attach (const char *path)
{
BODY *att;
CONTENT *info;