[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Ignoring threads
From: |
Hadron Quark |
Subject: |
Re: Ignoring threads |
Date: |
Tue, 17 Oct 2006 16:38:16 +0200 |
neumann@lostwebsite.net (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)
|
`----
--