[EMAIL PROTECTED] (François-Denis Gonthier) writes:

> Hello, 
>
> this is my first post on this ng, hopefully not my last.
>
> I would like to know what is the best way to mark a whole thread as
> ignored in Gnus?  How do I score a whole thread and all future
> followup to it?
>
> François-Denis G.

I have this in my .gnus.el

Maybe someone more experienced could explain if Reiner's solution is better?

,----
| (defun cg-gnus-summary-ignore-thread ()
|   (interactive)
|   (let* ((hdr (gnus-summary-article-header))
|          (subj (aref hdr 1)))
|     (gnus-summary-score-entry "Subject" subj 'S' -1000
|                               (current-time-string))
|     (gnus-summary-limit-to-unread)
|     (gnus-summary-scroll-up 0)))
| 
| 
| (define-key gnus-summary-mode-map (kbd "<f6>") 'cg-gnus-summary-ignore-thread)
| 
`----

-- 
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to