info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Group Specific Sorting and Threading


From: Damien Wyart
Subject: Re: Group Specific Sorting and Threading
Date: Tue, 22 Apr 2014 08:30:59 +0200
User-agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.4.50

* Les Harris <lharris@gnome.org> in gnu.emacs.gnus:
> Is it possible to have different sorting and threading functions on
> a per group basis?

Have a look at group and topic parameters:

http://www.gnus.org/manual/gnus_28.html
http://www.gnus.org/manual/gnus_39.html


You can also have a construct like this in your .gnus.el:

(add-hook 'gnus-summary-mode-hook
   (lambda ()
      (if (equal gnus-newsgroup-name "xxx")
         (progn
            (setq gnus-summary-thread-gathering-function 
'gnus-gather-threads-by-subject)
            (setq gnus-use-scoring t)
            (setq gnus-thread-sort-functions ;; and so on...)))))


to override your default values (several tests on the group name can be
used, of course).
                        
-- 
DW


reply via email to

[Prev in Thread] Current Thread [Next in Thread]