At 2014-07-27T18:27:17-04:00, Michael Welsh Duggan wrote: > Now the problem: I want to sort the *Summary* buffer like this: Each > thread is sorted from the oldest to the newest message by date. The > *Summary* buffer is sorted by the most recent date in each thread.
I wanted something similar, and Tassilo Horn helped me with that, see http://thread.gmane.org/gmane.emacs.help/92345/ Here is the relevant part of my Gnus configuration: --8<---------------cut here---------------start------------->8--- (setq gnus-thread-sort-functions '(gnus-thread-sort-by-number gnus-thread-sort-by-most-recent-date)) (setq gnus-subthread-sort-functions '(gnus-thread-sort-by-number gnus-thread-sort-by-date)) (setq gnus-sort-gathered-threads-function 'gnus-thread-sort-by-date) --8<---------------cut here---------------end--------------->8--- For this to work, you have to use the git version of Gnus. Raghavendra. -- N. Raghavendra <[email protected]>, http://www.retrotexts.net/ Harish-Chandra Research Institute, http://www.hri.res.in/ _______________________________________________ info-gnus-english mailing list [email protected] https://lists.gnu.org/mailman/listinfo/info-gnus-english
