From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44849 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: Can thread gathering use In-Reply-To: ? Date: Wed, 15 May 2002 20:53:43 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1021488952 18975 127.0.0.1 (15 May 2002 18:55:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 15 May 2002 18:55:52 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 1783wG-0004vu-00 for ; Wed, 15 May 2002 20:55:52 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1783vu-0003si-00; Wed, 15 May 2002 13:55:30 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 15 May 2002 13:55:48 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id NAA10304 for ; Wed, 15 May 2002 13:55:37 -0500 (CDT) Original-Received: (qmail 6387 invoked by alias); 15 May 2002 18:55:15 -0000 Original-Received: (qmail 6382 invoked from network); 15 May 2002 18:55:15 -0000 Original-Received: from fepa.post.tele.dk (195.41.46.143) by gnus.org with SMTP; 15 May 2002 18:55:15 -0000 Original-Received: from defun.localdomain ([195.249.82.161]) by fepA.post.tele.dk (InterMail vM.4.01.03.23 201-229-121-123-20010418) with ESMTP id <20020515185510.LASP28393.fepA.post.tele.dk@defun.localdomain> for ; Wed, 15 May 2002 20:55:10 +0200 Original-To: ding@gnus.org In-Reply-To: (tkoelman@xs4all.nl's message of "Wed, 15 May 2002 18:23:18 +0000 (UTC)") Original-Lines: 19 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44849 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44849 tkoelman@xs4all.nl (Tom Koelman) writes: > On inspection of the reply I noticed that it didn't have its > References header set, but did have a header called In-Reply_To: with > the correct message-id. > > Is there some way to make gnus use this information? Hmm, I would have thought Gnus already does it. This piece of code from `gnus-nov-parse-line' seems to do exactly that: (when (and (string= references "") (setq in-reply-to (mail-header-extra header)) (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to)))) (mail-header-set-references header (gnus-extract-message-id-from-in-reply-to in-reply-to))) You could try do edebug `gnus-nov-parse-line' to find out, if it really works.