* Les Harris <lhar...@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
_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to