From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80632 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Summary sorting Date: Thu, 01 Dec 2011 17:58:55 +0100 Message-ID: <871usow7n4.fsf@tsdh.uni-koblenz.de> References: <87borse1v9.fsf@free.fr> <87obvswacc.fsf@micropit.couberia.bzh> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1322758782 13891 80.91.229.12 (1 Dec 2011 16:59:42 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 1 Dec 2011 16:59:42 +0000 (UTC) Cc: ding@gnus.org To: pmlists@free.fr (Peter =?utf-8?Q?M=C3=BCnster?=) Original-X-From: ding-owner+M28914@lists.math.uh.edu Thu Dec 01 17:59:38 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RW9yy-0002Hp-G4 for ding-account@gmane.org; Thu, 01 Dec 2011 17:59:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1RW9yS-0000Tr-45; Thu, 01 Dec 2011 10:59:04 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1RW9yQ-0000Tc-Vg for ding@lists.math.uh.edu; Thu, 01 Dec 2011 10:59:02 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RW9yP-0008CX-RH for ding@lists.math.uh.edu; Thu, 01 Dec 2011 10:59:02 -0600 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RW9yO-0005cg-3B for ding@gnus.org; Thu, 01 Dec 2011 17:59:00 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 4325ED2231; Thu, 1 Dec 2011 17:58:59 +0100 (CET) X-Virus-Scanned: amavisd-new at uni-koblenz.de Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sh2Pd4fweTQZ; Thu, 1 Dec 2011 17:58:58 +0100 (CET) X-CHKRCPT: Envelopesender noch tassilo@member.fsf.org Original-Received: from tsdh.uni-koblenz.de (tsdh.uni-koblenz.de [141.26.67.142]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id C09EED2230; Thu, 1 Dec 2011 17:58:58 +0100 (CET) In-Reply-To: <87obvswacc.fsf@micropit.couberia.bzh> ("Peter \=\?utf-8\?Q\?M\?\= \=\?utf-8\?Q\?\=C3\=BCnster\=22's\?\= message of "Thu, 01 Dec 2011 17:00:35 +0100") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (gnu/linux) X-Spam-Score: -4.9 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80632 Archived-At: pmlists@free.fr (Peter M=C3=BCnster) writes: Hi! >> I want the threads sorted by the date of the last message they >> contain and displayed chronologically from top to bottom, ie the >> thread which contains the most recent message has to be displayed >> last. > > (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-most-recent-d= ate))) The docs state that you should have at least have `gnus-thread-sort-by-number' as first item in the list as a fallback. So use (setq gnus-thread-sort-functions '(gnus-thread-sort-by-number (not gnus-thread-sort-by-most-recent-dat= e))) Bye, Tassilo