From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 8CFA11F5AE for ; Thu, 25 Jun 2020 18:48:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390330AbgFYSrb (ORCPT ); Thu, 25 Jun 2020 14:47:31 -0400 Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:48557 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2390007AbgFYSr3 (ORCPT ); Thu, 25 Jun 2020 14:47:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1593110848; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ReC9AhKtwPE/4vle+ZkbgxHUJLmUw3blk+fyjpxNSBI=; b=PFNTv8KaYISbXOY9M60RlbMp/ntj0OdTN3kOQ4grDbestKlaQsQx48Y7rugca3DCIKnQsF O0c3x2GhjwBb1QIT+JPG3WbjrwU5oHQFBBuFB8X7j1eAvGxSd6qxpyDQMN8+qFzjpmSs05 0bOSWK+5pwQagrhgMWsjgD8nX84B9v8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-444-m2v--WDQNd2BohOYMMaE4A-1; Thu, 25 Jun 2020 14:47:21 -0400 X-MC-Unique: m2v--WDQNd2BohOYMMaE4A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D4F4D18FE867; Thu, 25 Jun 2020 18:47:19 +0000 (UTC) Received: from optiplex-lnx (unknown [10.3.128.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E45D9100EBA4; Thu, 25 Jun 2020 18:47:18 +0000 (UTC) Date: Thu, 25 Jun 2020 14:47:15 -0400 From: Rafael Aquini To: Junio C Hamano Cc: git@vger.kernel.org Subject: Re: [PATCH] send-email: restore --in-reply-to superseding behavior Message-ID: <20200625184715.GC2117795@optiplex-lnx> References: <20200624195520.2062298-1-aquini@redhat.com> <20200624234539.GH1987277@optiplex-lnx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200624234539.GH1987277@optiplex-lnx> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Wed, Jun 24, 2020 at 07:45:43PM -0400, Rafael Aquini wrote: > On Wed, Jun 24, 2020 at 02:33:14PM -0700, Junio C Hamano wrote: > > Rafael Aquini writes: > > > > > git send-email --in-reply-to= fails to override the email headers, > > > if they're present in the output of format-patch, which breakes the > > > > Will do s/breakes/breaks/ while applying. > > > > UGH! I've been fat-fingering typos the whole day, today... Sorry about > that one. > > > > It makes me wonder, however, why it is a good idea to have the I-R-T > > in the format patch output in the first place. > > > > > elsif (/^In-Reply-To: (.*)/i) { > > > - $in_reply_to = $1; > > > + if (!$initial_in_reply_to) { > > > + $in_reply_to = $1; > > > + } > > > > I can see how this would work the way it should for the first > > message we send out, so it would work well for a single patch. > > > > But what does this change do to the chaining (either making [PATCH > > 1/N] thru [PATCH N/N] as responses to the cover letter [PATCH 0/N], > > or making [PATCH n+1/N] as response to [PATCH n/N] for 1 <= n < N) > > of multiple messages? > > > > When you prepare a series whose 1..N/N are all pointing at 0/N with > > the already prepared In-Reply-To (so you have N+1 files to send > > out), wouldn't you want to make 0/N a reply to a particular message > > you specify on the command line, while keeping the relationship > > among your messages intact? Doesn't having $initial_in_reply_to > > (i.e. command line override) help above code break the chaning? > > > > This change will make all emails to appear as a reply to the msgid > fed to --in-reply-to. I see your point, though, and at its light > I think now this patch, is actually incomplete. > > With this change we get back the override desired behavior, > but it also breaks the contract, according to the man page. > > " > --in-reply-to= > Make the first mail (or all the mails with --no-thread) appear as a reply to the given Message-Id, which > avoids breaking threads to provide a new patch series. The second and subsequent emails will be sent as > replies according to the --[no-]chain-reply-to setting. > " > > I drove the change based on my usecase, which is marginal to the > multi-part reply case. > > I guess we just need the following, for a complete solution: > > > > diff --git a/git-send-email.perl b/git-send-email.perl > index dc95656f75..768296ea0a 100755 > --- a/git-send-email.perl > +++ b/git-send-email.perl > @@ -1699,10 +1699,14 @@ sub process_file { > $xfer_encoding = $1 if not defined $xfer_encoding; > } > elsif (/^In-Reply-To: (.*)/i) { > - $in_reply_to = $1; > + if (!$initial_in_reply_to || $thread) { > + $in_reply_to = $1; > + } > } > elsif (/^References: (.*)/i) { > - $references = $1; > + if (!$initial_in_reply_to || $thread) { > + $references = $1; > + } > } > elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) { > push @xh, $_; This guy worked like a charm, and git send-email, now, follows what the man page says wrt the --in-reply-to usage. I'll reformat the commit log, and repost the patch ASAP, if you are OK with it. -- Rafael