X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;fp=send.c;h=62207d2e7a690e94175023fbde2fb175d0e1ce6d;hp=5551bad95b0e8eebfb190ebd1c862ae953d6e9b8;hb=5fbd8a74d24624a118c9b835b136c73b8da076d7;hpb=8e39affbf1cd8a2a5ff5c9991650d54fdcea4997 diff --git a/send.c b/send.c index 5551bad..62207d2 100644 --- a/send.c +++ b/send.c @@ -27,8 +27,6 @@ #include "nntp.h" #endif -#include "remailer.h" - int url_parse_mailto(ENVELOPE *e, char **body, const char *src) { char *t; @@ -994,8 +992,7 @@ static int send_message (HEADER * msg) if (!tempfp) return -1; - mutt_write_rfc822_header (tempfp, msg->env, msg->content, 0, - msg->chain ? 1 : 0); + mutt_write_rfc822_header (tempfp, msg->env, msg->content, 0); fputc ('\n', tempfp); /* tie off the header. */ if ((mutt_write_mime_body (msg->content, tempfp) == -1)) { @@ -1010,9 +1007,6 @@ static int send_message (HEADER * msg) return (-1); } - if (msg->chain) - return mix_send_message (msg->chain, tempfile); - i = mutt_invoke_mta (msg->env->from, msg->env->to, msg->env->cc, msg->env->bcc, tempfile, (msg->content->encoding == ENC8BIT));