Global Score Files Scoring Converting Kill Files
Gnus still supports those pesky old kill files. In fact, the kill file entries can now be expiring, which is something I wrote before Daniel Quinlan thought of doing score files, so I've left the code in there.
In short, kill processing is a lot slower (and I do mean a lot) than score processing, so it might be a good idea to rewrite your kill files into score files.
Anyway, a kill file is a normal emacs-lisp
file. You can put any
forms into this file, which means that you can use kill files as some
sort of primitive hook function to be run on group entry, even though
that isn't a very good idea.
Normal kill files look like this:
(gnus-kill "From" "Lars Ingebrigtsen") (gnus-kill "Subject" "ding") (gnus-expunge "X")
This will mark every article written by me as read, and remove the marked articles from the summary buffer. Very useful, you'll agree.
Other programs use a totally different kill file syntax. If Gnus
encounters what looks like a rn
kill file, it will take a stab at
interpreting it.
Two summary functions for editing a GNUS kill file:
M-k |
Edit this group's kill file ( |
M-K |
Edit the general kill file ( |
Two group mode functions for editing the kill files:
M-k |
Edit this group's kill file ( |
M-K |
Edit the general kill file ( |
Kill file variables:
gnus-kill-file-name
|
A kill file for the group ` |
gnus-kill-save-kill-file
|
If this variable is non- |
gnus-apply-kill-hook
|
A hook called to apply kill files to a group. It is
|
gnus-kill-file-mode-hook
|
A hook called in kill-file mode buffers. |