The score commands that alter score entries do not actually modify real score files. That would be too inefficient. Gnus maintains a cache of previously loaded score files, one of which is considered the current score file alist. The score commands simply insert entries into this list, and upon group exit, this list is saved.
The current score file is by default the group's local score file, even
if no such score file actually exists. To insert score commands into
some other score file (e.g. `all.SCORE
'), you must first make this
score file the current one.
General score commands that don't actually change the score file:
V s |
Set the score of the current article ( |
V S |
Display the score of the current article
( |
V t |
Display all score rules that have been used on the current article
( |
V R |
Run the current summary through the scoring process
( |
V c |
Make a different score file the current
( |
V e |
Edit the current score file ( |
V f |
Edit a score file and make this score file the current one
( |
V F |
Flush the score cache ( |
V C |
Customize a score file in a visually pleasing manner
( |
The rest of these commands modify the local score file.
V m |
Prompt for a score, and mark all articles with a score below this as
read ( |
V x |
Prompt for a score, and add a score rule to the current score file to
expunge all articles below this score
( |
The keystrokes for actually making score entries follow a very regular pattern, so there's no need to list all the commands. (Hundreds of them.)
a | Score on the author name. |
s | Score on the subject line. |
x | Score on the Xref line---i.e., the cross-posting line. |
r | Score on the References line. |
d | Score on the date. |
l | Score on the number of lines. |
i | Score on the Message-ID. |
f | Score on followups. |
b | Score on the body. |
h | Score on the head. |
t | Score on thead. |
strings
|
| ||||||||
date
|
| ||||||||
number
|
|
t | Temporary score entry. |
p | Permanent score entry. |
i | Immediately scoring. |
So, let's say you want to increase the score on the current author with exact matching permanently: I a e p. If you want to lower the score based on the subject line, using substring matching, and make a temporary score entry: L s s t. Pretty easy.
To make things a bit more complicated, there are shortcuts. If you use a capital letter on either the second or third keys, Gnus will use defaults for the remaining one or two keystrokes. The defaults are ``substring'' and ``temporary''. So I A is the same as I a s t, and I a R is the same as I a r t.
These functions take both the numerical prefix and the symbolic prefix
(see Symbolic Prefixes). A numerical prefix says how much to lower
(or increase) the score of the article. A symbolic prefix of a
says to use the `all.SCORE
' file for the command instead of the
current score file.
The gnus-score-mimic-keymap
says whether these commands will
pretend they are keymaps or not.