From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.5 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=no autolearn_force=no version=3.4.4 Received: from mx1.math.uh.edu (mx1.math.uh.edu [129.7.128.32]) by inbox.vuxu.org (Postfix) with ESMTP id D97832D151 for ; Tue, 1 Oct 2024 20:59:45 +0200 (CEST) Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1svi5y-0000000AZl8-1O9P for ml@inbox.vuxu.org; Tue, 01 Oct 2024 13:59:42 -0500 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.97.1) (envelope-from ) id 1svi5x-00000004yMr-0IjI for ml@inbox.vuxu.org; Tue, 01 Oct 2024 13:59:37 -0500 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.97.1) (envelope-from ) id 1svi5v-00000004yMl-1Y8v for ding@lists.math.uh.edu; Tue, 01 Oct 2024 13:59:35 -0500 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1svi5t-0000000AZkg-3diS for ding@lists.math.uh.edu; Tue, 01 Oct 2024 13:59:35 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References :Message-ID:Date:Subject:From:To:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=j8iVf48Ci4L9IlcuVZxfvCNXlPcJdFqpVPqZ0I/LqTI=; b=kb24MS8xLTjYCYZWOScLWL6/K1 S76IX/CWeGk0H/Z/MeRXCe4rJ+xSbtmtPnDoatvR+jveP/DfVSzKWlaRV7IW1iJUu5qku8e+z5MQM NYLZt0hmx5yNOu/Pm7TjIluLxdj3ZbXPAeQRNtbmJbyf4fJXtGpxi4NPD//KrRcl/3qk=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1svi5m-0004O6-7A for ding@gnus.org; Tue, 01 Oct 2024 20:59:29 +0200 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1svi5k-0008cB-Br for ding@gnus.org; Tue, 01 Oct 2024 20:59:24 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org To: ding@gnus.org From: Dan Christensen Subject: Re: adding In-Reply-To field in archived message Date: Tue, 01 Oct 2024 14:59:16 -0400 Message-ID: <87ikubejjv.fsf@uwo.ca> References: <87msjodniq.fsf@a16n.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:3INM4/CVP6dIM/R+F3bHG9dpcwA= Mail-Copies-To: never List-ID: Precedence: bulk On Oct 1, 2024, Peter Münster wrote: > In the summary buffer, I would like to add with just one key-press an > In-Reply-To line to the current message with the Message-Id of the > previous message. Is there already some helper function somewhere, that > I can use, or should I code it from scratch please? These functions do something similar, but with the References header: ‘T ^’ Make the current article the child of the marked (or previous) article (‘gnus-summary-reparent-thread’). ‘T M-^’ Make the current article the parent of the marked articles (‘gnus-summary-reparent-children’). The code for the second one is what to look at. But I don't think it saves the changed message. (And depending on the backend, that might be impossible (e.g. nntp) or difficult (e.g. nnimap).) Dan