From: Thomas Roessler Date: Tue, 10 Nov 1998 22:21:01 +0000 (+0000) Subject: Fix the $metoo option's behaviour. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f80cbf1f7ccbae29c13da6039f1673d993099eb4;p=neomutt Fix the $metoo option's behaviour. --- diff --git a/send.c b/send.c index f34e62eed..62bf6e081 100644 --- a/send.c +++ b/send.c @@ -398,7 +398,7 @@ static int default_to (ADDRESS **to, ENVELOPE *env, int group) return 0; } - if (mutt_addr_is_user (env->from)) + if (!option(OPTMETOO) && mutt_addr_is_user (env->from)) { /* mail is from the user, assume replying to recipients */ rfc822_append (to, env->to);