Damien Wyart <[email protected]> writes: > You can find something close to this in this file > (http://people.irisa.fr/Nicolas.Berthier/file:.gnus.el):
This was almost exactly what I was looking for. It's so simple when it's staring you in the face. Thank you much! The following is what I've put into my Gnus init: ,---- | (add-hook | 'gnus-summary-mode-hook | (lambda () | (when (string-match "^nnrss:CSW.*" 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) | (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-sort-by-date)))) `---- -- Do they only stand By ignorance, is that their happy state, The proof of their obedience and their faith? _______________________________________________ info-gnus-english mailing list [email protected] https://lists.gnu.org/mailman/listinfo/info-gnus-english
