* Les Harris <[email protected]> in gnu.emacs.gnus: > Is it possible to have different sorting and threading functions on > a per group basis?
> I have a group using the nnrss backend and the feed comes with posts > newest first and threaded. For this group, I would like posts to be > sorted oldest first and have no threading. You can find something close to this in this file (http://people.irisa.fr/Nicolas.Berthier/file:.gnus.el): ,---- | ;; RSS in summary buffer: | (add-hook | 'gnus-summary-mode-hook | (lambda () | (when (string-match "^nnrss:.*" gnus-newsgroup-name) | (make-local-variable 'gnus-show-threads) | (make-local-variable 'gnus-use-adaptive-scoring) | (make-local-variable 'gnus-use-scoring) | (make-local-variable 'gnus-score-find-score-files-function) | (make-local-variable 'gnus-summary-line-format) | (setq gnus-show-threads nil | gnus-use-adaptive-scoring nil | gnus-use-scoring t | gnus-score-find-score-files-function 'gnus-score-find-single | gnus-summary-line-format "%U%R%z%d %I%(%[ %s %]%)\n")))) `---- -- DW _______________________________________________ info-gnus-english mailing list [email protected] https://lists.gnu.org/mailman/listinfo/info-gnus-english
