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: Les Harris
Subject: Re: Group Specific Sorting and Threading
Date: Tue, 22 Apr 2014 08:25:42 -0700
User-agent: It's a secret to everybody

Damien Wyart <damien.wyart@free.fr> 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?




reply via email to

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