summaryrefslogtreecommitdiffstats
path: root/send.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-12-13 11:36:01 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-12-13 11:36:01 +0000
commite332ccf872948b1bf890d48f5b127f1399a004a3 (patch)
treeebc219decf0873557322105d49f73be6e938ee28 /send.c
parentd06304a8e1e771a08ca2fdf33d5f768ba9712620 (diff)
Adding the envelope_from option.
Diffstat (limited to 'send.c')
-rw-r--r--send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/send.c b/send.c
index b9de93f2..a507d173 100644
--- a/send.c
+++ b/send.c
@@ -898,8 +898,8 @@ static int send_message (HEADER *msg)
return mix_send_message (msg->chain, tempfile);
#endif
- i = mutt_invoke_sendmail (msg->env->to, msg->env->cc, msg->env->bcc,
- tempfile, (msg->content->encoding == ENC8BIT));
+ i = mutt_invoke_sendmail (msg->env->from, msg->env->to, msg->env->cc,
+ msg->env->bcc, tempfile, (msg->content->encoding == ENC8BIT));
return (i);
}