]> code.delx.au - gnu-emacs/blob - man/gnus.texi
#
[gnu-emacs] / man / gnus.texi
1 \input texinfo @c -*-texinfo-*-
2
3 @setfilename ../info/gnus
4 @settitle Gnus Manual
5 @synindex fn cp
6 @synindex vr cp
7 @synindex pg cp
8 @direntry
9 * Gnus: (gnus). The newsreader Gnus.
10 @end direntry
11 @iftex
12 @finalout
13 @end iftex
14 @setchapternewpage odd
15
16 @iftex
17 @end iftex
18
19
20 @ifinfo
21
22 This file documents Gnus, the GNU Emacs newsreader.
23
24 Copyright (C) 1995,96 Free Software Foundation, Inc.
25
26 Permission is granted to make and distribute verbatim copies of
27 this manual provided the copyright notice and this permission notice
28 are preserved on all copies.
29
30 @ignore
31 Permission is granted to process this file through Tex and print the
32 results, provided the printed document carries copying permission
33 notice identical to this one except for the removal of this paragraph
34 (this paragraph not being relevant to the printed manual).
35
36 @end ignore
37 Permission is granted to copy and distribute modified versions of this
38 manual under the conditions for verbatim copying, provided also that the
39 entire resulting derived work is distributed under the terms of a
40 permission notice identical to this one.
41
42 Permission is granted to copy and distribute translations of this manual
43 into another language, under the above conditions for modified versions.
44 @end ifinfo
45
46 @tex
47
48 @titlepage
49 @title Gnus 5.7 Manual
50
51 @author by Lars Magne Ingebrigtsen
52 @page
53
54 @vskip 0pt plus 1filll
55 Copyright @copyright{} 1995,96,97 Free Software Foundation, Inc.
56
57 Permission is granted to make and distribute verbatim copies of
58 this manual provided the copyright notice and this permission notice
59 are preserved on all copies.
60
61 Permission is granted to copy and distribute modified versions of this
62 manual under the conditions for verbatim copying, provided that the
63 entire resulting derived work is distributed under the terms of a
64 permission notice identical to this one.
65
66 Permission is granted to copy and distribute translations of this manual
67 into another language, under the above conditions for modified versions.
68
69 @end titlepage
70 @page
71
72 @end tex
73
74
75 @node Top
76 @top The Gnus Newsreader
77
78 @ifinfo
79
80 You can read news (and mail) from within Emacs by using Gnus. The news
81 can be gotten by any nefarious means you can think of---@sc{nntp}, local
82 spool or your mbox file. All at the same time, if you want to push your
83 luck.
84
85 This manual corresponds to Gnus 5.7.
86
87 @end ifinfo
88
89 @iftex
90
91 Gnus is the advanced, self-documenting, customizable, extensible
92 unreal-time newsreader for GNU Emacs.
93
94 Oops. That sounds oddly familiar, so let's start over again to avoid
95 being accused of plagiarism:
96
97 Gnus is a message-reading laboratory. It will let you look at just
98 about anything as if it were a newsgroup. You can read mail with it,
99 you can browse directories with it, you can @code{ftp} with it---you can
100 even read news with it!
101
102 Gnus tries to empower people who read news the same way Emacs empowers
103 people who edit text. Gnus sets no limits to what the user should be
104 allowed to do. Users are encouraged to extend Gnus to make it behave
105 like they want it to behave. A program should not control people;
106 people should be empowered to do what they want by using (or abusing)
107 the program.
108
109 @end iftex
110
111
112 @menu
113 * Starting Up:: Finding news can be a pain.
114 * The Group Buffer:: Selecting, subscribing and killing groups.
115 * The Summary Buffer:: Reading, saving and posting articles.
116 * The Article Buffer:: Displaying and handling articles.
117 * Composing Messages:: Information on sending mail and news.
118 * Select Methods:: Gnus reads all messages from various select methods.
119 * Scoring:: Assigning values to articles.
120 * Various:: General purpose settings.
121 * The End:: Farewell and goodbye.
122 * Appendices:: Terminology, Emacs intro, FAQ, History, Internals.
123 * Index:: Variable, function and concept index.
124 * Key Index:: Key Index.
125 @end menu
126
127 @node Starting Up
128 @chapter Starting Gnus
129 @cindex starting up
130
131 @kindex M-x gnus
132 @findex gnus
133 If your system administrator has set things up properly, starting Gnus
134 and reading news is extremely easy---you just type @kbd{M-x gnus} in
135 your Emacs.
136
137 @findex gnus-other-frame
138 @kindex M-x gnus-other-frame
139 If you want to start Gnus in a different frame, you can use the command
140 @kbd{M-x gnus-other-frame} instead.
141
142 If things do not go smoothly at startup, you have to twiddle some
143 variables in your @file{~/.gnus} file. This file is similar to
144 @file{~/.emacs}, but is read when gnus starts.
145
146 If you puzzle at any terms used in this manual, please refer to the
147 terminology section (@pxref{Terminology}).
148
149 @menu
150 * Finding the News:: Choosing a method for getting news.
151 * The First Time:: What does Gnus do the first time you start it?
152 * The Server is Down:: How can I read my mail then?
153 * Slave Gnusae:: You can have more than one Gnus active at a time.
154 * Fetching a Group:: Starting Gnus just to read a group.
155 * New Groups:: What is Gnus supposed to do with new groups?
156 * Startup Files:: Those pesky startup files---@file{.newsrc}.
157 * Auto Save:: Recovering from a crash.
158 * The Active File:: Reading the active file over a slow line Takes Time.
159 * Changing Servers:: You may want to move from one server to another.
160 * Startup Variables:: Other variables you might change.
161 @end menu
162
163
164 @node Finding the News
165 @section Finding the News
166 @cindex finding news
167
168 @vindex gnus-select-method
169 @c @head
170 The @code{gnus-select-method} variable says where Gnus should look for
171 news. This variable should be a list where the first element says
172 @dfn{how} and the second element says @dfn{where}. This method is your
173 native method. All groups not fetched with this method are
174 foreign groups.
175
176 For instance, if the @samp{news.somewhere.edu} @sc{nntp} server is where
177 you want to get your daily dosage of news from, you'd say:
178
179 @lisp
180 (setq gnus-select-method '(nntp "news.somewhere.edu"))
181 @end lisp
182
183 If you want to read directly from the local spool, say:
184
185 @lisp
186 (setq gnus-select-method '(nnspool ""))
187 @end lisp
188
189 If you can use a local spool, you probably should, as it will almost
190 certainly be much faster.
191
192 @vindex gnus-nntpserver-file
193 @cindex NNTPSERVER
194 @cindex @sc{nntp} server
195 If this variable is not set, Gnus will take a look at the
196 @code{NNTPSERVER} environment variable. If that variable isn't set,
197 Gnus will see whether @code{gnus-nntpserver-file}
198 (@file{/etc/nntpserver} by default) has any opinions on the matter. If
199 that fails as well, Gnus will try to use the machine running Emacs as an @sc{nntp} server. That's a long shot, though.
200
201 @vindex gnus-nntp-server
202 If @code{gnus-nntp-server} is set, this variable will override
203 @code{gnus-select-method}. You should therefore set
204 @code{gnus-nntp-server} to @code{nil}, which is what it is by default.
205
206 @vindex gnus-secondary-servers
207 You can also make Gnus prompt you interactively for the name of an
208 @sc{nntp} server. If you give a non-numerical prefix to @code{gnus}
209 (i.e., @kbd{C-u M-x gnus}), Gnus will let you choose between the servers
210 in the @code{gnus-secondary-servers} list (if any). You can also just
211 type in the name of any server you feel like visiting.
212
213 @findex gnus-group-browse-foreign-server
214 @kindex B (Group)
215 However, if you use one @sc{nntp} server regularly and are just
216 interested in a couple of groups from a different server, you would be
217 better served by using the @kbd{B} command in the group buffer. It will
218 let you have a look at what groups are available, and you can subscribe
219 to any of the groups you want to. This also makes @file{.newsrc}
220 maintenance much tidier. @xref{Foreign Groups}.
221
222 @vindex gnus-secondary-select-methods
223 @c @head
224 A slightly different approach to foreign groups is to set the
225 @code{gnus-secondary-select-methods} variable. The select methods
226 listed in this variable are in many ways just as native as the
227 @code{gnus-select-method} server. They will also be queried for active
228 files during startup (if that's required), and new newsgroups that
229 appear on these servers will be subscribed (or not) just as native
230 groups are.
231
232 For instance, if you use the @code{nnmbox} backend to read your mail, you
233 would typically set this variable to
234
235 @lisp
236 (setq gnus-secondary-select-methods '((nnmbox "")))
237 @end lisp
238
239
240 @node The First Time
241 @section The First Time
242 @cindex first time usage
243
244 If no startup files exist, Gnus will try to determine what groups should
245 be subscribed by default.
246
247 @vindex gnus-default-subscribed-newsgroups
248 If the variable @code{gnus-default-subscribed-newsgroups} is set, Gnus
249 will subscribe you to just those groups in that list, leaving the rest
250 killed. Your system administrator should have set this variable to
251 something useful.
252
253 Since she hasn't, Gnus will just subscribe you to a few arbitrarily
254 picked groups (i.e., @samp{*.newusers}). (@dfn{Arbitrary} is defined
255 here as @dfn{whatever Lars thinks you should read}.)
256
257 You'll also be subscribed to the Gnus documentation group, which should
258 help you with most common problems.
259
260 If @code{gnus-default-subscribed-newsgroups} is @code{t}, Gnus will just
261 use the normal functions for handling new groups, and not do anything
262 special.
263
264
265 @node The Server is Down
266 @section The Server is Down
267 @cindex server errors
268
269 If the default server is down, Gnus will understandably have some
270 problems starting. However, if you have some mail groups in addition to
271 the news groups, you may want to start Gnus anyway.
272
273 Gnus, being the trusting sort of program, will ask whether to proceed
274 without a native select method if that server can't be contacted. This
275 will happen whether the server doesn't actually exist (i.e., you have
276 given the wrong address) or the server has just momentarily taken ill
277 for some reason or other. If you decide to continue and have no foreign
278 groups, you'll find it difficult to actually do anything in the group
279 buffer. But, hey, that's your problem. Blllrph!
280
281 @findex gnus-no-server
282 @kindex M-x gnus-no-server
283 @c @head
284 If you know that the server is definitely down, or you just want to read
285 your mail without bothering with the server at all, you can use the
286 @code{gnus-no-server} command to start Gnus. That might come in handy
287 if you're in a hurry as well. This command will not attempt to contact
288 your primary server---instead, it will just activate all groups on level
289 1 and 2. (You should preferably keep no native groups on those two
290 levels.)
291
292
293 @node Slave Gnusae
294 @section Slave Gnusae
295 @cindex slave
296
297 You might want to run more than one Emacs with more than one Gnus at the
298 same time. If you are using different @file{.newsrc} files (e.g., if you
299 are using the two different Gnusae to read from two different servers),
300 that is no problem whatsoever. You just do it.
301
302 The problem appears when you want to run two Gnusae that use the same
303 @code{.newsrc} file.
304
305 To work around that problem some, we here at the Think-Tank at the Gnus
306 Towers have come up with a new concept: @dfn{Masters} and
307 @dfn{slaves}. (We have applied for a patent on this concept, and have
308 taken out a copyright on those words. If you wish to use those words in
309 conjunction with each other, you have to send $1 per usage instance to
310 me. Usage of the patent (@dfn{Master/Slave Relationships In Computer
311 Applications}) will be much more expensive, of course.)
312
313 Anyways, you start one Gnus up the normal way with @kbd{M-x gnus} (or
314 however you do it). Each subsequent slave Gnusae should be started with
315 @kbd{M-x gnus-slave}. These slaves won't save normal @file{.newsrc}
316 files, but instead save @dfn{slave files} that contain information only
317 on what groups have been read in the slave session. When a master Gnus
318 starts, it will read (and delete) these slave files, incorporating all
319 information from them. (The slave files will be read in the sequence
320 they were created, so the latest changes will have precedence.)
321
322 Information from the slave files has, of course, precedence over the
323 information in the normal (i.e., master) @code{.newsrc} file.
324
325
326 @node Fetching a Group
327 @section Fetching a Group
328 @cindex fetching a group
329
330 @findex gnus-fetch-group
331 It is sometimes convenient to be able to just say ``I want to read this
332 group and I don't care whether Gnus has been started or not''. This is
333 perhaps more useful for people who write code than for users, but the
334 command @code{gnus-fetch-group} provides this functionality in any case.
335 It takes the group name as a parameter.
336
337
338 @node New Groups
339 @section New Groups
340 @cindex new groups
341 @cindex subscription
342
343 @vindex gnus-check-new-newsgroups
344 If you are satisfied that you really never want to see any new groups,
345 you can set @code{gnus-check-new-newsgroups} to @code{nil}. This will
346 also save you some time at startup. Even if this variable is
347 @code{nil}, you can always subscribe to the new groups just by pressing
348 @kbd{U} in the group buffer (@pxref{Group Maintenance}). This variable
349 is @code{ask-server} by default. If you set this variable to
350 @code{always}, then Gnus will query the backends for new groups even
351 when you do the @kbd{g} command (@pxref{Scanning New Messages}).
352
353 @menu
354 * Checking New Groups:: Determining what groups are new.
355 * Subscription Methods:: What Gnus should do with new groups.
356 * Filtering New Groups:: Making Gnus ignore certain new groups.
357 @end menu
358
359
360 @node Checking New Groups
361 @subsection Checking New Groups
362
363 Gnus normally determines whether a group is new or not by comparing the
364 list of groups from the active file(s) with the lists of subscribed and
365 dead groups. This isn't a particularly fast method. If
366 @code{gnus-check-new-newsgroups} is @code{ask-server}, Gnus will ask the
367 server for new groups since the last time. This is both faster and
368 cheaper. This also means that you can get rid of the list of killed
369 groups altogether, so you may set @code{gnus-save-killed-list} to
370 @code{nil}, which will save time both at startup, at exit, and all over.
371 Saves disk space, too. Why isn't this the default, then?
372 Unfortunately, not all servers support this command.
373
374 I bet I know what you're thinking now: How do I find out whether my
375 server supports @code{ask-server}? No? Good, because I don't have a
376 fail-safe answer. I would suggest just setting this variable to
377 @code{ask-server} and see whether any new groups appear within the next
378 few days. If any do, then it works. If none do, then it doesn't
379 work. I could write a function to make Gnus guess whether the server
380 supports @code{ask-server}, but it would just be a guess. So I won't.
381 You could @code{telnet} to the server and say @code{HELP} and see
382 whether it lists @samp{NEWGROUPS} among the commands it understands. If
383 it does, then it might work. (But there are servers that lists
384 @samp{NEWGROUPS} without supporting the function properly.)
385
386 This variable can also be a list of select methods. If so, Gnus will
387 issue an @code{ask-server} command to each of the select methods, and
388 subscribe them (or not) using the normal methods. This might be handy
389 if you are monitoring a few servers for new groups. A side effect is
390 that startup will take much longer, so you can meditate while waiting.
391 Use the mantra ``dingnusdingnusdingnus'' to achieve permanent bliss.
392
393
394 @node Subscription Methods
395 @subsection Subscription Methods
396
397 @vindex gnus-subscribe-newsgroup-method
398 What Gnus does when it encounters a new group is determined by the
399 @code{gnus-subscribe-newsgroup-method} variable.
400
401 This variable should contain a function. This function will be called
402 with the name of the new group as the only parameter.
403
404 Some handy pre-fab functions are:
405
406 @table @code
407
408 @item gnus-subscribe-zombies
409 @vindex gnus-subscribe-zombies
410 Make all new groups zombies. This is the default. You can browse the
411 zombies later (with @kbd{A z}) and either kill them all off properly
412 (with @kbd{S z}), or subscribe to them (with @kbd{u}).
413
414 @item gnus-subscribe-randomly
415 @vindex gnus-subscribe-randomly
416 Subscribe all new groups in arbitrary order. This really means that all
417 new groups will be added at ``the top'' of the group buffer.
418
419 @item gnus-subscribe-alphabetically
420 @vindex gnus-subscribe-alphabetically
421 Subscribe all new groups in alphabetical order.
422
423 @item gnus-subscribe-hierarchically
424 @vindex gnus-subscribe-hierarchically
425 Subscribe all new groups hierarchically. The difference between this
426 function and @code{gnus-subscribe-alphabetically} is slight.
427 @code{gnus-subscribe-alphabetically} will subscribe new groups in a strictly
428 alphabetical fashion, while this function will enter groups into it's
429 hierarchy. So if you want to have the @samp{rec} hierarchy before the
430 @samp{comp} hierarchy, this function will not mess that configuration
431 up. Or something like that.
432
433 @item gnus-subscribe-interactively
434 @vindex gnus-subscribe-interactively
435 Subscribe new groups interactively. This means that Gnus will ask
436 you about @strong{all} new groups. The groups you choose to subscribe
437 to will be subscribed hierarchically.
438
439 @item gnus-subscribe-killed
440 @vindex gnus-subscribe-killed
441 Kill all new groups.
442
443 @end table
444
445 @vindex gnus-subscribe-hierarchical-interactive
446 A closely related variable is
447 @code{gnus-subscribe-hierarchical-interactive}. (That's quite a
448 mouthful.) If this variable is non-@code{nil}, Gnus will ask you in a
449 hierarchical fashion whether to subscribe to new groups or not. Gnus
450 will ask you for each sub-hierarchy whether you want to descend the
451 hierarchy or not.
452
453 One common mistake is to set the variable a few paragraphs above
454 (@code{gnus-subscribe-newsgroup-method}) to
455 @code{gnus-subscribe-hierarchical-interactive}. This is an error. This
456 will not work. This is ga-ga. So don't do it.
457
458
459 @node Filtering New Groups
460 @subsection Filtering New Groups
461
462 A nice and portable way to control which new newsgroups should be
463 subscribed (or ignored) is to put an @dfn{options} line at the start of
464 the @file{.newsrc} file. Here's an example:
465
466 @example
467 options -n !alt.all !rec.all sci.all
468 @end example
469
470 @vindex gnus-subscribe-options-newsgroup-method
471 This line obviously belongs to a serious-minded intellectual scientific
472 person (or she may just be plain old boring), because it says that all
473 groups that have names beginning with @samp{alt} and @samp{rec} should
474 be ignored, and all groups with names beginning with @samp{sci} should
475 be subscribed. Gnus will not use the normal subscription method for
476 subscribing these groups.
477 @code{gnus-subscribe-options-newsgroup-method} is used instead. This
478 variable defaults to @code{gnus-subscribe-alphabetically}.
479
480 @vindex gnus-options-not-subscribe
481 @vindex gnus-options-subscribe
482 If you don't want to mess with your @file{.newsrc} file, you can just
483 set the two variables @code{gnus-options-subscribe} and
484 @code{gnus-options-not-subscribe}. These two variables do exactly the
485 same as the @file{.newsrc} @samp{options -n} trick. Both are regexps,
486 and if the new group matches the former, it will be unconditionally
487 subscribed, and if it matches the latter, it will be ignored.
488
489 @vindex gnus-auto-subscribed-groups
490 Yet another variable that meddles here is
491 @code{gnus-auto-subscribed-groups}. It works exactly like
492 @code{gnus-options-subscribe}, and is therefore really superfluous, but I
493 thought it would be nice to have two of these. This variable is more
494 meant for setting some ground rules, while the other variable is used
495 more for user fiddling. By default this variable makes all new groups
496 that come from mail backends (@code{nnml}, @code{nnbabyl},
497 @code{nnfolder}, @code{nnmbox}, and @code{nnmh}) subscribed. If you
498 don't like that, just set this variable to @code{nil}.
499
500 New groups that match this regexp are subscribed using
501 @code{gnus-subscribe-options-newsgroup-method}.
502
503
504 @node Changing Servers
505 @section Changing Servers
506 @cindex changing servers
507
508 Sometimes it is necessary to move from one @sc{nntp} server to another.
509 This happens very rarely, but perhaps you change jobs, or one server is
510 very flaky and you want to use another.
511
512 Changing the server is pretty easy, right? You just change
513 @code{gnus-select-method} to point to the new server?
514
515 @emph{Wrong!}
516
517 Article numbers are not (in any way) kept synchronized between different
518 @sc{nntp} servers, and the only way Gnus keeps track of what articles
519 you have read is by keeping track of article numbers. So when you
520 change @code{gnus-select-method}, your @file{.newsrc} file becomes
521 worthless.
522
523 Gnus provides a few functions to attempt to translate a @file{.newsrc}
524 file from one server to another. They all have one thing in
525 common---they take a looong time to run. You don't want to use these
526 functions more than absolutely necessary.
527
528 @kindex M-x gnus-change-server
529 @findex gnus-change-server
530 If you have access to both servers, Gnus can request the headers for all
531 the articles you have read and compare @code{Message-ID}s and map the
532 article numbers of the read articles and article marks. The @kbd{M-x
533 gnus-change-server} command will do this for all your native groups. It
534 will prompt for the method you want to move to.
535
536 @kindex M-x gnus-group-move-group-to-server
537 @findex gnus-group-move-group-to-server
538 You can also move individual groups with the @kbd{M-x
539 gnus-group-move-group-to-server} command. This is useful if you want to
540 move a (foreign) group from one server to another.
541
542 @kindex M-x gnus-group-clear-data-on-native-groups
543 @findex gnus-group-clear-data-on-native-groups
544 If you don't have access to both the old and new server, all your marks
545 and read ranges have become worthless. You can use the @kbd{M-x
546 gnus-group-clear-data-on-native-groups} command to clear out all data
547 that you have on your native groups. Use with caution.
548
549
550 @node Startup Files
551 @section Startup Files
552 @cindex startup files
553 @cindex .newsrc
554 @cindex .newsrc.el
555 @cindex .newsrc.eld
556
557 Now, you all know about the @file{.newsrc} file. All subscription
558 information is traditionally stored in this file.
559
560 Things got a bit more complicated with @sc{gnus}. In addition to
561 keeping the @file{.newsrc} file updated, it also used a file called
562 @file{.newsrc.el} for storing all the information that didn't fit into
563 the @file{.newsrc} file. (Actually, it also duplicated everything in
564 the @file{.newsrc} file.) @sc{gnus} would read whichever one of these
565 files was the most recently saved, which enabled people to swap between
566 @sc{gnus} and other newsreaders.
567
568 That was kinda silly, so Gnus went one better: In addition to the
569 @file{.newsrc} and @file{.newsrc.el} files, Gnus also has a file called
570 @file{.newsrc.eld}. It will read whichever of these files that are most
571 recent, but it will never write a @file{.newsrc.el} file. You should
572 never delete the @file{.newsrc.eld} file---it contains much information
573 not stored in the @file{.newsrc} file.
574
575 @vindex gnus-save-newsrc-file
576 You can turn off writing the @file{.newsrc} file by setting
577 @code{gnus-save-newsrc-file} to @code{nil}, which means you can delete
578 the file and save some space, as well as exiting from Gnus faster.
579 However, this will make it impossible to use other newsreaders than
580 Gnus. But hey, who would want to, right?
581
582 @vindex gnus-save-killed-list
583 If @code{gnus-save-killed-list} (default @code{t}) is @code{nil}, Gnus
584 will not save the list of killed groups to the startup file. This will
585 save both time (when starting and quitting) and space (on disk). It
586 will also mean that Gnus has no record of what groups are new or old,
587 so the automatic new groups subscription methods become meaningless.
588 You should always set @code{gnus-check-new-newsgroups} to @code{nil} or
589 @code{ask-server} if you set this variable to @code{nil} (@pxref{New
590 Groups}). This variable can also be a regular expression. If that's
591 the case, remove all groups that do not match this regexp before
592 saving. This can be useful in certain obscure situations that involve
593 several servers where not all servers support @code{ask-server}.
594
595 @vindex gnus-startup-file
596 The @code{gnus-startup-file} variable says where the startup files are.
597 The default value is @file{~/.newsrc}, with the Gnus (El Dingo) startup
598 file being whatever that one is, with a @samp{.eld} appended.
599
600 @vindex gnus-save-newsrc-hook
601 @vindex gnus-save-quick-newsrc-hook
602 @vindex gnus-save-standard-newsrc-hook
603 @code{gnus-save-newsrc-hook} is called before saving any of the newsrc
604 files, while @code{gnus-save-quick-newsrc-hook} is called just before
605 saving the @file{.newsrc.eld} file, and
606 @code{gnus-save-standard-newsrc-hook} is called just before saving the
607 @file{.newsrc} file. The latter two are commonly used to turn version
608 control on or off. Version control is on by default when saving the
609 startup files. If you want to turn backup creation off, say something like:
610
611 @lisp
612 (defun turn-off-backup ()
613 (set (make-local-variable 'backup-inhibited) t))
614
615 (add-hook 'gnus-save-quick-newsrc-hook 'turn-off-backup)
616 (add-hook 'gnus-save-standard-newsrc-hook 'turn-off-backup)
617 @end lisp
618
619 @vindex gnus-init-file
620 When Gnus starts, it will read the @code{gnus-site-init-file}
621 (@file{.../site-lisp/gnus} by default) and @code{gnus-init-file}
622 (@file{~/.gnus} by default) files. These are normal Emacs Lisp files
623 and can be used to avoid cluttering your @file{~/.emacs} and
624 @file{site-init} files with Gnus stuff. Gnus will also check for files
625 with the same names as these, but with @file{.elc} and @file{.el}
626 suffixes. In other words, if you have set @code{gnus-init-file} to
627 @file{~/.gnus}, it will look for @file{~/.gnus.elc}, @file{~/.gnus.el},
628 and finally @file{~/.gnus} (in this order).
629
630
631
632 @node Auto Save
633 @section Auto Save
634 @cindex dribble file
635 @cindex auto-save
636
637 Whenever you do something that changes the Gnus data (reading articles,
638 catching up, killing/subscribing groups), the change is added to a
639 special @dfn{dribble buffer}. This buffer is auto-saved the normal
640 Emacs way. If your Emacs should crash before you have saved the
641 @file{.newsrc} files, all changes you have made can be recovered from
642 this file.
643
644 If Gnus detects this file at startup, it will ask the user whether to
645 read it. The auto save file is deleted whenever the real startup file is
646 saved.
647
648 @vindex gnus-use-dribble-file
649 If @code{gnus-use-dribble-file} is @code{nil}, Gnus won't create and
650 maintain a dribble buffer. The default is @code{t}.
651
652 @vindex gnus-dribble-directory
653 Gnus will put the dribble file(s) in @code{gnus-dribble-directory}. If
654 this variable is @code{nil}, which it is by default, Gnus will dribble
655 into the directory where the @file{.newsrc} file is located. (This is
656 normally the user's home directory.) The dribble file will get the same
657 file permissions as the @code{.newsrc} file.
658
659 @vindex gnus-always-read-dribble-file
660 If @code{gnus-always-read-dribble-file} is non-@code{nil}, Gnus will
661 read the dribble file on startup without querying the user.
662
663
664 @node The Active File
665 @section The Active File
666 @cindex active file
667 @cindex ignored groups
668
669 When Gnus starts, or indeed whenever it tries to determine whether new
670 articles have arrived, it reads the active file. This is a very large
671 file that lists all the active groups and articles on the server.
672
673 @vindex gnus-ignored-newsgroups
674 Before examining the active file, Gnus deletes all lines that match the
675 regexp @code{gnus-ignored-newsgroups}. This is done primarily to reject
676 any groups with bogus names, but you can use this variable to make Gnus
677 ignore hierarchies you aren't ever interested in. However, this is not
678 recommended. In fact, it's highly discouraged. Instead, @pxref{New
679 Groups} for an overview of other variables that can be used instead.
680
681 @c This variable is
682 @c @code{nil} by default, and will slow down active file handling somewhat
683 @c if you set it to anything else.
684
685 @vindex gnus-read-active-file
686 @c @head
687 The active file can be rather Huge, so if you have a slow network, you
688 can set @code{gnus-read-active-file} to @code{nil} to prevent Gnus from
689 reading the active file. This variable is @code{some} by default.
690
691 Gnus will try to make do by getting information just on the groups that
692 you actually subscribe to.
693
694 Note that if you subscribe to lots and lots of groups, setting this
695 variable to @code{nil} will probably make Gnus slower, not faster. At
696 present, having this variable @code{nil} will slow Gnus down
697 considerably, unless you read news over a 2400 baud modem.
698
699 This variable can also have the value @code{some}. Gnus will then
700 attempt to read active info only on the subscribed groups. On some
701 servers this is quite fast (on sparkling, brand new INN servers that
702 support the @code{LIST ACTIVE group} command), on others this isn't fast
703 at all. In any case, @code{some} should be faster than @code{nil}, and
704 is certainly faster than @code{t} over slow lines.
705
706 If this variable is @code{nil}, Gnus will ask for group info in total
707 lock-step, which isn't very fast. If it is @code{some} and you use an
708 @sc{nntp} server, Gnus will pump out commands as fast as it can, and
709 read all the replies in one swoop. This will normally result in better
710 performance, but if the server does not support the aforementioned
711 @code{LIST ACTIVE group} command, this isn't very nice to the server.
712
713 In any case, if you use @code{some} or @code{nil}, you should definitely
714 kill all groups that you aren't interested in to speed things up.
715
716 Note that this variable also affects active file retrieval from
717 secondary select methods.
718
719
720 @node Startup Variables
721 @section Startup Variables
722
723 @table @code
724
725 @item gnus-load-hook
726 @vindex gnus-load-hook
727 A hook run while Gnus is being loaded. Note that this hook will
728 normally be run just once in each Emacs session, no matter how many
729 times you start Gnus.
730
731 @item gnus-before-startup-hook
732 @vindex gnus-before-startup-hook
733 A hook run after starting up Gnus successfully.
734
735 @item gnus-startup-hook
736 @vindex gnus-startup-hook
737 A hook run as the very last thing after starting up Gnus
738
739 @item gnus-started-hook
740 @vindex gnus-started-hook
741 A hook that is run as the very last thing after starting up Gnus
742 successfully.
743
744 @item gnus-started-hook
745 @vindex gnus-started-hook
746 A hook that is run after reading the @file{.newsrc} file(s), but before
747 generating the group buffer.
748
749 @item gnus-check-bogus-newsgroups
750 @vindex gnus-check-bogus-newsgroups
751 If non-@code{nil}, Gnus will check for and delete all bogus groups at
752 startup. A @dfn{bogus group} is a group that you have in your
753 @file{.newsrc} file, but doesn't exist on the news server. Checking for
754 bogus groups can take quite a while, so to save time and resources it's
755 best to leave this option off, and do the checking for bogus groups once
756 in a while from the group buffer instead (@pxref{Group Maintenance}).
757
758 @item gnus-inhibit-startup-message
759 @vindex gnus-inhibit-startup-message
760 If non-@code{nil}, the startup message won't be displayed. That way,
761 your boss might not notice as easily that you are reading news instead
762 of doing your job. Note that this variable is used before
763 @file{.gnus.el} is loaded, so it should be set in @code{.emacs} instead.
764
765 @item gnus-no-groups-message
766 @vindex gnus-no-groups-message
767 Message displayed by Gnus when no groups are available.
768
769 @item gnus-play-startup-jingle
770 @vindex gnus-play-startup-jingle
771 If non-@code{nil}, play the Gnus jingle at startup.
772
773 @item gnus-startup-jingle
774 @vindex gnus-startup-jingle
775 Jingle to be played if the above variable is non-@code{nil}. The
776 default is @samp{Tuxedomoon.Jingle4.au}.
777
778 @end table
779
780
781 @node The Group Buffer
782 @chapter The Group Buffer
783 @cindex group buffer
784
785 The @dfn{group buffer} lists all (or parts) of the available groups. It
786 is the first buffer shown when Gnus starts, and will never be killed as
787 long as Gnus is active.
788
789
790 @menu
791 * Group Buffer Format:: Information listed and how you can change it.
792 * Group Maneuvering:: Commands for moving in the group buffer.
793 * Selecting a Group:: Actually reading news.
794 * Group Data:: Changing the info for a group.
795 * Subscription Commands:: Unsubscribing, killing, subscribing.
796 * Group Levels:: Levels? What are those, then?
797 * Group Score:: A mechanism for finding out what groups you like.
798 * Marking Groups:: You can mark groups for later processing.
799 * Foreign Groups:: Creating and editing groups.
800 * Group Parameters:: Each group may have different parameters set.
801 * Listing Groups:: Gnus can list various subsets of the groups.
802 * Sorting Groups:: Re-arrange the group order.
803 * Group Maintenance:: Maintaining a tidy @file{.newsrc} file.
804 * Browse Foreign Server:: You can browse a server. See what it has to offer.
805 * Exiting Gnus:: Stop reading news and get some work done.
806 * Group Topics:: A folding group mode divided into topics.
807 * Misc Group Stuff:: Other stuff that you can to do.
808 @end menu
809
810
811 @node Group Buffer Format
812 @section Group Buffer Format
813
814 @menu
815 * Group Line Specification:: Deciding how the group buffer is to look.
816 * Group Modeline Specification:: The group buffer modeline.
817 * Group Highlighting:: Having nice colors in the group buffer.
818 @end menu
819
820
821 @node Group Line Specification
822 @subsection Group Line Specification
823 @cindex group buffer format
824
825 The default format of the group buffer is nice and dull, but you can
826 make it as exciting and ugly as you feel like.
827
828 Here's a couple of example group lines:
829
830 @example
831 25: news.announce.newusers
832 * 0: alt.fan.andrea-dworkin
833 @end example
834
835 Quite simple, huh?
836
837 You can see that there are 25 unread articles in
838 @samp{news.announce.newusers}. There are no unread articles, but some
839 ticked articles, in @samp{alt.fan.andrea-dworkin} (see that little
840 asterisk at the beginning of the line?).
841
842 @vindex gnus-group-line-format
843 You can change that format to whatever you want by fiddling with the
844 @code{gnus-group-line-format} variable. This variable works along the
845 lines of a @code{format} specification, which is pretty much the same as
846 a @code{printf} specifications, for those of you who use (feh!) C.
847 @xref{Formatting Variables}.
848
849 @samp{%M%S%5y: %(%g%)\n} is the value that produced those lines above.
850
851 There should always be a colon on the line; the cursor always moves to
852 the colon after performing an operation. Nothing else is required---not
853 even the group name. All displayed text is just window dressing, and is
854 never examined by Gnus. Gnus stores all real information it needs using
855 text properties.
856
857 (Note that if you make a really strange, wonderful, spreadsheet-like
858 layout, everybody will believe you are hard at work with the accounting
859 instead of wasting time reading news.)
860
861 Here's a list of all available format characters:
862
863 @table @samp
864
865 @item M
866 An asterisk if the group only has marked articles.
867
868 @item S
869 Whether the group is subscribed.
870
871 @item L
872 Level of subscribedness.
873
874 @item N
875 Number of unread articles.
876
877 @item I
878 Number of dormant articles.
879
880 @item T
881 Number of ticked articles.
882
883 @item R
884 Number of read articles.
885
886 @item t
887 Estimated total number of articles. (This is really @var{max-number}
888 minus @var{min-number} plus 1.)
889
890 @item y
891 Number of unread, unticked, non-dormant articles.
892
893 @item i
894 Number of ticked and dormant articles.
895
896 @item g
897 Full group name.
898
899 @item G
900 Group name.
901
902 @item D
903 Newsgroup description.
904
905 @item o
906 @samp{m} if moderated.
907
908 @item O
909 @samp{(m)} if moderated.
910
911 @item s
912 Select method.
913
914 @item n
915 Select from where.
916
917 @item z
918 A string that looks like @samp{<%s:%n>} if a foreign select method is
919 used.
920
921 @item P
922 Indentation based on the level of the topic (@pxref{Group Topics}).
923
924 @item c
925 @vindex gnus-group-uncollapsed-levels
926 Short (collapsed) group name. The @code{gnus-group-uncollapsed-levels}
927 variable says how many levels to leave at the end of the group name.
928 The default is 1---this will mean that group names like
929 @samp{gnu.emacs.gnus} will be shortened to @samp{g.emacs.gnus}.
930
931 @item m
932 @vindex gnus-new-mail-mark
933 @cindex %
934 @samp{%} (@code{gnus-new-mail-mark}) if there has arrived new mail to
935 the group lately.
936
937 @item d
938 A string that says when you last read the group (@pxref{Group
939 Timestamp}).
940
941 @item u
942 User defined specifier. The next character in the format string should
943 be a letter. Gnus will call the function
944 @code{gnus-user-format-function-}@samp{X}, where @samp{X} is the letter
945 following @samp{%u}. The function will be passed a single dummy
946 parameter as argument. The function should return a string, which will
947 be inserted into the buffer just like information from any other
948 specifier.
949 @end table
950
951 @cindex *
952 All the ``number-of'' specs will be filled with an asterisk (@samp{*})
953 if no info is available---for instance, if it is a non-activated foreign
954 group, or a bogus native group.
955
956
957 @node Group Modeline Specification
958 @subsection Group Modeline Specification
959 @cindex group modeline
960
961 @vindex gnus-group-mode-line-format
962 The mode line can be changed by setting
963 @code{gnus-group-mode-line-format} (@pxref{Mode Line Formatting}). It
964 doesn't understand that many format specifiers:
965
966 @table @samp
967 @item S
968 The native news server.
969 @item M
970 The native select method.
971 @end table
972
973
974 @node Group Highlighting
975 @subsection Group Highlighting
976 @cindex highlighting
977 @cindex group highlighting
978
979 @vindex gnus-group-highlight
980 Highlighting in the group buffer is controlled by the
981 @code{gnus-group-highlight} variable. This is an alist with elements
982 that look like @var{(form . face)}. If @var{form} evaluates to
983 something non-@code{nil}, the @var{face} will be used on the line.
984
985 Here's an example value for this variable that might look nice if the
986 background is dark:
987
988 @lisp
989 (face-spec-set 'my-group-face-1
990 '((t (:foreground "Red" :bold t))))
991 (face-spec-set 'my-group-face-2
992 '((t (:foreground "SeaGreen" :bold t))))
993 (face-spec-set 'my-group-face-3
994 '((t (:foreground "SpringGreen" :bold t))))
995 (face-spec-set 'my-group-face-4
996 '((t (:foreground "SteelBlue" :bold t))))
997 (face-spec-set 'my-group-face-5
998 '((t (:foreground "SkyBlue" :bold t))))
999
1000 (setq gnus-group-highlight
1001 '(((> unread 200) . my-group-face-1)
1002 ((and (< level 3) (zerop unread)) . my-group-face-2)
1003 ((< level 3) . my-group-face-3)
1004 ((zerop unread) . my-group-face-4)
1005 (t . my-group-face-5)))
1006 @end lisp
1007
1008 Also @pxref{Faces and Fonts}.
1009
1010 Variables that are dynamically bound when the forms are evaluated
1011 include:
1012
1013 @table @code
1014 @item group
1015 The group name.
1016 @item unread
1017 The number of unread articles in the group.
1018 @item method
1019 The select method.
1020 @item mailp
1021 Whether the group is a mail group.
1022 @item level
1023 The level of the group.
1024 @item score
1025 The score of the group.
1026 @item ticked
1027 The number of ticked articles in the group.
1028 @item total
1029 The total number of articles in the group. Or rather, MAX-NUMBER minus
1030 MIN-NUMBER plus one.
1031 @item topic
1032 When using the topic minor mode, this variable is bound to the current
1033 topic being inserted.
1034 @end table
1035
1036 When the forms are @code{eval}ed, point is at the beginning of the line
1037 of the group in question, so you can use many of the normal Gnus
1038 functions for snarfing info on the group.
1039
1040 @vindex gnus-group-update-hook
1041 @findex gnus-group-highlight-line
1042 @code{gnus-group-update-hook} is called when a group line is changed.
1043 It will not be called when @code{gnus-visual} is @code{nil}. This hook
1044 calls @code{gnus-group-highlight-line} by default.
1045
1046
1047 @node Group Maneuvering
1048 @section Group Maneuvering
1049 @cindex group movement
1050
1051 All movement commands understand the numeric prefix and will behave as
1052 expected, hopefully.
1053
1054 @table @kbd
1055
1056 @item n
1057 @kindex n (Group)
1058 @findex gnus-group-next-unread-group
1059 Go to the next group that has unread articles
1060 (@code{gnus-group-next-unread-group}).
1061
1062 @item p
1063 @itemx DEL
1064 @kindex DEL (Group)
1065 @kindex p (Group)
1066 @findex gnus-group-prev-unread-group
1067 Go to the previous group that has unread articles
1068 (@code{gnus-group-prev-unread-group}).
1069
1070 @item N
1071 @kindex N (Group)
1072 @findex gnus-group-next-group
1073 Go to the next group (@code{gnus-group-next-group}).
1074
1075 @item P
1076 @kindex P (Group)
1077 @findex gnus-group-prev-group
1078 Go to the previous group (@code{gnus-group-prev-group}).
1079
1080 @item M-n
1081 @kindex M-n (Group)
1082 @findex gnus-group-next-unread-group-same-level
1083 Go to the next unread group on the same (or lower) level
1084 (@code{gnus-group-next-unread-group-same-level}).
1085
1086 @item M-p
1087 @kindex M-p (Group)
1088 @findex gnus-group-prev-unread-group-same-level
1089 Go to the previous unread group on the same (or lower) level
1090 (@code{gnus-group-prev-unread-group-same-level}).
1091 @end table
1092
1093 Three commands for jumping to groups:
1094
1095 @table @kbd
1096
1097 @item j
1098 @kindex j (Group)
1099 @findex gnus-group-jump-to-group
1100 Jump to a group (and make it visible if it isn't already)
1101 (@code{gnus-group-jump-to-group}). Killed groups can be jumped to, just
1102 like living groups.
1103
1104 @item ,
1105 @kindex , (Group)
1106 @findex gnus-group-best-unread-group
1107 Jump to the unread group with the lowest level
1108 (@code{gnus-group-best-unread-group}).
1109
1110 @item .
1111 @kindex . (Group)
1112 @findex gnus-group-first-unread-group
1113 Jump to the first group with unread articles
1114 (@code{gnus-group-first-unread-group}).
1115 @end table
1116
1117 @vindex gnus-group-goto-unread
1118 If @code{gnus-group-goto-unread} is @code{nil}, all the movement
1119 commands will move to the next group, not the next unread group. Even
1120 the commands that say they move to the next unread group. The default
1121 is @code{t}.
1122
1123
1124 @node Selecting a Group
1125 @section Selecting a Group
1126 @cindex group selection
1127
1128 @table @kbd
1129
1130 @item SPACE
1131 @kindex SPACE (Group)
1132 @findex gnus-group-read-group
1133 Select the current group, switch to the summary buffer and display the
1134 first unread article (@code{gnus-group-read-group}). If there are no
1135 unread articles in the group, or if you give a non-numerical prefix to
1136 this command, Gnus will offer to fetch all the old articles in this
1137 group from the server. If you give a numerical prefix @var{N}, @var{N}
1138 determines the number of articles Gnus will fetch. If @var{N} is
1139 positive, Gnus fetches the @var{N} newest articles, if @var{N} is
1140 negative, Gnus fetches the @var{abs(N)} oldest articles.
1141
1142 @item RET
1143 @kindex RET (Group)
1144 @findex gnus-group-select-group
1145 Select the current group and switch to the summary buffer
1146 (@code{gnus-group-select-group}). Takes the same arguments as
1147 @code{gnus-group-read-group}---the only difference is that this command
1148 does not display the first unread article automatically upon group
1149 entry.
1150
1151 @item M-RET
1152 @kindex M-RET (Group)
1153 @findex gnus-group-quick-select-group
1154 This does the same as the command above, but tries to do it with the
1155 minimum amount of fuzz (@code{gnus-group-quick-select-group}). No
1156 scoring/killing will be performed, there will be no highlights and no
1157 expunging. This might be useful if you're in a real hurry and have to
1158 enter some humongous group. If you give a 0 prefix to this command
1159 (i.e., @kbd{0 M-RET}), Gnus won't even generate the summary buffer,
1160 which is useful if you want to toggle threading before generating the
1161 summary buffer (@pxref{Summary Generation Commands}).
1162
1163 @item M-SPACE
1164 @kindex M-SPACE (Group)
1165 @findex gnus-group-visible-select-group
1166 This is yet one more command that does the same as the @kbd{RET}
1167 command, but this one does it without expunging and hiding dormants
1168 (@code{gnus-group-visible-select-group}).
1169
1170 @item M-C-RET
1171 @kindex M-C-RET (Group)
1172 @findex gnus-group-select-group-ephemerally
1173 Finally, this command selects the current group ephemerally without
1174 doing any processing of its contents
1175 (@code{gnus-group-select-group-ephemerally}). Even threading has been
1176 turned off. Everything you do in the group after selecting it in this
1177 manner will have no permanent effects.
1178
1179 @end table
1180
1181 @vindex gnus-large-newsgroup
1182 The @code{gnus-large-newsgroup} variable says what Gnus should consider
1183 to be a big group. This is 200 by default. If the group has more
1184 (unread and/or ticked) articles than this, Gnus will query the user
1185 before entering the group. The user can then specify how many articles
1186 should be fetched from the server. If the user specifies a negative
1187 number (@code{-n}), the @code{n} oldest articles will be fetched. If it
1188 is positive, the @code{n} articles that have arrived most recently will
1189 be fetched.
1190
1191 @vindex gnus-select-group-hook
1192 @vindex gnus-auto-select-first
1193 @code{gnus-auto-select-first} control whether any articles are selected
1194 automatically when entering a group with the @kbd{SPACE} command.
1195
1196 @table @code
1197
1198 @item nil
1199 Don't select any articles when entering the group. Just display the
1200 full summary buffer.
1201
1202 @item t
1203 Select the first unread article when entering the group.
1204
1205 @item best
1206 Select the highest scored article in the group when entering the
1207 group.
1208 @end table
1209
1210 If you want to prevent automatic selection in some group (say, in a
1211 binary group with Huge articles) you can set this variable to @code{nil}
1212 in @code{gnus-select-group-hook}, which is called when a group is
1213 selected.
1214
1215
1216 @node Subscription Commands
1217 @section Subscription Commands
1218 @cindex subscription
1219
1220 @table @kbd
1221
1222 @item S t
1223 @itemx u
1224 @kindex S t (Group)
1225 @kindex u (Group)
1226 @findex gnus-group-unsubscribe-current-group
1227 @c @icon{gnus-group-unsubscribe}
1228 Toggle subscription to the current group
1229 (@code{gnus-group-unsubscribe-current-group}).
1230
1231 @item S s
1232 @itemx U
1233 @kindex S s (Group)
1234 @kindex U (Group)
1235 @findex gnus-group-unsubscribe-group
1236 Prompt for a group to subscribe, and then subscribe it. If it was
1237 subscribed already, unsubscribe it instead
1238 (@code{gnus-group-unsubscribe-group}).
1239
1240 @item S k
1241 @itemx C-k
1242 @kindex S k (Group)
1243 @kindex C-k (Group)
1244 @findex gnus-group-kill-group
1245 @c @icon{gnus-group-kill-group}
1246 Kill the current group (@code{gnus-group-kill-group}).
1247
1248 @item S y
1249 @itemx C-y
1250 @kindex S y (Group)
1251 @kindex C-y (Group)
1252 @findex gnus-group-yank-group
1253 Yank the last killed group (@code{gnus-group-yank-group}).
1254
1255 @item C-x C-t
1256 @kindex C-x C-t (Group)
1257 @findex gnus-group-transpose-groups
1258 Transpose two groups (@code{gnus-group-transpose-groups}). This isn't
1259 really a subscription command, but you can use it instead of a
1260 kill-and-yank sequence sometimes.
1261
1262 @item S w
1263 @itemx C-w
1264 @kindex S w (Group)
1265 @kindex C-w (Group)
1266 @findex gnus-group-kill-region
1267 Kill all groups in the region (@code{gnus-group-kill-region}).
1268
1269 @item S z
1270 @kindex S z (Group)
1271 @findex gnus-group-kill-all-zombies
1272 Kill all zombie groups (@code{gnus-group-kill-all-zombies}).
1273
1274 @item S C-k
1275 @kindex S C-k (Group)
1276 @findex gnus-group-kill-level
1277 Kill all groups on a certain level (@code{gnus-group-kill-level}).
1278 These groups can't be yanked back after killing, so this command should
1279 be used with some caution. The only time where this command comes in
1280 really handy is when you have a @file{.newsrc} with lots of unsubscribed
1281 groups that you want to get rid off. @kbd{S C-k} on level 7 will
1282 kill off all unsubscribed groups that do not have message numbers in the
1283 @file{.newsrc} file.
1284
1285 @end table
1286
1287 Also @pxref{Group Levels}.
1288
1289
1290 @node Group Data
1291 @section Group Data
1292
1293 @table @kbd
1294
1295 @item c
1296 @kindex c (Group)
1297 @findex gnus-group-catchup-current
1298 @vindex gnus-group-catchup-group-hook
1299 @c @icon{gnus-group-catchup-current}
1300 Mark all unticked articles in this group as read
1301 (@code{gnus-group-catchup-current}).
1302 @code{gnus-group-catchup-group-hook} is called when catching up a group from
1303 the group buffer.
1304
1305 @item C
1306 @kindex C (Group)
1307 @findex gnus-group-catchup-current-all
1308 Mark all articles in this group, even the ticked ones, as read
1309 (@code{gnus-group-catchup-current-all}).
1310
1311 @item M-c
1312 @kindex M-c (Group)
1313 @findex gnus-group-clear-data
1314 Clear the data from the current group---nix out marks and the list of
1315 read articles (@code{gnus-group-clear-data}).
1316
1317 @item M-x gnus-group-clear-data-on-native-groups
1318 @kindex M-x gnus-group-clear-data-on-native-groups
1319 @findex gnus-group-clear-data-on-native-groups
1320 If you have switched from one @sc{nntp} server to another, all your marks
1321 and read ranges have become worthless. You can use this command to
1322 clear out all data that you have on your native groups. Use with
1323 caution.
1324
1325 @end table
1326
1327
1328 @node Group Levels
1329 @section Group Levels
1330 @cindex group level
1331 @cindex level
1332
1333 All groups have a level of @dfn{subscribedness}. For instance, if a
1334 group is on level 2, it is more subscribed than a group on level 5. You
1335 can ask Gnus to just list groups on a given level or lower
1336 (@pxref{Listing Groups}), or to just check for new articles in groups on
1337 a given level or lower (@pxref{Scanning New Messages}).
1338
1339 Remember: The higher the level of the group, the less important it is.
1340
1341 @table @kbd
1342
1343 @item S l
1344 @kindex S l (Group)
1345 @findex gnus-group-set-current-level
1346 Set the level of the current group. If a numeric prefix is given, the
1347 next @var{n} groups will have their levels set. The user will be
1348 prompted for a level.
1349 @end table
1350
1351 @vindex gnus-level-killed
1352 @vindex gnus-level-zombie
1353 @vindex gnus-level-unsubscribed
1354 @vindex gnus-level-subscribed
1355 Gnus considers groups from levels 1 to
1356 @code{gnus-level-subscribed} (inclusive) (default 5) to be subscribed,
1357 @code{gnus-level-subscribed} (exclusive) and
1358 @code{gnus-level-unsubscribed} (inclusive) (default 7) to be
1359 unsubscribed, @code{gnus-level-zombie} to be zombies (walking dead)
1360 (default 8) and @code{gnus-level-killed} to be killed (completely dead)
1361 (default 9). Gnus treats subscribed and unsubscribed groups exactly the
1362 same, but zombie and killed groups have no information on what articles
1363 you have read, etc, stored. This distinction between dead and living
1364 groups isn't done because it is nice or clever, it is done purely for
1365 reasons of efficiency.
1366
1367 It is recommended that you keep all your mail groups (if any) on quite
1368 low levels (e.g. 1 or 2).
1369
1370 If you want to play with the level variables, you should show some care.
1371 Set them once, and don't touch them ever again. Better yet, don't touch
1372 them at all unless you know exactly what you're doing.
1373
1374 @vindex gnus-level-default-unsubscribed
1375 @vindex gnus-level-default-subscribed
1376 Two closely related variables are @code{gnus-level-default-subscribed}
1377 (default 3) and @code{gnus-level-default-unsubscribed} (default 6),
1378 which are the levels that new groups will be put on if they are
1379 (un)subscribed. These two variables should, of course, be inside the
1380 relevant valid ranges.
1381
1382 @vindex gnus-keep-same-level
1383 If @code{gnus-keep-same-level} is non-@code{nil}, some movement commands
1384 will only move to groups of the same level (or lower). In
1385 particular, going from the last article in one group to the next group
1386 will go to the next group of the same level (or lower). This might be
1387 handy if you want to read the most important groups before you read the
1388 rest.
1389
1390 @vindex gnus-group-default-list-level
1391 All groups with a level less than or equal to
1392 @code{gnus-group-default-list-level} will be listed in the group buffer
1393 by default.
1394
1395 @vindex gnus-group-list-inactive-groups
1396 If @code{gnus-group-list-inactive-groups} is non-@code{nil}, non-active
1397 groups will be listed along with the unread groups. This variable is
1398 @code{t} by default. If it is @code{nil}, inactive groups won't be
1399 listed.
1400
1401 @vindex gnus-group-use-permanent-levels
1402 If @code{gnus-group-use-permanent-levels} is non-@code{nil}, once you
1403 give a level prefix to @kbd{g} or @kbd{l}, all subsequent commands will
1404 use this level as the ``work'' level.
1405
1406 @vindex gnus-activate-level
1407 Gnus will normally just activate (i. e., query the server about) groups
1408 on level @code{gnus-activate-level} or less. If you don't want to
1409 activate unsubscribed groups, for instance, you might set this variable
1410 to 5. The default is 6.
1411
1412
1413 @node Group Score
1414 @section Group Score
1415 @cindex group score
1416 @cindex group rank
1417 @cindex rank
1418
1419 You would normally keep important groups on high levels, but that scheme
1420 is somewhat restrictive. Don't you wish you could have Gnus sort the
1421 group buffer according to how often you read groups, perhaps? Within
1422 reason?
1423
1424 This is what @dfn{group score} is for. You can assign a score to each
1425 group. You can then sort the group buffer based on this score.
1426 Alternatively, you can sort on score and then level. (Taken together,
1427 the level and the score is called the @dfn{rank} of the group. A group
1428 that is on level 4 and has a score of 1 has a higher rank than a group
1429 on level 5 that has a score of 300. (The level is the most significant
1430 part and the score is the least significant part.))
1431
1432 @findex gnus-summary-bubble-group
1433 If you want groups you read often to get higher scores than groups you
1434 read seldom you can add the @code{gnus-summary-bubble-group} function to
1435 the @code{gnus-summary-exit-hook} hook. This will result (after
1436 sorting) in a bubbling sort of action. If you want to see that in
1437 action after each summary exit, you can add
1438 @code{gnus-group-sort-groups-by-rank} or
1439 @code{gnus-group-sort-groups-by-score} to the same hook, but that will
1440 slow things down somewhat.
1441
1442
1443 @node Marking Groups
1444 @section Marking Groups
1445 @cindex marking groups
1446
1447 If you want to perform some command on several groups, and they appear
1448 subsequently in the group buffer, you would normally just give a
1449 numerical prefix to the command. Most group commands will then do your
1450 bidding on those groups.
1451
1452 However, if the groups are not in sequential order, you can still
1453 perform a command on several groups. You simply mark the groups first
1454 with the process mark and then execute the command.
1455
1456 @table @kbd
1457
1458 @item #
1459 @kindex # (Group)
1460 @itemx M m
1461 @kindex M m (Group)
1462 @findex gnus-group-mark-group
1463 Set the mark on the current group (@code{gnus-group-mark-group}).
1464
1465 @item M-#
1466 @kindex M-# (Group)
1467 @itemx M u
1468 @kindex M u (Group)
1469 @findex gnus-group-unmark-group
1470 Remove the mark from the current group
1471 (@code{gnus-group-unmark-group}).
1472
1473 @item M U
1474 @kindex M U (Group)
1475 @findex gnus-group-unmark-all-groups
1476 Remove the mark from all groups (@code{gnus-group-unmark-all-groups}).
1477
1478 @item M w
1479 @kindex M w (Group)
1480 @findex gnus-group-mark-region
1481 Mark all groups between point and mark (@code{gnus-group-mark-region}).
1482
1483 @item M b
1484 @kindex M b (Group)
1485 @findex gnus-group-mark-buffer
1486 Mark all groups in the buffer (@code{gnus-group-mark-buffer}).
1487
1488 @item M r
1489 @kindex M r (Group)
1490 @findex gnus-group-mark-regexp
1491 Mark all groups that match some regular expression
1492 (@code{gnus-group-mark-regexp}).
1493 @end table
1494
1495 Also @pxref{Process/Prefix}.
1496
1497 @findex gnus-group-universal-argument
1498 If you want to execute some command on all groups that have been marked
1499 with the process mark, you can use the @kbd{M-&}
1500 (@code{gnus-group-universal-argument}) command. It will prompt you for
1501 the command to be executed.
1502
1503
1504 @node Foreign Groups
1505 @section Foreign Groups
1506 @cindex foreign groups
1507
1508 Below are some group mode commands for making and editing general foreign
1509 groups, as well as commands to ease the creation of a few
1510 special-purpose groups. All these commands insert the newly created
1511 groups under point---@code{gnus-subscribe-newsgroup-method} is not
1512 consulted.
1513
1514 @table @kbd
1515
1516 @item G m
1517 @kindex G m (Group)
1518 @findex gnus-group-make-group
1519 @cindex making groups
1520 Make a new group (@code{gnus-group-make-group}). Gnus will prompt you
1521 for a name, a method and possibly an @dfn{address}. For an easier way
1522 to subscribe to @sc{nntp} groups, @pxref{Browse Foreign Server}.
1523
1524 @item G r
1525 @kindex G r (Group)
1526 @findex gnus-group-rename-group
1527 @cindex renaming groups
1528 Rename the current group to something else
1529 (@code{gnus-group-rename-group}). This is valid only on some
1530 groups---mail groups mostly. This command might very well be quite slow
1531 on some backends.
1532
1533 @item G c
1534 @kindex G c (Group)
1535 @cindex customizing
1536 @findex gnus-group-customize
1537 Customize the group parameters (@code{gnus-group-customize}).
1538
1539 @item G e
1540 @kindex G e (Group)
1541 @findex gnus-group-edit-group-method
1542 @cindex renaming groups
1543 Enter a buffer where you can edit the select method of the current
1544 group (@code{gnus-group-edit-group-method}).
1545
1546 @item G p
1547 @kindex G p (Group)
1548 @findex gnus-group-edit-group-parameters
1549 Enter a buffer where you can edit the group parameters
1550 (@code{gnus-group-edit-group-parameters}).
1551
1552 @item G E
1553 @kindex G E (Group)
1554 @findex gnus-group-edit-group
1555 Enter a buffer where you can edit the group info
1556 (@code{gnus-group-edit-group}).
1557
1558 @item G d
1559 @kindex G d (Group)
1560 @findex gnus-group-make-directory-group
1561 @cindex nndir
1562 Make a directory group (@pxref{Directory Groups}). You will be prompted
1563 for a directory name (@code{gnus-group-make-directory-group}).
1564
1565 @item G h
1566 @kindex G h (Group)
1567 @cindex help group
1568 @findex gnus-group-make-help-group
1569 Make the Gnus help group (@code{gnus-group-make-help-group}).
1570
1571 @item G a
1572 @kindex G a (Group)
1573 @cindex (ding) archive
1574 @cindex archive group
1575 @findex gnus-group-make-archive-group
1576 @vindex gnus-group-archive-directory
1577 @vindex gnus-group-recent-archive-directory
1578 Make a Gnus archive group (@code{gnus-group-make-archive-group}). By
1579 default a group pointing to the most recent articles will be created
1580 (@code{gnus-group-recent-archive-directory}), but given a prefix, a full
1581 group will be created from @code{gnus-group-archive-directory}.
1582
1583 @item G k
1584 @kindex G k (Group)
1585 @findex gnus-group-make-kiboze-group
1586 @cindex nnkiboze
1587 Make a kiboze group. You will be prompted for a name, for a regexp to
1588 match groups to be ``included'' in the kiboze group, and a series of
1589 strings to match on headers (@code{gnus-group-make-kiboze-group}).
1590 @xref{Kibozed Groups}.
1591
1592 @item G D
1593 @kindex G D (Group)
1594 @findex gnus-group-enter-directory
1595 @cindex nneething
1596 Read an arbitrary directory as if it were a newsgroup with the
1597 @code{nneething} backend (@code{gnus-group-enter-directory}).
1598 @xref{Anything Groups}.
1599
1600 @item G f
1601 @kindex G f (Group)
1602 @findex gnus-group-make-doc-group
1603 @cindex ClariNet Briefs
1604 @cindex nndoc
1605 Make a group based on some file or other
1606 (@code{gnus-group-make-doc-group}). If you give a prefix to this
1607 command, you will be prompted for a file name and a file type.
1608 Currently supported types are @code{babyl}, @code{mbox}, @code{digest},
1609 @code{mmdf}, @code{news}, @code{rnews}, @code{clari-briefs},
1610 @code{rfc934}, @code{rfc822-forward}, and @code{forward}. If you run
1611 this command without a prefix, Gnus will guess at the file type.
1612 @xref{Document Groups}.
1613
1614 @item G u
1615 @kindex G u (Group)
1616 @vindex gnus-useful-groups
1617 @findex gnus-group-make-useful-group
1618 Create one of the groups mentioned in @code{gnus-useful-groups}
1619 (@code{gnus-group-make-useful-group}).
1620
1621 @item G w
1622 @kindex G w (Group)
1623 @findex gnus-group-make-web-group
1624 @cindex DejaNews
1625 @cindex Alta Vista
1626 @cindex InReference
1627 @cindex nnweb
1628 Make an ephemeral group based on a web search
1629 (@code{gnus-group-make-web-group}). If you give a prefix to this
1630 command, make a solid group instead. You will be prompted for the
1631 search engine type and the search string. Valid search engine types
1632 include @code{dejanews}, @code{altavista} and @code{reference}.
1633 @xref{Web Searches}.
1634
1635 If you use the @code{dejanews} search engine, you can limit the search
1636 to a particular group by using a match string like
1637 @samp{~g alt.sysadmin.recovery shaving}.
1638
1639 @item G DEL
1640 @kindex G DEL (Group)
1641 @findex gnus-group-delete-group
1642 This function will delete the current group
1643 (@code{gnus-group-delete-group}). If given a prefix, this function will
1644 actually delete all the articles in the group, and forcibly remove the
1645 group itself from the face of the Earth. Use a prefix only if you are
1646 absolutely sure of what you are doing. This command can't be used on
1647 read-only groups (like @code{nntp} group), though.
1648
1649 @item G V
1650 @kindex G V (Group)
1651 @findex gnus-group-make-empty-virtual
1652 Make a new, fresh, empty @code{nnvirtual} group
1653 (@code{gnus-group-make-empty-virtual}). @xref{Virtual Groups}.
1654
1655 @item G v
1656 @kindex G v (Group)
1657 @findex gnus-group-add-to-virtual
1658 Add the current group to an @code{nnvirtual} group
1659 (@code{gnus-group-add-to-virtual}). Uses the process/prefix convention.
1660 @end table
1661
1662 @xref{Select Methods}, for more information on the various select
1663 methods.
1664
1665 @vindex gnus-activate-foreign-newsgroups
1666 If @code{gnus-activate-foreign-newsgroups} is a positive number,
1667 Gnus will check all foreign groups with this level or lower at startup.
1668 This might take quite a while, especially if you subscribe to lots of
1669 groups from different @sc{nntp} servers. Also @pxref{Group Levels};
1670 @code{gnus-activate-level} also affects activation of foreign
1671 newsgroups.
1672
1673
1674 @node Group Parameters
1675 @section Group Parameters
1676 @cindex group parameters
1677
1678 The group parameters store information local to a particular group.
1679 Here's an example group parameter list:
1680
1681 @example
1682 ((to-address . "ding@@gnus.org")
1683 (auto-expire . t))
1684 @end example
1685
1686 We see that each element consists of a "dotted pair"---the thing before
1687 the dot is the key, while the thing after the dot is the value. All the
1688 parameters have this form @emph{except} local variable specs, which are
1689 not dotted pairs, but proper lists.
1690
1691 The following group parameters can be used:
1692
1693 @table @code
1694 @item to-address
1695 @cindex to-address
1696 Address used by when doing followups and new posts.
1697
1698 @example
1699 (to-address . "some@@where.com")
1700 @end example
1701
1702 This is primarily useful in mail groups that represent closed mailing
1703 lists---mailing lists where it's expected that everybody that writes to
1704 the mailing list is subscribed to it. Since using this parameter
1705 ensures that the mail only goes to the mailing list itself, it means
1706 that members won't receive two copies of your followups.
1707
1708 Using @code{to-address} will actually work whether the group is foreign
1709 or not. Let's say there's a group on the server that is called
1710 @samp{fa.4ad-l}. This is a real newsgroup, but the server has gotten
1711 the articles from a mail-to-news gateway. Posting directly to this
1712 group is therefore impossible---you have to send mail to the mailing
1713 list address instead.
1714
1715 @item to-list
1716 @cindex to-list
1717 Address used when doing a @kbd{a} in that group.
1718
1719 @example
1720 (to-list . "some@@where.com")
1721 @end example
1722
1723 It is totally ignored
1724 when doing a followup---except that if it is present in a news group,
1725 you'll get mail group semantics when doing @kbd{f}.
1726
1727 If you do an @kbd{a} command in a mail group and you have neither a
1728 @code{to-list} group parameter nor a @code{to-address} group parameter,
1729 then a @code{to-list} group parameter will be added automatically upon
1730 sending the message if @code{gnus-add-to-list} is set to @code{t}.
1731 @vindex gnus-add-to-list
1732
1733 If you do an @kbd{a} command in a mail group and you don't have a
1734 @code{to-list} group parameter, one will be added automatically upon
1735 sending the message.
1736
1737 @item visible
1738 @cindex visible
1739 If the group parameter list has the element @code{(visible . t)},
1740 that group will always be visible in the Group buffer, regardless
1741 of whether it has any unread articles.
1742
1743 @item broken-reply-to
1744 @cindex broken-reply-to
1745 Elements like @code{(broken-reply-to . t)} signals that @code{Reply-To}
1746 headers in this group are to be ignored. This can be useful if you're
1747 reading a mailing list group where the listserv has inserted
1748 @code{Reply-To} headers that point back to the listserv itself. This is
1749 broken behavior. So there!
1750
1751 @item to-group
1752 @cindex to-group
1753 Elements like @code{(to-group . "some.group.name")} means that all
1754 posts in that group will be sent to @code{some.group.name}.
1755
1756 @item newsgroup
1757 @cindex newsgroup
1758 If you have @code{(newsgroup . t)} in the group parameter list, Gnus
1759 will treat all responses as if they were responses to news articles.
1760 This can be useful if you have a mail group that's really a mirror of a
1761 news group.
1762
1763 @item gcc-self
1764 @cindex gcc-self
1765 If @code{(gcc-self . t)} is present in the group parameter list, newly
1766 composed messages will be @code{Gcc}'d to the current group. If
1767 @code{(gcc-self . none)} is present, no @code{Gcc:} header will be
1768 generated, if @code{(gcc-self . "string")} is present, this string will
1769 be inserted literally as a @code{gcc} header. This parameter takes
1770 precedence over any default @code{Gcc} rules as described later
1771 (@pxref{Archived Messages}).
1772
1773 @item auto-expire
1774 @cindex auto-expire
1775 If the group parameter has an element that looks like @code{(auto-expire
1776 . t)}, all articles read will be marked as expirable. For an
1777 alternative approach, @pxref{Expiring Mail}.
1778
1779 @item total-expire
1780 @cindex total-expire
1781 If the group parameter has an element that looks like
1782 @code{(total-expire . t)}, all read articles will be put through the
1783 expiry process, even if they are not marked as expirable. Use with
1784 caution. Unread, ticked and dormant articles are not eligible for
1785 expiry.
1786
1787 @item expiry-wait
1788 @cindex expiry-wait
1789 @vindex nnmail-expiry-wait-function
1790 If the group parameter has an element that looks like @code{(expiry-wait
1791 . 10)}, this value will override any @code{nnmail-expiry-wait} and
1792 @code{nnmail-expiry-wait-function} when expiring expirable messages.
1793 The value can either be a number of days (not necessarily an integer) or
1794 the symbols @code{never} or @code{immediate}.
1795
1796 @item score-file
1797 @cindex score file group parameter
1798 Elements that look like @code{(score-file . "file")} will make
1799 @file{file} into the current score file for the group in question. All
1800 interactive score entries will be put into this file.
1801
1802 @item adapt-file
1803 @cindex adapt file group parameter
1804 Elements that look like @code{(adapt-file . "file")} will make
1805 @file{file} into the current adaptive file for the group in question.
1806 All adaptive score entries will be put into this file.
1807
1808 @item admin-address
1809 When unsubscribing from a mailing list you should never send the
1810 unsubscription notice to the mailing list itself. Instead, you'd send
1811 messages to the administrative address. This parameter allows you to
1812 put the admin address somewhere convenient.
1813
1814 @item display
1815 Elements that look like @code{(display . MODE)} say which articles to
1816 display on entering the group. Valid values are:
1817
1818 @table @code
1819 @item all
1820 Display all articles, both read and unread.
1821
1822 @item default
1823 Display the default visible articles, which normally includes unread and
1824 ticked articles.
1825 @end table
1826
1827 @item comment
1828 Elements that look like @code{(comment . "This is a comment")}
1829 are arbitrary comments on the group. They are currently ignored by
1830 Gnus, but provide a place for you to store information on particular
1831 groups.
1832
1833 @item @var{(variable form)}
1834 You can use the group parameters to set variables local to the group you
1835 are entering. If you want to turn threading off in @samp{news.answers},
1836 you could put @code{(gnus-show-threads nil)} in the group parameters of
1837 that group. @code{gnus-show-threads} will be made into a local variable
1838 in the summary buffer you enter, and the form @code{nil} will be
1839 @code{eval}ed there.
1840
1841 This can also be used as a group-specific hook function, if you'd like.
1842 If you want to hear a beep when you enter a group, you could put
1843 something like @code{(dummy-variable (ding))} in the parameters of that
1844 group. @code{dummy-variable} will be set to the result of the
1845 @code{(ding)} form, but who cares?
1846
1847 @end table
1848
1849 Use the @kbd{G p} command to edit group parameters of a group. You
1850 might also be interested in reading about topic parameters (@pxref{Topic
1851 Parameters}).
1852
1853
1854 @node Listing Groups
1855 @section Listing Groups
1856 @cindex group listing
1857
1858 These commands all list various slices of the groups available.
1859
1860 @table @kbd
1861
1862 @item l
1863 @itemx A s
1864 @kindex A s (Group)
1865 @kindex l (Group)
1866 @findex gnus-group-list-groups
1867 List all groups that have unread articles
1868 (@code{gnus-group-list-groups}). If the numeric prefix is used, this
1869 command will list only groups of level ARG and lower. By default, it
1870 only lists groups of level five (i. e.,
1871 @code{gnus-group-default-list-level}) or lower (i.e., just subscribed
1872 groups).
1873
1874 @item L
1875 @itemx A u
1876 @kindex A u (Group)
1877 @kindex L (Group)
1878 @findex gnus-group-list-all-groups
1879 List all groups, whether they have unread articles or not
1880 (@code{gnus-group-list-all-groups}). If the numeric prefix is used,
1881 this command will list only groups of level ARG and lower. By default,
1882 it lists groups of level seven or lower (i.e., just subscribed and
1883 unsubscribed groups).
1884
1885 @item A l
1886 @kindex A l (Group)
1887 @findex gnus-group-list-level
1888 List all unread groups on a specific level
1889 (@code{gnus-group-list-level}). If given a prefix, also list the groups
1890 with no unread articles.
1891
1892 @item A k
1893 @kindex A k (Group)
1894 @findex gnus-group-list-killed
1895 List all killed groups (@code{gnus-group-list-killed}). If given a
1896 prefix argument, really list all groups that are available, but aren't
1897 currently (un)subscribed. This could entail reading the active file
1898 from the server.
1899
1900 @item A z
1901 @kindex A z (Group)
1902 @findex gnus-group-list-zombies
1903 List all zombie groups (@code{gnus-group-list-zombies}).
1904
1905 @item A m
1906 @kindex A m (Group)
1907 @findex gnus-group-list-matching
1908 List all unread, subscribed groups with names that match a regexp
1909 (@code{gnus-group-list-matching}).
1910
1911 @item A M
1912 @kindex A M (Group)
1913 @findex gnus-group-list-all-matching
1914 List groups that match a regexp (@code{gnus-group-list-all-matching}).
1915
1916 @item A A
1917 @kindex A A (Group)
1918 @findex gnus-group-list-active
1919 List absolutely all groups in the active file(s) of the
1920 server(s) you are connected to (@code{gnus-group-list-active}). This
1921 might very well take quite a while. It might actually be a better idea
1922 to do a @kbd{A M} to list all matching, and just give @samp{.} as the
1923 thing to match on. Also note that this command may list groups that
1924 don't exist (yet)---these will be listed as if they were killed groups.
1925 Take the output with some grains of salt.
1926
1927 @item A a
1928 @kindex A a (Group)
1929 @findex gnus-group-apropos
1930 List all groups that have names that match a regexp
1931 (@code{gnus-group-apropos}).
1932
1933 @item A d
1934 @kindex A d (Group)
1935 @findex gnus-group-description-apropos
1936 List all groups that have names or descriptions that match a regexp
1937 (@code{gnus-group-description-apropos}).
1938
1939 @end table
1940
1941 @vindex gnus-permanently-visible-groups
1942 @cindex visible group parameter
1943 Groups that match the @code{gnus-permanently-visible-groups} regexp will
1944 always be shown, whether they have unread articles or not. You can also
1945 add the @code{visible} element to the group parameters in question to
1946 get the same effect.
1947
1948 @vindex gnus-list-groups-with-ticked-articles
1949 Groups that have just ticked articles in it are normally listed in the
1950 group buffer. If @code{gnus-list-groups-with-ticked-articles} is
1951 @code{nil}, these groups will be treated just like totally empty
1952 groups. It is @code{t} by default.
1953
1954
1955 @node Sorting Groups
1956 @section Sorting Groups
1957 @cindex sorting groups
1958
1959 @kindex C-c C-s (Group)
1960 @findex gnus-group-sort-groups
1961 @vindex gnus-group-sort-function
1962 The @kbd{C-c C-s} (@code{gnus-group-sort-groups}) command sorts the
1963 group buffer according to the function(s) given by the
1964 @code{gnus-group-sort-function} variable. Available sorting functions
1965 include:
1966
1967 @table @code
1968
1969 @item gnus-group-sort-by-alphabet
1970 @findex gnus-group-sort-by-alphabet
1971 Sort the group names alphabetically. This is the default.
1972
1973 @item gnus-group-sort-by-real-name
1974 @findex gnus-group-sort-by-real-name
1975 Sort the group alphabetically on the real (unprefixed) group names.
1976
1977 @item gnus-group-sort-by-level
1978 @findex gnus-group-sort-by-level
1979 Sort by group level.
1980
1981 @item gnus-group-sort-by-score
1982 @findex gnus-group-sort-by-score
1983 Sort by group score. @xref{Group Score}.
1984
1985 @item gnus-group-sort-by-rank
1986 @findex gnus-group-sort-by-rank
1987 Sort by group score and then the group level. The level and the score
1988 are, when taken together, the group's @dfn{rank}. @xref{Group Score}.
1989
1990 @item gnus-group-sort-by-unread
1991 @findex gnus-group-sort-by-unread
1992 Sort by number of unread articles.
1993
1994 @item gnus-group-sort-by-method
1995 @findex gnus-group-sort-by-method
1996 Sort alphabetically on the select method.
1997
1998
1999 @end table
2000
2001 @code{gnus-group-sort-function} can also be a list of sorting
2002 functions. In that case, the most significant sort key function must be
2003 the last one.
2004
2005
2006 There are also a number of commands for sorting directly according to
2007 some sorting criteria:
2008
2009 @table @kbd
2010 @item G S a
2011 @kindex G S a (Group)
2012 @findex gnus-group-sort-groups-by-alphabet
2013 Sort the group buffer alphabetically by group name
2014 (@code{gnus-group-sort-groups-by-alphabet}).
2015
2016 @item G S u
2017 @kindex G S u (Group)
2018 @findex gnus-group-sort-groups-by-unread
2019 Sort the group buffer by the number of unread articles
2020 (@code{gnus-group-sort-groups-by-unread}).
2021
2022 @item G S l
2023 @kindex G S l (Group)
2024 @findex gnus-group-sort-groups-by-level
2025 Sort the group buffer by group level
2026 (@code{gnus-group-sort-groups-by-level}).
2027
2028 @item G S v
2029 @kindex G S v (Group)
2030 @findex gnus-group-sort-groups-by-score
2031 Sort the group buffer by group score
2032 (@code{gnus-group-sort-groups-by-score}). @xref{Group Score}.
2033
2034 @item G S r
2035 @kindex G S r (Group)
2036 @findex gnus-group-sort-groups-by-rank
2037 Sort the group buffer by group rank
2038 (@code{gnus-group-sort-groups-by-rank}). @xref{Group Score}.
2039
2040 @item G S m
2041 @kindex G S m (Group)
2042 @findex gnus-group-sort-groups-by-method
2043 Sort the group buffer alphabetically by backend name
2044 (@code{gnus-group-sort-groups-by-method}).
2045
2046 @end table
2047
2048 When given a prefix, all these commands will sort in reverse order.
2049
2050 You can also sort a subset of the groups:
2051
2052 @table @kbd
2053 @item G P a
2054 @kindex G P a (Group)
2055 @findex gnus-group-sort-selected-groups-by-alphabet
2056 Sort the process/prefixed groups in the group buffer alphabetically by
2057 group name (@code{gnus-group-sort-selected-groups-by-alphabet}).
2058
2059 @item G P u
2060 @kindex G P u (Group)
2061 @findex gnus-group-sort-selected-groups-by-unread
2062 Sort the process/prefixed groups in the group buffer by the number of
2063 unread articles (@code{gnus-group-sort-selected-groups-by-unread}).
2064
2065 @item G P l
2066 @kindex G P l (Group)
2067 @findex gnus-group-sort-selected-groups-by-level
2068 Sort the process/prefixed groups in the group buffer by group level
2069 (@code{gnus-group-sort-selected-groups-by-level}).
2070
2071 @item G P v
2072 @kindex G P v (Group)
2073 @findex gnus-group-sort-selected-groups-by-score
2074 Sort the process/prefixed groups in the group buffer by group score
2075 (@code{gnus-group-sort-selected-groups-by-score}). @xref{Group Score}.
2076
2077 @item G P r
2078 @kindex G P r (Group)
2079 @findex gnus-group-sort-selected-groups-by-rank
2080 Sort the process/prefixed groups in the group buffer by group rank
2081 (@code{gnus-group-sort-selected-groups-by-rank}). @xref{Group Score}.
2082
2083 @item G P m
2084 @kindex G P m (Group)
2085 @findex gnus-group-sort-selected-groups-by-method
2086 Sort the process/prefixed groups in the group buffer alphabetically by
2087 backend name (@code{gnus-group-sort-selected-groups-by-method}).
2088
2089 @end table
2090
2091
2092
2093 @node Group Maintenance
2094 @section Group Maintenance
2095 @cindex bogus groups
2096
2097 @table @kbd
2098 @item b
2099 @kindex b (Group)
2100 @findex gnus-group-check-bogus-groups
2101 Find bogus groups and delete them
2102 (@code{gnus-group-check-bogus-groups}).
2103
2104 @item F
2105 @kindex F (Group)
2106 @findex gnus-group-find-new-groups
2107 Find new groups and process them (@code{gnus-group-find-new-groups}).
2108 With 1 @kbd{C-u}, use the @code{ask-server} method to query the server
2109 for new groups. With 2 @kbd{C-u}'s, use most complete method possible
2110 to query the server for new groups, and subscribe the new groups as
2111 zombies.
2112
2113 @item C-c C-x
2114 @kindex C-c C-x (Group)
2115 @findex gnus-group-expire-articles
2116 Run all expirable articles in the current group through the expiry
2117 process (if any) (@code{gnus-group-expire-articles}).
2118
2119 @item C-c M-C-x
2120 @kindex C-c M-C-x (Group)
2121 @findex gnus-group-expire-all-groups
2122 Run all articles in all groups through the expiry process
2123 (@code{gnus-group-expire-all-groups}).
2124
2125 @end table
2126
2127
2128 @node Browse Foreign Server
2129 @section Browse Foreign Server
2130 @cindex foreign servers
2131 @cindex browsing servers
2132
2133 @table @kbd
2134 @item B
2135 @kindex B (Group)
2136 @findex gnus-group-browse-foreign-server
2137 You will be queried for a select method and a server name. Gnus will
2138 then attempt to contact this server and let you browse the groups there
2139 (@code{gnus-group-browse-foreign-server}).
2140 @end table
2141
2142 @findex gnus-browse-mode
2143 A new buffer with a list of available groups will appear. This buffer
2144 will use the @code{gnus-browse-mode}. This buffer looks a bit (well,
2145 a lot) like a normal group buffer.
2146
2147 Here's a list of keystrokes available in the browse mode:
2148
2149 @table @kbd
2150 @item n
2151 @kindex n (Browse)
2152 @findex gnus-group-next-group
2153 Go to the next group (@code{gnus-group-next-group}).
2154
2155 @item p
2156 @kindex p (Browse)
2157 @findex gnus-group-prev-group
2158 Go to the previous group (@code{gnus-group-prev-group}).
2159
2160 @item SPACE
2161 @kindex SPACE (Browse)
2162 @findex gnus-browse-read-group
2163 Enter the current group and display the first article
2164 (@code{gnus-browse-read-group}).
2165
2166 @item RET
2167 @kindex RET (Browse)
2168 @findex gnus-browse-select-group
2169 Enter the current group (@code{gnus-browse-select-group}).
2170
2171 @item u
2172 @kindex u (Browse)
2173 @findex gnus-browse-unsubscribe-current-group
2174 Unsubscribe to the current group, or, as will be the case here,
2175 subscribe to it (@code{gnus-browse-unsubscribe-current-group}).
2176
2177 @item l
2178 @itemx q
2179 @kindex q (Browse)
2180 @kindex l (Browse)
2181 @findex gnus-browse-exit
2182 Exit browse mode (@code{gnus-browse-exit}).
2183
2184 @item ?
2185 @kindex ? (Browse)
2186 @findex gnus-browse-describe-briefly
2187 Describe browse mode briefly (well, there's not much to describe, is
2188 there) (@code{gnus-browse-describe-briefly}).
2189 @end table
2190
2191
2192 @node Exiting Gnus
2193 @section Exiting Gnus
2194 @cindex exiting Gnus
2195
2196 Yes, Gnus is ex(c)iting.
2197
2198 @table @kbd
2199 @item z
2200 @kindex z (Group)
2201 @findex gnus-group-suspend
2202 Suspend Gnus (@code{gnus-group-suspend}). This doesn't really exit Gnus,
2203 but it kills all buffers except the Group buffer. I'm not sure why this
2204 is a gain, but then who am I to judge?
2205
2206 @item q
2207 @kindex q (Group)
2208 @findex gnus-group-exit
2209 @c @icon{gnus-group-exit}
2210 Quit Gnus (@code{gnus-group-exit}).
2211
2212 @item Q
2213 @kindex Q (Group)
2214 @findex gnus-group-quit
2215 Quit Gnus without saving the @file{.newsrc} files (@code{gnus-group-quit}).
2216 The dribble file will be saved, though (@pxref{Auto Save}).
2217 @end table
2218
2219 @vindex gnus-exit-gnus-hook
2220 @vindex gnus-suspend-gnus-hook
2221 @code{gnus-suspend-gnus-hook} is called when you suspend Gnus and
2222 @code{gnus-exit-gnus-hook} is called when you quit Gnus, while
2223 @code{gnus-after-exiting-gnus-hook} is called as the final item when
2224 exiting Gnus.
2225
2226 @findex gnus-unload
2227 @cindex unloading
2228 If you wish to completely unload Gnus and all its adherents, you can use
2229 the @code{gnus-unload} command. This command is also very handy when
2230 trying to customize meta-variables.
2231
2232 Note:
2233
2234 @quotation
2235 Miss Lisa Cannifax, while sitting in English class, felt her feet go
2236 numbly heavy and herself fall into a hazy trance as the boy sitting
2237 behind her drew repeated lines with his pencil across the back of her
2238 plastic chair.
2239 @end quotation
2240
2241
2242 @node Group Topics
2243 @section Group Topics
2244 @cindex topics
2245
2246 If you read lots and lots of groups, it might be convenient to group
2247 them hierarchically according to topics. You put your Emacs groups over
2248 here, your sex groups over there, and the rest (what, two groups or so?)
2249 you put in some misc section that you never bother with anyway. You can
2250 even group the Emacs sex groups as a sub-topic to either the Emacs
2251 groups or the sex groups---or both! Go wild!
2252
2253 Here's an example:
2254
2255 @example
2256 Gnus
2257 Emacs -- I wuw it!
2258 3: comp.emacs
2259 2: alt.religion.emacs
2260 Naughty Emacs
2261 452: alt.sex.emacs
2262 0: comp.talk.emacs.recovery
2263 Misc
2264 8: comp.binaries.fractals
2265 13: comp.sources.unix
2266 @end example
2267
2268 @findex gnus-topic-mode
2269 @kindex t (Group)
2270 To get this @emph{fab} functionality you simply turn on (ooh!) the
2271 @code{gnus-topic} minor mode---type @kbd{t} in the group buffer. (This
2272 is a toggling command.)
2273
2274 Go ahead, just try it. I'll still be here when you get back. La de
2275 dum... Nice tune, that... la la la... What, you're back? Yes, and now
2276 press @kbd{l}. There. All your groups are now listed under
2277 @samp{misc}. Doesn't that make you feel all warm and fuzzy? Hot and
2278 bothered?
2279
2280 If you want this permanently enabled, you should add that minor mode to
2281 the hook for the group mode:
2282
2283 @lisp
2284 (add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
2285 @end lisp
2286
2287 @menu
2288 * Topic Variables:: How to customize the topics the Lisp Way.
2289 * Topic Commands:: Interactive E-Z commands.
2290 * Topic Sorting:: Sorting each topic individually.
2291 * Topic Topology:: A map of the world.
2292 * Topic Parameters:: Parameters that apply to all groups in a topic.
2293 @end menu
2294
2295
2296 @node Topic Variables
2297 @subsection Topic Variables
2298 @cindex topic variables
2299
2300 Now, if you select a topic, it will fold/unfold that topic, which is
2301 really neat, I think.
2302
2303 @vindex gnus-topic-line-format
2304 The topic lines themselves are created according to the
2305 @code{gnus-topic-line-format} variable (@pxref{Formatting Variables}).
2306 Valid elements are:
2307
2308 @table @samp
2309 @item i
2310 Indentation.
2311 @item n
2312 Topic name.
2313 @item v
2314 Visibility.
2315 @item l
2316 Level.
2317 @item g
2318 Number of groups in the topic.
2319 @item a
2320 Number of unread articles in the topic.
2321 @item A
2322 Number of unread articles in the topic and all its subtopics.
2323 @end table
2324
2325 @vindex gnus-topic-indent-level
2326 Each sub-topic (and the groups in the sub-topics) will be indented with
2327 @code{gnus-topic-indent-level} times the topic level number of spaces.
2328 The default is 2.
2329
2330 @vindex gnus-topic-mode-hook
2331 @code{gnus-topic-mode-hook} is called in topic minor mode buffers.
2332
2333 @vindex gnus-topic-display-empty-topics
2334 The @code{gnus-topic-display-empty-topics} says whether to display even
2335 topics that have no unread articles in them. The default is @code{t}.
2336
2337
2338 @node Topic Commands
2339 @subsection Topic Commands
2340 @cindex topic commands
2341
2342 When the topic minor mode is turned on, a new @kbd{T} submap will be
2343 available. In addition, a few of the standard keys change their
2344 definitions slightly.
2345
2346 @table @kbd
2347
2348 @item T n
2349 @kindex T n (Topic)
2350 @findex gnus-topic-create-topic
2351 Prompt for a new topic name and create it
2352 (@code{gnus-topic-create-topic}).
2353
2354 @item T m
2355 @kindex T m (Topic)
2356 @findex gnus-topic-move-group
2357 Move the current group to some other topic
2358 (@code{gnus-topic-move-group}). This command uses the process/prefix
2359 convention (@pxref{Process/Prefix}).
2360
2361 @item T c
2362 @kindex T c (Topic)
2363 @findex gnus-topic-copy-group
2364 Copy the current group to some other topic
2365 (@code{gnus-topic-copy-group}). This command uses the process/prefix
2366 convention (@pxref{Process/Prefix}).
2367
2368 @item T D
2369 @kindex T D (Topic)
2370 @findex gnus-topic-remove-group
2371 Remove a group from the current topic (@code{gnus-topic-remove-group}).
2372 This command is mainly useful if you have the same group in several
2373 topics and wish to remove it from one of the topics. You may also
2374 remove a group from all topics, but in that case, Gnus will add it to
2375 the root topic the next time you start Gnus. In fact, all new groups
2376 (which, naturally, don't belong to any topic) will show up in the root
2377 topic.
2378
2379 This command uses the process/prefix convention
2380 (@pxref{Process/Prefix}).
2381
2382 @item T M
2383 @kindex T M (Topic)
2384 @findex gnus-topic-move-matching
2385 Move all groups that match some regular expression to a topic
2386 (@code{gnus-topic-move-matching}).
2387
2388 @item T C
2389 @kindex T C (Topic)
2390 @findex gnus-topic-copy-matching
2391 Copy all groups that match some regular expression to a topic
2392 (@code{gnus-topic-copy-matching}).
2393
2394 @item T H
2395 @kindex T H (Topic)
2396 @findex gnus-topic-toggle-display-empty-topics
2397 Toggle hiding empty topics
2398 (@code{gnus-topic-toggle-display-empty-topics}).
2399
2400 @item T #
2401 @kindex T # (Topic)
2402 @findex gnus-topic-mark-topic
2403 Mark all groups in the current topic with the process mark
2404 (@code{gnus-topic-mark-topic}).
2405
2406 @item T M-#
2407 @kindex T M-# (Topic)
2408 @findex gnus-topic-unmark-topic
2409 Remove the process mark from all groups in the current topic
2410 (@code{gnus-topic-unmark-topic}).
2411
2412 @item RET
2413 @kindex RET (Topic)
2414 @findex gnus-topic-select-group
2415 @itemx SPACE
2416 Either select a group or fold a topic (@code{gnus-topic-select-group}).
2417 When you perform this command on a group, you'll enter the group, as
2418 usual. When done on a topic line, the topic will be folded (if it was
2419 visible) or unfolded (if it was folded already). So it's basically a
2420 toggling command on topics. In addition, if you give a numerical
2421 prefix, group on that level (and lower) will be displayed.
2422
2423 @item T TAB
2424 @itemx TAB
2425 @kindex T TAB (Topic)
2426 @kindex TAB (Topic)
2427 @findex gnus-topic-indent
2428 ``Indent'' the current topic so that it becomes a sub-topic of the
2429 previous topic (@code{gnus-topic-indent}). If given a prefix,
2430 ``un-indent'' the topic instead.
2431
2432 @item M-TAB
2433 @kindex M-TAB (Topic)
2434 @findex gnus-topic-unindent
2435 ``Un-indent'' the current topic so that it becomes a sub-topic of the
2436 parent of its current parent (@code{gnus-topic-unindent}).
2437
2438 @item C-k
2439 @kindex C-k (Topic)
2440 @findex gnus-topic-kill-group
2441 Kill a group or topic (@code{gnus-topic-kill-group}). All groups in the
2442 topic will be removed along with the topic.
2443
2444 @item C-y
2445 @kindex C-y (Topic)
2446 @findex gnus-topic-yank-group
2447 Yank the previously killed group or topic
2448 (@code{gnus-topic-yank-group}). Note that all topics will be yanked
2449 before all groups.
2450
2451 @item T r
2452 @kindex T r (Topic)
2453 @findex gnus-topic-rename
2454 Rename a topic (@code{gnus-topic-rename}).
2455
2456 @item T DEL
2457 @kindex T DEL (Topic)
2458 @findex gnus-topic-delete
2459 Delete an empty topic (@code{gnus-topic-delete}).
2460
2461 @item A T
2462 @kindex A T (Topic)
2463 @findex gnus-topic-list-active
2464 List all groups that Gnus knows about in a topics-ified way
2465 (@code{gnus-topic-list-active}).
2466
2467 @item G p
2468 @kindex G p (Topic)
2469 @findex gnus-topic-edit-parameters
2470 @cindex group parameters
2471 @cindex topic parameters
2472 @cindex parameters
2473 Edit the topic parameters (@code{gnus-topic-edit-parameters}).
2474 @xref{Topic Parameters}.
2475
2476 @end table
2477
2478
2479 @node Topic Sorting
2480 @subsection Topic Sorting
2481 @cindex topic sorting
2482
2483 You can sort the groups in each topic individually with the following
2484 commands:
2485
2486
2487 @table @kbd
2488 @item T S a
2489 @kindex T S a (Topic)
2490 @findex gnus-topic-sort-groups-by-alphabet
2491 Sort the current topic alphabetically by group name
2492 (@code{gnus-topic-sort-groups-by-alphabet}).
2493
2494 @item T S u
2495 @kindex T S u (Topic)
2496 @findex gnus-topic-sort-groups-by-unread
2497 Sort the current topic by the number of unread articles
2498 (@code{gnus-topic-sort-groups-by-unread}).
2499
2500 @item T S l
2501 @kindex T S l (Topic)
2502 @findex gnus-topic-sort-groups-by-level
2503 Sort the current topic by group level
2504 (@code{gnus-topic-sort-groups-by-level}).
2505
2506 @item T S v
2507 @kindex T S v (Topic)
2508 @findex gnus-topic-sort-groups-by-score
2509 Sort the current topic by group score
2510 (@code{gnus-topic-sort-groups-by-score}). @xref{Group Score}.
2511
2512 @item T S r
2513 @kindex T S r (Topic)
2514 @findex gnus-topic-sort-groups-by-rank
2515 Sort the current topic by group rank
2516 (@code{gnus-topic-sort-groups-by-rank}). @xref{Group Score}.
2517
2518 @item T S m
2519 @kindex T S m (Topic)
2520 @findex gnus-topic-sort-groups-by-method
2521 Sort the current topic alphabetically by backend name
2522 (@code{gnus-topic-sort-groups-by-method}).
2523
2524 @end table
2525
2526 @xref{Sorting Groups}, for more information about group sorting.
2527
2528
2529 @node Topic Topology
2530 @subsection Topic Topology
2531 @cindex topic topology
2532 @cindex topology
2533
2534 So, let's have a look at an example group buffer:
2535
2536 @example
2537 Gnus
2538 Emacs -- I wuw it!
2539 3: comp.emacs
2540 2: alt.religion.emacs
2541 Naughty Emacs
2542 452: alt.sex.emacs
2543 0: comp.talk.emacs.recovery
2544 Misc
2545 8: comp.binaries.fractals
2546 13: comp.sources.unix
2547 @end example
2548
2549 So, here we have one top-level topic (@samp{Gnus}), two topics under
2550 that, and one sub-topic under one of the sub-topics. (There is always
2551 just one (1) top-level topic). This topology can be expressed as
2552 follows:
2553
2554 @lisp
2555 (("Gnus" visible)
2556 (("Emacs -- I wuw it!" visible)
2557 (("Naughty Emacs" visible)))
2558 (("Misc" visible)))
2559 @end lisp
2560
2561 @vindex gnus-topic-topology
2562 This is in fact how the variable @code{gnus-topic-topology} would look
2563 for the display above. That variable is saved in the @file{.newsrc.eld}
2564 file, and shouldn't be messed with manually---unless you really want
2565 to. Since this variable is read from the @file{.newsrc.eld} file,
2566 setting it in any other startup files will have no effect.
2567
2568 This topology shows what topics are sub-topics of what topics (right),
2569 and which topics are visible. Two settings are currently
2570 allowed---@code{visible} and @code{invisible}.
2571
2572
2573 @node Topic Parameters
2574 @subsection Topic Parameters
2575 @cindex topic parameters
2576
2577 All groups in a topic will inherit group parameters from the parent (and
2578 ancestor) topic parameters. All valid group parameters are valid topic
2579 parameters (@pxref{Group Parameters}).
2580
2581 Group parameters (of course) override topic parameters, and topic
2582 parameters in sub-topics override topic parameters in super-topics. You
2583 know. Normal inheritance rules. (@dfn{Rules} is here a noun, not a
2584 verb, although you may feel free to disagree with me here.)
2585
2586 @example
2587 Gnus
2588 Emacs
2589 3: comp.emacs
2590 2: alt.religion.emacs
2591 452: alt.sex.emacs
2592 Relief
2593 452: alt.sex.emacs
2594 0: comp.talk.emacs.recovery
2595 Misc
2596 8: comp.binaries.fractals
2597 13: comp.sources.unix
2598 452: alt.sex.emacs
2599 @end example
2600
2601 The @samp{Emacs} topic has the topic parameter @code{(score-file
2602 . "emacs.SCORE")}; the @samp{Relief} topic has the topic parameter
2603 @code{(score-file . "relief.SCORE")}; and the @samp{Misc} topic has the
2604 topic parameter @code{(score-file . "emacs.SCORE")}. In addition,
2605 @* @samp{alt.religion.emacs} has the group parameter @code{(score-file
2606 . "religion.SCORE")}.
2607
2608 Now, when you enter @samp{alt.sex.emacs} in the @samp{Relief} topic, you
2609 will get the @file{relief.SCORE} home score file. If you enter the same
2610 group in the @samp{Emacs} topic, you'll get the @file{emacs.SCORE} home
2611 score file. If you enter the group @samp{alt.religion.emacs}, you'll
2612 get the @file{religion.SCORE} home score file.
2613
2614 This seems rather simple and self-evident, doesn't it? Well, yes. But
2615 there are some problems, especially with the @code{total-expiry}
2616 parameter. Say you have a mail group in two topics; one with
2617 @code{total-expiry} and one without. What happens when you do @kbd{M-x
2618 gnus-expire-all-expirable-groups}? Gnus has no way of telling which one
2619 of these topics you mean to expire articles from, so anything may
2620 happen. In fact, I hereby declare that it is @dfn{undefined} what
2621 happens. You just have to be careful if you do stuff like that.
2622
2623
2624 @node Misc Group Stuff
2625 @section Misc Group Stuff
2626
2627 @menu
2628 * Scanning New Messages:: Asking Gnus to see whether new messages have arrived.
2629 * Group Information:: Information and help on groups and Gnus.
2630 * Group Timestamp:: Making Gnus keep track of when you last read a group.
2631 * File Commands:: Reading and writing the Gnus files.
2632 @end menu
2633
2634 @table @kbd
2635
2636 @item ^
2637 @kindex ^ (Group)
2638 @findex gnus-group-enter-server-mode
2639 Enter the server buffer (@code{gnus-group-enter-server-mode}).
2640 @xref{The Server Buffer}.
2641
2642 @item a
2643 @kindex a (Group)
2644 @findex gnus-group-post-news
2645 Post an article to a group (@code{gnus-group-post-news}). If given a
2646 prefix, the current group name will be used as the default.
2647
2648 @item m
2649 @kindex m (Group)
2650 @findex gnus-group-mail
2651 Mail a message somewhere (@code{gnus-group-mail}).
2652
2653 @end table
2654
2655 Variables for the group buffer:
2656
2657 @table @code
2658
2659 @item gnus-group-mode-hook
2660 @vindex gnus-group-mode-hook
2661 is called after the group buffer has been
2662 created.
2663
2664 @item gnus-group-prepare-hook
2665 @vindex gnus-group-prepare-hook
2666 is called after the group buffer is
2667 generated. It may be used to modify the buffer in some strange,
2668 unnatural way.
2669
2670 @item gnus-group-prepared-hook
2671 @vindex gnus-group-prepare-hook
2672 is called as the very last thing after the group buffer has been
2673 generated. It may be used to move point around, for instance.
2674
2675 @item gnus-permanently-visible-groups
2676 @vindex gnus-permanently-visible-groups
2677 Groups matching this regexp will always be listed in the group buffer,
2678 whether they are empty or not.
2679
2680 @end table
2681
2682
2683 @node Scanning New Messages
2684 @subsection Scanning New Messages
2685 @cindex new messages
2686 @cindex scanning new news
2687
2688 @table @kbd
2689
2690 @item g
2691 @kindex g (Group)
2692 @findex gnus-group-get-new-news
2693 @c @icon{gnus-group-get-new-news}
2694 Check the server(s) for new articles. If the numerical prefix is used,
2695 this command will check only groups of level @var{arg} and lower
2696 (@code{gnus-group-get-new-news}). If given a non-numerical prefix, this
2697 command will force a total re-reading of the active file(s) from the
2698 backend(s).
2699
2700 @item M-g
2701 @kindex M-g (Group)
2702 @findex gnus-group-get-new-news-this-group
2703 @vindex gnus-goto-next-group-when-activating
2704 @c @icon{gnus-group-get-new-news-this-group}
2705 Check whether new articles have arrived in the current group
2706 (@code{gnus-group-get-new-news-this-group}).
2707 @code{gnus-goto-next-group-when-activating} says whether this command is
2708 to move point to the next group or not. It is @code{t} by default.
2709
2710 @findex gnus-activate-all-groups
2711 @cindex activating groups
2712 @item C-c M-g
2713 @kindex C-c M-g (Group)
2714 Activate absolutely all groups (@code{gnus-activate-all-groups}).
2715
2716 @item R
2717 @kindex R (Group)
2718 @cindex restarting
2719 @findex gnus-group-restart
2720 Restart Gnus (@code{gnus-group-restart}). This saves the @file{.newsrc}
2721 file(s), closes the connection to all servers, clears up all run-time
2722 Gnus variables, and then starts Gnus all over again.
2723
2724 @end table
2725
2726 @vindex gnus-get-new-news-hook
2727 @code{gnus-get-new-news-hook} is run just before checking for new news.
2728
2729 @vindex gnus-after-getting-new-news-hook
2730 @code{gnus-after-getting-new-news-hook} is run after checking for new
2731 news.
2732
2733
2734 @node Group Information
2735 @subsection Group Information
2736 @cindex group information
2737 @cindex information on groups
2738
2739 @table @kbd
2740
2741
2742 @item H f
2743 @kindex H f (Group)
2744 @findex gnus-group-fetch-faq
2745 @vindex gnus-group-faq-directory
2746 @cindex FAQ
2747 @cindex ange-ftp
2748 Try to fetch the FAQ for the current group
2749 (@code{gnus-group-fetch-faq}). Gnus will try to get the FAQ from
2750 @code{gnus-group-faq-directory}, which is usually a directory on a
2751 remote machine. This variable can also be a list of directories. In
2752 that case, giving a prefix to this command will allow you to choose
2753 between the various sites. @code{ange-ftp} (or @code{efs}) will be used
2754 for fetching the file.
2755
2756 If fetching from the first site is unsuccessful, Gnus will attempt to go
2757 through @code{gnus-group-faq-directory} and try to open them one by one.
2758
2759 @item H d
2760 @itemx C-c C-d
2761 @c @icon{gnus-group-describe-group}
2762 @kindex H d (Group)
2763 @kindex C-c C-d (Group)
2764 @cindex describing groups
2765 @cindex group description
2766 @findex gnus-group-describe-group
2767 Describe the current group (@code{gnus-group-describe-group}). If given
2768 a prefix, force Gnus to re-read the description from the server.
2769
2770 @item M-d
2771 @kindex M-d (Group)
2772 @findex gnus-group-describe-all-groups
2773 Describe all groups (@code{gnus-group-describe-all-groups}). If given a
2774 prefix, force Gnus to re-read the description file from the server.
2775
2776 @item H v
2777 @itemx V
2778 @kindex V (Group)
2779 @kindex H v (Group)
2780 @cindex version
2781 @findex gnus-version
2782 Display current Gnus version numbers (@code{gnus-version}).
2783
2784 @item ?
2785 @kindex ? (Group)
2786 @findex gnus-group-describe-briefly
2787 Give a very short help message (@code{gnus-group-describe-briefly}).
2788
2789 @item C-c C-i
2790 @kindex C-c C-i (Group)
2791 @cindex info
2792 @cindex manual
2793 @findex gnus-info-find-node
2794 Go to the Gnus info node (@code{gnus-info-find-node}).
2795 @end table
2796
2797
2798 @node Group Timestamp
2799 @subsection Group Timestamp
2800 @cindex timestamps
2801 @cindex group timestamps
2802
2803 It can be convenient to let Gnus keep track of when you last read a
2804 group. To set the ball rolling, you should add
2805 @code{gnus-group-set-timestamp} to @code{gnus-select-group-hook}:
2806
2807 @lisp
2808 (add-hook 'gnus-select-group-hook 'gnus-group-set-timestamp)
2809 @end lisp
2810
2811 After doing this, each time you enter a group, it'll be recorded.
2812
2813 This information can be displayed in various ways---the easiest is to
2814 use the @samp{%d} spec in the group line format:
2815
2816 @lisp
2817 (setq gnus-group-line-format
2818 "%M\%S\%p\%P\%5y: %(%-40,40g%) %d\n")
2819 @end lisp
2820
2821 This will result in lines looking like:
2822
2823 @example
2824 * 0: mail.ding 19961002T012943
2825 0: custom 19961002T012713
2826 @end example
2827
2828 As you can see, the date is displayed in compact ISO 8601 format. This
2829 may be a bit too much, so to just display the date, you could say
2830 something like:
2831
2832 @lisp
2833 (setq gnus-group-line-format
2834 "%M\%S\%p\%P\%5y: %(%-40,40g%) %6,6~(cut 2)d\n")
2835 @end lisp
2836
2837
2838 @node File Commands
2839 @subsection File Commands
2840 @cindex file commands
2841
2842 @table @kbd
2843
2844 @item r
2845 @kindex r (Group)
2846 @findex gnus-group-read-init-file
2847 @vindex gnus-init-file
2848 @cindex reading init file
2849 Re-read the init file (@code{gnus-init-file}, which defaults to
2850 @file{~/.gnus}) (@code{gnus-group-read-init-file}).
2851
2852 @item s
2853 @kindex s (Group)
2854 @findex gnus-group-save-newsrc
2855 @cindex saving .newsrc
2856 Save the @file{.newsrc.eld} file (and @file{.newsrc} if wanted)
2857 (@code{gnus-group-save-newsrc}). If given a prefix, force saving the
2858 file(s) whether Gnus thinks it is necessary or not.
2859
2860 @c @item Z
2861 @c @kindex Z (Group)
2862 @c @findex gnus-group-clear-dribble
2863 @c Clear the dribble buffer (@code{gnus-group-clear-dribble}).
2864
2865 @end table
2866
2867
2868 @node The Summary Buffer
2869 @chapter The Summary Buffer
2870 @cindex summary buffer
2871
2872 A line for each article is displayed in the summary buffer. You can
2873 move around, read articles, post articles and reply to articles.
2874
2875 The most common way to a summary buffer is to select a group from the
2876 group buffer (@pxref{Selecting a Group}).
2877
2878 You can have as many summary buffers open as you wish.
2879
2880 @menu
2881 * Summary Buffer Format:: Deciding how the summary buffer is to look.
2882 * Summary Maneuvering:: Moving around the summary buffer.
2883 * Choosing Articles:: Reading articles.
2884 * Paging the Article:: Scrolling the current article.
2885 * Reply Followup and Post:: Posting articles.
2886 * Canceling and Superseding:: ``Whoops, I shouldn't have called him that.''
2887 * Marking Articles:: Marking articles as read, expirable, etc.
2888 * Limiting:: You can limit the summary buffer.
2889 * Threading:: How threads are made.
2890 * Sorting:: How articles and threads are sorted.
2891 * Asynchronous Fetching:: Gnus might be able to pre-fetch articles.
2892 * Article Caching:: You may store articles in a cache.
2893 * Persistent Articles:: Making articles expiry-resistant.
2894 * Article Backlog:: Having already read articles hang around.
2895 * Saving Articles:: Ways of customizing article saving.
2896 * Decoding Articles:: Gnus can treat series of (uu)encoded articles.
2897 * Article Treatment:: The article buffer can be mangled at will.
2898 * Article Commands:: Doing various things with the article buffer.
2899 * Summary Sorting:: Sorting the summary buffer in various ways.
2900 * Finding the Parent:: No child support? Get the parent.
2901 * Alternative Approaches:: Reading using non-default summaries.
2902 * Tree Display:: A more visual display of threads.
2903 * Mail Group Commands:: Some commands can only be used in mail groups.
2904 * Various Summary Stuff:: What didn't fit anywhere else.
2905 * Exiting the Summary Buffer:: Returning to the Group buffer.
2906 * Crosspost Handling:: How crossposted articles are dealt with.
2907 * Duplicate Suppression:: An alternative when crosspost handling fails.
2908 @end menu
2909
2910
2911 @node Summary Buffer Format
2912 @section Summary Buffer Format
2913 @cindex summary buffer format
2914
2915 @menu
2916 * Summary Buffer Lines:: You can specify how summary lines should look.
2917 * Summary Buffer Mode Line:: You can say how the mode line should look.
2918 * Summary Highlighting:: Making the summary buffer all pretty and nice.
2919 @end menu
2920
2921 @findex mail-extract-address-components
2922 @findex gnus-extract-address-components
2923 @vindex gnus-extract-address-components
2924 Gnus will use the value of the @code{gnus-extract-address-components}
2925 variable as a function for getting the name and address parts of a
2926 @code{From} header. Two pre-defined functions exist:
2927 @code{gnus-extract-address-components}, which is the default, quite
2928 fast, and too simplistic solution; and
2929 @code{mail-extract-address-components}, which works very nicely, but is
2930 slower. The default function will return the wrong answer in 5% of the
2931 cases. If this is unacceptable to you, use the other function instead.
2932
2933 @vindex gnus-summary-same-subject
2934 @code{gnus-summary-same-subject} is a string indicating that the current
2935 article has the same subject as the previous. This string will be used
2936 with those specs that require it. The default is @code{""}.
2937
2938
2939 @node Summary Buffer Lines
2940 @subsection Summary Buffer Lines
2941
2942 @vindex gnus-summary-line-format
2943 You can change the format of the lines in the summary buffer by changing
2944 the @code{gnus-summary-line-format} variable. It works along the same
2945 lines as a normal @code{format} string, with some extensions
2946 (@pxref{Formatting Variables}).
2947
2948 The default string is @samp{%U%R%z%I%(%[%4L: %-20,20n%]%) %s\n}.
2949
2950 The following format specification characters are understood:
2951
2952 @table @samp
2953 @item N
2954 Article number.
2955 @item S
2956 Subject string.
2957 @item s
2958 Subject if the article is the root of the thread or the previous article
2959 had a different subject, @code{gnus-summary-same-subject} otherwise.
2960 (@code{gnus-summary-same-subject} defaults to @code{""}.)
2961 @item F
2962 Full @code{From} header.
2963 @item n
2964 The name (from the @code{From} header).
2965 @item a
2966 The name (from the @code{From} header). This differs from the @code{n}
2967 spec in that it uses the function designated by the
2968 @code{gnus-extract-address-components} variable, which is slower, but
2969 may be more thorough.
2970 @item A
2971 The address (from the @code{From} header). This works the same way as
2972 the @code{a} spec.
2973 @item L
2974 Number of lines in the article.
2975 @item c
2976 Number of characters in the article.
2977 @item I
2978 Indentation based on thread level (@pxref{Customizing Threading}).
2979 @item T
2980 Nothing if the article is a root and lots of spaces if it isn't (it
2981 pushes everything after it off the screen).
2982 @item [
2983 Opening bracket, which is normally @samp{[}, but can also be @samp{<}
2984 for adopted articles (@pxref{Customizing Threading}).
2985 @item ]
2986 Closing bracket, which is normally @samp{]}, but can also be @samp{>}
2987 for adopted articles.
2988 @item >
2989 One space for each thread level.
2990 @item <
2991 Twenty minus thread level spaces.
2992 @item U
2993 Unread.
2994
2995 @item R
2996 This misleadingly named specifier is the @dfn{secondary mark}. This
2997 mark will say whether the article has been replied to, has been cached,
2998 or has been saved.
2999
3000 @item i
3001 Score as a number (@pxref{Scoring}).
3002 @item z
3003 @vindex gnus-summary-zcore-fuzz
3004 Zcore, @samp{+} if above the default level and @samp{-} if below the
3005 default level. If the difference between
3006 @code{gnus-summary-default-score} and the score is less than
3007 @code{gnus-summary-zcore-fuzz}, this spec will not be used.
3008 @item V
3009 Total thread score.
3010 @item x
3011 @code{Xref}.
3012 @item D
3013 @code{Date}.
3014 @item d
3015 The @code{Date} in @code{DD-MMM} format.
3016 @item o
3017 The @code{Date} in @var{YYYYMMDD}@code{T}@var{HHMMSS} format.
3018 @item M
3019 @code{Message-ID}.
3020 @item r
3021 @code{References}.
3022 @item t
3023 Number of articles in the current sub-thread. Using this spec will slow
3024 down summary buffer generation somewhat.
3025 @item e
3026 An @samp{=} (@code{gnus-not-empty-thread-mark}) will be displayed if the
3027 article has any children.
3028 @item P
3029 The line number.
3030 @item O
3031 Download mark.
3032 @item u
3033 User defined specifier. The next character in the format string should
3034 be a letter. Gnus will call the function
3035 @code{gnus-user-format-function-}@samp{X}, where @samp{X} is the letter
3036 following @samp{%u}. The function will be passed the current header as
3037 argument. The function should return a string, which will be inserted
3038 into the summary just like information from any other summary specifier.
3039 @end table
3040
3041 The @samp{%U} (status), @samp{%R} (replied) and @samp{%z} (zcore) specs
3042 have to be handled with care. For reasons of efficiency, Gnus will
3043 compute what column these characters will end up in, and ``hard-code''
3044 that. This means that it is invalid to have these specs after a
3045 variable-length spec. Well, you might not be arrested, but your summary
3046 buffer will look strange, which is bad enough.
3047
3048 The smart choice is to have these specs as far to the left as possible.
3049 (Isn't that the case with everything, though? But I digress.)
3050
3051 This restriction may disappear in later versions of Gnus.
3052
3053
3054 @node Summary Buffer Mode Line
3055 @subsection Summary Buffer Mode Line
3056
3057 @vindex gnus-summary-mode-line-format
3058 You can also change the format of the summary mode bar (@pxref{Mode Line
3059 Formatting}). Set @code{gnus-summary-mode-line-format} to whatever you
3060 like. The default is @samp{Gnus: %%b [%A] %Z}.
3061
3062 Here are the elements you can play with:
3063
3064 @table @samp
3065 @item G
3066 Group name.
3067 @item p
3068 Unprefixed group name.
3069 @item A
3070 Current article number.
3071 @item z
3072 Current article score.
3073 @item V
3074 Gnus version.
3075 @item U
3076 Number of unread articles in this group.
3077 @item e
3078 Number of unread articles in this group that aren't displayed in the
3079 summary buffer.
3080 @item Z
3081 A string with the number of unread and unselected articles represented
3082 either as @samp{<%U(+%e) more>} if there are both unread and unselected
3083 articles, and just as @samp{<%U more>} if there are just unread articles
3084 and no unselected ones.
3085 @item g
3086 Shortish group name. For instance, @samp{rec.arts.anime} will be
3087 shortened to @samp{r.a.anime}.
3088 @item S
3089 Subject of the current article.
3090 @item u
3091 User-defined spec (@pxref{User-Defined Specs}).
3092 @item s
3093 Name of the current score file (@pxref{Scoring}).
3094 @item d
3095 Number of dormant articles (@pxref{Unread Articles}).
3096 @item t
3097 Number of ticked articles (@pxref{Unread Articles}).
3098 @item r
3099 Number of articles that have been marked as read in this session.
3100 @item E
3101 Number of articles expunged by the score files.
3102 @end table
3103
3104
3105 @node Summary Highlighting
3106 @subsection Summary Highlighting
3107
3108 @table @code
3109
3110 @item gnus-visual-mark-article-hook
3111 @vindex gnus-visual-mark-article-hook
3112 This hook is run after selecting an article. It is meant to be used for
3113 highlighting the article in some way. It is not run if
3114 @code{gnus-visual} is @code{nil}.
3115
3116 @item gnus-summary-update-hook
3117 @vindex gnus-summary-update-hook
3118 This hook is called when a summary line is changed. It is not run if
3119 @code{gnus-visual} is @code{nil}.
3120
3121 @item gnus-summary-selected-face
3122 @vindex gnus-summary-selected-face
3123 This is the face (or @dfn{font} as some people call it) used to
3124 highlight the current article in the summary buffer.
3125
3126 @item gnus-summary-highlight
3127 @vindex gnus-summary-highlight
3128 Summary lines are highlighted according to this variable, which is a
3129 list where the elements are of the format @var{(FORM . FACE)}. If you
3130 would, for instance, like ticked articles to be italic and high-scored
3131 articles to be bold, you could set this variable to something like
3132 @lisp
3133 (((eq mark gnus-ticked-mark) . italic)
3134 ((> score default) . bold))
3135 @end lisp
3136 As you may have guessed, if @var{FORM} returns a non-@code{nil} value,
3137 @var{FACE} will be applied to the line.
3138 @end table
3139
3140
3141 @node Summary Maneuvering
3142 @section Summary Maneuvering
3143 @cindex summary movement
3144
3145 All the straight movement commands understand the numeric prefix and
3146 behave pretty much as you'd expect.
3147
3148 None of these commands select articles.
3149
3150 @table @kbd
3151 @item G M-n
3152 @itemx M-n
3153 @kindex M-n (Summary)
3154 @kindex G M-n (Summary)
3155 @findex gnus-summary-next-unread-subject
3156 Go to the next summary line of an unread article
3157 (@code{gnus-summary-next-unread-subject}).
3158
3159 @item G M-p
3160 @itemx M-p
3161 @kindex M-p (Summary)
3162 @kindex G M-p (Summary)
3163 @findex gnus-summary-prev-unread-subject
3164 Go to the previous summary line of an unread article
3165 (@code{gnus-summary-prev-unread-subject}).
3166
3167 @item G j
3168 @itemx j
3169 @kindex j (Summary)
3170 @kindex G j (Summary)
3171 @findex gnus-summary-goto-article
3172 Ask for an article number or @code{Message-ID}, and then go to that
3173 article (@code{gnus-summary-goto-article}).
3174
3175 @item G g
3176 @kindex G g (Summary)
3177 @findex gnus-summary-goto-subject
3178 Ask for an article number and then go to the summary line of that article
3179 without displaying the article (@code{gnus-summary-goto-subject}).
3180 @end table
3181
3182 If Gnus asks you to press a key to confirm going to the next group, you
3183 can use the @kbd{C-n} and @kbd{C-p} keys to move around the group
3184 buffer, searching for the next group to read without actually returning
3185 to the group buffer.
3186
3187 Variables related to summary movement:
3188
3189 @table @code
3190
3191 @vindex gnus-auto-select-next
3192 @item gnus-auto-select-next
3193 If you issue one of the movement commands (like @kbd{n}) and there are
3194 no more unread articles after the current one, Gnus will offer to go to
3195 the next group. If this variable is @code{t} and the next group is
3196 empty, Gnus will exit summary mode and return to the group buffer. If
3197 this variable is neither @code{t} nor @code{nil}, Gnus will select the
3198 next group, no matter whether it has any unread articles or not. As a
3199 special case, if this variable is @code{quietly}, Gnus will select the
3200 next group without asking for confirmation. If this variable is
3201 @code{almost-quietly}, the same will happen only if you are located on
3202 the last article in the group. Finally, if this variable is
3203 @code{slightly-quietly}, the @kbd{Z n} command will go to the next group
3204 without confirmation. Also @pxref{Group Levels}.
3205
3206 @item gnus-auto-select-same
3207 @vindex gnus-auto-select-same
3208 If non-@code{nil}, all the movement commands will try to go to the next
3209 article with the same subject as the current. (@dfn{Same} here might
3210 mean @dfn{roughly equal}. See @code{gnus-summary-gather-subject-limit}
3211 for details (@pxref{Customizing Threading}).) If there are no more
3212 articles with the same subject, go to the first unread article.
3213
3214 This variable is not particularly useful if you use a threaded display.
3215
3216 @item gnus-summary-check-current
3217 @vindex gnus-summary-check-current
3218 If non-@code{nil}, all the ``unread'' movement commands will not proceed
3219 to the next (or previous) article if the current article is unread.
3220 Instead, they will choose the current article.
3221
3222 @item gnus-auto-center-summary
3223 @vindex gnus-auto-center-summary
3224 If non-@code{nil}, Gnus will keep the point in the summary buffer
3225 centered at all times. This makes things quite tidy, but if you have a
3226 slow network connection, or simply do not like this un-Emacsism, you can
3227 set this variable to @code{nil} to get the normal Emacs scrolling
3228 action. This will also inhibit horizontal re-centering of the summary
3229 buffer, which might make it more inconvenient to read extremely long
3230 threads.
3231
3232 @end table
3233
3234
3235 @node Choosing Articles
3236 @section Choosing Articles
3237 @cindex selecting articles
3238
3239 @menu
3240 * Choosing Commands:: Commands for choosing articles.
3241 * Choosing Variables:: Variables that influence these commands.
3242 @end menu
3243
3244
3245 @node Choosing Commands
3246 @subsection Choosing Commands
3247
3248 None of the following movement commands understand the numeric prefix,
3249 and they all select and display an article.
3250
3251 @table @kbd
3252 @item SPACE
3253 @kindex SPACE (Summary)
3254 @findex gnus-summary-next-page
3255 Select the current article, or, if that one's read already, the next
3256 unread article (@code{gnus-summary-next-page}).
3257
3258 @item G n
3259 @itemx n
3260 @kindex n (Summary)
3261 @kindex G n (Summary)
3262 @findex gnus-summary-next-unread-article
3263 @c @icon{gnus-summary-next-unread}
3264 Go to next unread article (@code{gnus-summary-next-unread-article}).
3265
3266 @item G p
3267 @itemx p
3268 @kindex p (Summary)
3269 @findex gnus-summary-prev-unread-article
3270 @c @icon{gnus-summary-prev-unread}
3271 Go to previous unread article (@code{gnus-summary-prev-unread-article}).
3272
3273 @item G N
3274 @itemx N
3275 @kindex N (Summary)
3276 @kindex G N (Summary)
3277 @findex gnus-summary-next-article
3278 Go to the next article (@code{gnus-summary-next-article}).
3279
3280 @item G P
3281 @itemx P
3282 @kindex P (Summary)
3283 @kindex G P (Summary)
3284 @findex gnus-summary-prev-article
3285 Go to the previous article (@code{gnus-summary-prev-article}).
3286
3287 @item G C-n
3288 @kindex G C-n (Summary)
3289 @findex gnus-summary-next-same-subject
3290 Go to the next article with the same subject
3291 (@code{gnus-summary-next-same-subject}).
3292
3293 @item G C-p
3294 @kindex G C-p (Summary)
3295 @findex gnus-summary-prev-same-subject
3296 Go to the previous article with the same subject
3297 (@code{gnus-summary-prev-same-subject}).
3298
3299 @item G f
3300 @itemx .
3301 @kindex G f (Summary)
3302 @kindex . (Summary)
3303 @findex gnus-summary-first-unread-article
3304 Go to the first unread article
3305 (@code{gnus-summary-first-unread-article}).
3306
3307 @item G b
3308 @itemx ,
3309 @kindex G b (Summary)
3310 @kindex , (Summary)
3311 @findex gnus-summary-best-unread-article
3312 Go to the article with the highest score
3313 (@code{gnus-summary-best-unread-article}).
3314
3315 @item G l
3316 @itemx l
3317 @kindex l (Summary)
3318 @kindex G l (Summary)
3319 @findex gnus-summary-goto-last-article
3320 Go to the previous article read (@code{gnus-summary-goto-last-article}).
3321
3322 @item G o
3323 @kindex G o (Summary)
3324 @findex gnus-summary-pop-article
3325 @cindex history
3326 @cindex article history
3327 Pop an article off the summary history and go to this article
3328 (@code{gnus-summary-pop-article}). This command differs from the
3329 command above in that you can pop as many previous articles off the
3330 history as you like, while @kbd{l} toggles the two last read articles.
3331 For a somewhat related issue (if you use these commands a lot),
3332 @pxref{Article Backlog}.
3333 @end table
3334
3335
3336 @node Choosing Variables
3337 @subsection Choosing Variables
3338
3339 Some variables relevant for moving and selecting articles:
3340
3341 @table @code
3342 @item gnus-auto-extend-newsgroup
3343 @vindex gnus-auto-extend-newsgroup
3344 All the movement commands will try to go to the previous (or next)
3345 article, even if that article isn't displayed in the Summary buffer if
3346 this variable is non-@code{nil}. Gnus will then fetch the article from
3347 the server and display it in the article buffer.
3348
3349 @item gnus-select-article-hook
3350 @vindex gnus-select-article-hook
3351 This hook is called whenever an article is selected. By default it
3352 exposes any threads hidden under the selected article.
3353
3354 @item gnus-mark-article-hook
3355 @vindex gnus-mark-article-hook
3356 @findex gnus-summary-mark-unread-as-read
3357 @findex gnus-summary-mark-read-and-unread-as-read
3358 @findex gnus-unread-mark
3359 This hook is called whenever an article is selected. It is intended to
3360 be used for marking articles as read. The default value is
3361 @code{gnus-summary-mark-read-and-unread-as-read}, and will change the
3362 mark of almost any article you read to @code{gnus-unread-mark}. The
3363 only articles not affected by this function are ticked, dormant, and
3364 expirable articles. If you'd instead like to just have unread articles
3365 marked as read, you can use @code{gnus-summary-mark-unread-as-read}
3366 instead. It will leave marks like @code{gnus-low-score-mark},
3367 @code{gnus-del-mark} (and so on) alone.
3368
3369 @end table
3370
3371
3372 @node Paging the Article
3373 @section Scrolling the Article
3374 @cindex article scrolling
3375
3376 @table @kbd
3377
3378 @item SPACE
3379 @kindex SPACE (Summary)
3380 @findex gnus-summary-next-page
3381 Pressing @kbd{SPACE} will scroll the current article forward one page,
3382 or, if you have come to the end of the current article, will choose the
3383 next article (@code{gnus-summary-next-page}).
3384
3385 @item DEL
3386 @kindex DEL (Summary)
3387 @findex gnus-summary-prev-page
3388 Scroll the current article back one page (@code{gnus-summary-prev-page}).
3389
3390 @item RET
3391 @kindex RET (Summary)
3392 @findex gnus-summary-scroll-up
3393 Scroll the current article one line forward
3394 (@code{gnus-summary-scroll-up}).
3395
3396 @item M-RET
3397 @kindex M-RET (Summary)
3398 @findex gnus-summary-scroll-down
3399 Scroll the current article one line backward
3400 (@code{gnus-summary-scroll-down}).
3401
3402 @item A g
3403 @itemx g
3404 @kindex A g (Summary)
3405 @kindex g (Summary)
3406 @findex gnus-summary-show-article
3407 (Re)fetch the current article (@code{gnus-summary-show-article}). If
3408 given a prefix, fetch the current article, but don't run any of the
3409 article treatment functions. This will give you a ``raw'' article, just
3410 the way it came from the server.
3411
3412 @item A <
3413 @itemx <
3414 @kindex < (Summary)
3415 @kindex A < (Summary)
3416 @findex gnus-summary-beginning-of-article
3417 Scroll to the beginning of the article
3418 (@code{gnus-summary-beginning-of-article}).
3419
3420 @item A >
3421 @itemx >
3422 @kindex > (Summary)
3423 @kindex A > (Summary)
3424 @findex gnus-summary-end-of-article
3425 Scroll to the end of the article (@code{gnus-summary-end-of-article}).
3426
3427 @item A s
3428 @itemx s
3429 @kindex A s (Summary)
3430 @kindex s (Summary)
3431 @findex gnus-summary-isearch-article
3432 Perform an isearch in the article buffer
3433 (@code{gnus-summary-isearch-article}).
3434
3435 @item h
3436 @kindex h (Summary)
3437 @findex gnus-summary-select-article-buffer
3438 Select the article buffer (@code{gnus-summary-select-article-buffer}).
3439
3440 @end table
3441
3442
3443 @node Reply Followup and Post
3444 @section Reply, Followup and Post
3445
3446 @menu
3447 * Summary Mail Commands:: Sending mail.
3448 * Summary Post Commands:: Sending news.
3449 @end menu
3450
3451
3452 @node Summary Mail Commands
3453 @subsection Summary Mail Commands
3454 @cindex mail
3455 @cindex composing mail
3456
3457 Commands for composing a mail message:
3458
3459 @table @kbd
3460
3461 @item S r
3462 @itemx r
3463 @kindex S r (Summary)
3464 @kindex r (Summary)
3465 @findex gnus-summary-reply
3466 @c @icon{gnus-summary-mail-reply}
3467 @c @icon{gnus-summary-reply}
3468 Mail a reply to the author of the current article
3469 (@code{gnus-summary-reply}).
3470
3471 @item S R
3472 @itemx R
3473 @kindex R (Summary)
3474 @kindex S R (Summary)
3475 @findex gnus-summary-reply-with-original
3476 @c @icon{gnus-summary-reply-with-original}
3477 Mail a reply to the author of the current article and include the
3478 original message (@code{gnus-summary-reply-with-original}). This
3479 command uses the process/prefix convention.
3480
3481 @item S w
3482 @kindex S w (Summary)
3483 @findex gnus-summary-wide-reply
3484 Mail a wide reply to the author of the current article
3485 (@code{gnus-summary-wide-reply}). A @dfn{wide reply} is a reply that
3486 goes out to all people listed in the @code{To}, @code{From} (or
3487 @code{Reply-to}) and @code{Cc} headers.
3488
3489 @item S W
3490 @kindex S W (Summary)
3491 @findex gnus-summary-wide-reply-with-original
3492 Mail a wide reply to the current article and include the original
3493 message (@code{gnus-summary-reply-with-original}). This command uses
3494 the process/prefix convention.
3495
3496 @item S o m
3497 @kindex S o m (Summary)
3498 @findex gnus-summary-mail-forward
3499 @c @icon{gnus-summary-mail-forward}
3500 Forward the current article to some other person
3501 (@code{gnus-summary-mail-forward}). If given a prefix, include the full
3502 headers of the forwarded article.
3503
3504 @item S m
3505 @itemx m
3506 @kindex m (Summary)
3507 @kindex S m (Summary)
3508 @findex gnus-summary-mail-other-window
3509 @c @icon{gnus-summary-mail-originate}
3510 Send a mail to some other person
3511 (@code{gnus-summary-mail-other-window}).
3512
3513 @item S D b
3514 @kindex S D b (Summary)
3515 @findex gnus-summary-resend-bounced-mail
3516 @cindex bouncing mail
3517 If you have sent a mail, but the mail was bounced back to you for some
3518 reason (wrong address, transient failure), you can use this command to
3519 resend that bounced mail (@code{gnus-summary-resend-bounced-mail}). You
3520 will be popped into a mail buffer where you can edit the headers before
3521 sending the mail off again. If you give a prefix to this command, and
3522 the bounced mail is a reply to some other mail, Gnus will try to fetch
3523 that mail and display it for easy perusal of its headers. This might
3524 very well fail, though.
3525
3526 @item S D r
3527 @kindex S D r (Summary)
3528 @findex gnus-summary-resend-message
3529 Not to be confused with the previous command,
3530 @code{gnus-summary-resend-message} will prompt you for an address to
3531 send the current message off to, and then send it to that place. The
3532 headers of the message won't be altered---but lots of headers that say
3533 @code{Resent-To}, @code{Resent-From} and so on will be added. This
3534 means that you actually send a mail to someone that has a @code{To}
3535 header that (probably) points to yourself. This will confuse people.
3536 So, natcherly you'll only do that if you're really eVIl.
3537
3538 This command is mainly used if you have several accounts and want to
3539 ship a mail to a different account of yours. (If you're both
3540 @code{root} and @code{postmaster} and get a mail for @code{postmaster}
3541 to the @code{root} account, you may want to resend it to
3542 @code{postmaster}. Ordnung muß sein!
3543
3544 This command understands the process/prefix convention
3545 (@pxref{Process/Prefix}).
3546
3547 @item S O m
3548 @kindex S O m (Summary)
3549 @findex gnus-uu-digest-mail-forward
3550 Digest the current series (@pxref{Decoding Articles}) and forward the
3551 result using mail (@code{gnus-uu-digest-mail-forward}). This command
3552 uses the process/prefix convention (@pxref{Process/Prefix}).
3553
3554 @item S M-c
3555 @kindex S M-c (Summary)
3556 @findex gnus-summary-mail-crosspost-complaint
3557 @cindex crossposting
3558 @cindex excessive crossposting
3559 Send a complaint about excessive crossposting to the author of the
3560 current article (@code{gnus-summary-mail-crosspost-complaint}).
3561
3562 @findex gnus-crosspost-complaint
3563 This command is provided as a way to fight back against the current
3564 crossposting pandemic that's sweeping Usenet. It will compose a reply
3565 using the @code{gnus-crosspost-complaint} variable as a preamble. This
3566 command understands the process/prefix convention
3567 (@pxref{Process/Prefix}) and will prompt you before sending each mail.
3568
3569 @end table
3570
3571 Also @pxref{(message)Header Commands} for more information.
3572
3573
3574 @node Summary Post Commands
3575 @subsection Summary Post Commands
3576 @cindex post
3577 @cindex composing news
3578
3579 Commands for posting a news article:
3580
3581 @table @kbd
3582 @item S p
3583 @itemx a
3584 @kindex a (Summary)
3585 @kindex S p (Summary)
3586 @findex gnus-summary-post-news
3587 @c @icon{gnus-summary-post-news}
3588 Post an article to the current group
3589 (@code{gnus-summary-post-news}).
3590
3591 @item S f
3592 @itemx f
3593 @kindex f (Summary)
3594 @kindex S f (Summary)
3595 @findex gnus-summary-followup
3596 @c @icon{gnus-summary-followup}
3597 Post a followup to the current article (@code{gnus-summary-followup}).
3598
3599 @item S F
3600 @itemx F
3601 @kindex S F (Summary)
3602 @kindex F (Summary)
3603 @c @icon{gnus-summary-followup-with-original}
3604 @findex gnus-summary-followup-with-original
3605 Post a followup to the current article and include the original message
3606 (@code{gnus-summary-followup-with-original}). This command uses the
3607 process/prefix convention.
3608
3609 @item S n
3610 @kindex S n (Summary)
3611 @findex gnus-summary-followup-to-mail
3612 Post a followup to the current article via news, even if you got the
3613 message through mail (@code{gnus-summary-followup-to-mail}).
3614
3615 @item S N
3616 @kindex S N (Summary)
3617 @findex gnus-summary-followup-to-mail-with-original
3618 Post a followup to the current article via news, even if you got the
3619 message through mail and include the original message
3620 (@code{gnus-summary-followup-to-mail-with-original}). This command uses
3621 the process/prefix convention.
3622
3623 @item S o p
3624 @kindex S o p (Summary)
3625 @findex gnus-summary-post-forward
3626 Forward the current article to a newsgroup
3627 (@code{gnus-summary-post-forward}). If given a prefix, include the full
3628 headers of the forwarded article.
3629
3630 @item S O p
3631 @kindex S O p (Summary)
3632 @findex gnus-uu-digest-post-forward
3633 @cindex digests
3634 @cindex making digests
3635 Digest the current series and forward the result to a newsgroup
3636 (@code{gnus-uu-digest-mail-forward}). This command uses the
3637 process/prefix convention.
3638
3639 @item S u
3640 @kindex S u (Summary)
3641 @findex gnus-uu-post-news
3642 @c @icon{gnus-uu-post-news}
3643 Uuencode a file, split it into parts, and post it as a series
3644 (@code{gnus-uu-post-news}). (@pxref{Uuencoding and Posting}).
3645 @end table
3646
3647 Also @pxref{(message)Header Commands} for more information.
3648
3649
3650 @node Canceling and Superseding
3651 @section Canceling Articles
3652 @cindex canceling articles
3653 @cindex superseding articles
3654
3655 Have you ever written something, and then decided that you really,
3656 really, really wish you hadn't posted that?
3657
3658 Well, you can't cancel mail, but you can cancel posts.
3659
3660 @findex gnus-summary-cancel-article
3661 @kindex C (Summary)
3662 @c @icon{gnus-summary-cancel-article}
3663 Find the article you wish to cancel (you can only cancel your own
3664 articles, so don't try any funny stuff). Then press @kbd{C} or @kbd{S
3665 c} (@code{gnus-summary-cancel-article}). Your article will be
3666 canceled---machines all over the world will be deleting your article.
3667 This command uses the process/prefix convention (@pxref{Process/Prefix}).
3668
3669 Be aware, however, that not all sites honor cancels, so your article may
3670 live on here and there, while most sites will delete the article in
3671 question.
3672
3673 Gnus will use the ``current'' select method when canceling. If you
3674 want to use the standard posting method, use the @samp{a} symbolic
3675 prefix (@pxref{Symbolic Prefixes}).
3676
3677 If you discover that you have made some mistakes and want to do some
3678 corrections, you can post a @dfn{superseding} article that will replace
3679 your original article.
3680
3681 @findex gnus-summary-supersede-article
3682 @kindex S (Summary)
3683 Go to the original article and press @kbd{S s}
3684 (@code{gnus-summary-supersede-article}). You will be put in a buffer
3685 where you can edit the article all you want before sending it off the
3686 usual way.
3687
3688 The same goes for superseding as for canceling, only more so: Some
3689 sites do not honor superseding. On those sites, it will appear that you
3690 have posted almost the same article twice.
3691
3692 If you have just posted the article, and change your mind right away,
3693 there is a trick you can use to cancel/supersede the article without
3694 waiting for the article to appear on your site first. You simply return
3695 to the post buffer (which is called @code{*sent ...*}). There you will
3696 find the article you just posted, with all the headers intact. Change
3697 the @code{Message-ID} header to a @code{Cancel} or @code{Supersedes}
3698 header by substituting one of those words for the word
3699 @code{Message-ID}. Then just press @kbd{C-c C-c} to send the article as
3700 you would do normally. The previous article will be
3701 canceled/superseded.
3702
3703 Just remember, kids: There is no 'c' in 'supersede'.
3704
3705
3706 @node Marking Articles
3707 @section Marking Articles
3708 @cindex article marking
3709 @cindex article ticking
3710 @cindex marks
3711
3712 There are several marks you can set on an article.
3713
3714 You have marks that decide the @dfn{readedness} (whoo, neato-keano
3715 neologism ohoy!) of the article. Alphabetic marks generally mean
3716 @dfn{read}, while non-alphabetic characters generally mean @dfn{unread}.
3717
3718 In addition, you also have marks that do not affect readedness.
3719
3720 @menu
3721 * Unread Articles:: Marks for unread articles.
3722 * Read Articles:: Marks for read articles.
3723 * Other Marks:: Marks that do not affect readedness.
3724 @end menu
3725
3726 @ifinfo
3727 There's a plethora of commands for manipulating these marks:
3728 @end ifinfo
3729
3730 @menu
3731 * Setting Marks:: How to set and remove marks.
3732 * Setting Process Marks:: How to mark articles for later processing.
3733 @end menu
3734
3735
3736 @node Unread Articles
3737 @subsection Unread Articles
3738
3739 The following marks mark articles as (kinda) unread, in one form or
3740 other.
3741
3742 @table @samp
3743 @item !
3744 @vindex gnus-ticked-mark
3745 Marked as ticked (@code{gnus-ticked-mark}).
3746
3747 @dfn{Ticked articles} are articles that will remain visible always. If
3748 you see an article that you find interesting, or you want to put off
3749 reading it, or replying to it, until sometime later, you'd typically
3750 tick it. However, articles can be expired, so if you want to keep an
3751 article forever, you'll have to make it persistent (@pxref{Persistent
3752 Articles}).
3753
3754 @item ?
3755 @vindex gnus-dormant-mark
3756 Marked as dormant (@code{gnus-dormant-mark}).
3757
3758 @dfn{Dormant articles} will only appear in the summary buffer if there
3759 are followups to it. If you want to see them even if they don't have
3760 followups, you can use the @kbd{/ D} command (@pxref{Limiting}).
3761
3762 @item SPACE
3763 @vindex gnus-unread-mark
3764 Marked as unread (@code{gnus-unread-mark}).
3765
3766 @dfn{Unread articles} are articles that haven't been read at all yet.
3767 @end table
3768
3769
3770 @node Read Articles
3771 @subsection Read Articles
3772 @cindex expirable mark
3773
3774 All the following marks mark articles as read.
3775
3776 @table @samp
3777
3778 @item r
3779 @vindex gnus-del-mark
3780 These are articles that the user has marked as read with the @kbd{d}
3781 command manually, more or less (@code{gnus-del-mark}).
3782
3783 @item R
3784 @vindex gnus-read-mark
3785 Articles that have actually been read (@code{gnus-read-mark}).
3786
3787 @item O
3788 @vindex gnus-ancient-mark
3789 Articles that were marked as read in previous sessions and are now
3790 @dfn{old} (@code{gnus-ancient-mark}).
3791
3792 @item K
3793 @vindex gnus-killed-mark
3794 Marked as killed (@code{gnus-killed-mark}).
3795
3796 @item X
3797 @vindex gnus-kill-file-mark
3798 Marked as killed by kill files (@code{gnus-kill-file-mark}).
3799
3800 @item Y
3801 @vindex gnus-low-score-mark
3802 Marked as read by having too low a score (@code{gnus-low-score-mark}).
3803
3804 @item C
3805 @vindex gnus-catchup-mark
3806 Marked as read by a catchup (@code{gnus-catchup-mark}).
3807
3808 @item G
3809 @vindex gnus-canceled-mark
3810 Canceled article (@code{gnus-canceled-mark})
3811
3812 @item F
3813 @vindex gnus-souped-mark
3814 @sc{SOUP}ed article (@code{gnus-souped-mark}). @xref{SOUP}.
3815
3816 @item Q
3817 @vindex gnus-sparse-mark
3818 Sparsely reffed article (@code{gnus-sparse-mark}). @xref{Customizing
3819 Threading}.
3820
3821 @item M
3822 @vindex gnus-duplicate-mark
3823 Article marked as read by duplicate suppression
3824 (@code{gnus-duplicated-mark}). @xref{Duplicate Suppression}.
3825
3826 @end table
3827
3828 All these marks just mean that the article is marked as read, really.
3829 They are interpreted differently when doing adaptive scoring, though.
3830
3831 One more special mark, though:
3832
3833 @table @samp
3834 @item E
3835 @vindex gnus-expirable-mark
3836 Marked as expirable (@code{gnus-expirable-mark}).
3837
3838 Marking articles as @dfn{expirable} (or have them marked as such
3839 automatically) doesn't make much sense in normal groups---a user doesn't
3840 control expiring of news articles, but in mail groups, for instance,
3841 articles marked as @dfn{expirable} can be deleted by Gnus at
3842 any time.
3843 @end table
3844
3845
3846 @node Other Marks
3847 @subsection Other Marks
3848 @cindex process mark
3849 @cindex bookmarks
3850
3851 There are some marks that have nothing to do with whether the article is
3852 read or not.
3853
3854 @itemize @bullet
3855
3856 @item
3857 You can set a bookmark in the current article. Say you are reading a
3858 long thesis on cats' urinary tracts, and have to go home for dinner
3859 before you've finished reading the thesis. You can then set a bookmark
3860 in the article, and Gnus will jump to this bookmark the next time it
3861 encounters the article. @xref{Setting Marks}.
3862
3863 @item
3864 @vindex gnus-replied-mark
3865 All articles that you have replied to or made a followup to (i.e., have
3866 answered) will be marked with an @samp{A} in the second column
3867 (@code{gnus-replied-mark}).
3868
3869 @item
3870 @vindex gnus-cached-mark
3871 Articles stored in the article cache will be marked with an @samp{*} in
3872 the second column (@code{gnus-cached-mark}). @xref{Article Caching}.
3873
3874 @item
3875 @vindex gnus-saved-mark
3876 Articles ``saved'' (in some manner or other; not necessarily
3877 religiously) are marked with an @samp{S} in the second column
3878 (@code{gnus-saved-mark}).
3879
3880 @item
3881 @vindex gnus-not-empty-thread-mark
3882 @vindex gnus-empty-thread-mark
3883 If the @samp{%e} spec is used, the presence of threads or not will be
3884 marked with @code{gnus-not-empty-thread-mark} and
3885 @code{gnus-empty-thread-mark} in the third column, respectively.
3886
3887 @item
3888 @vindex gnus-process-mark
3889 Finally we have the @dfn{process mark} (@code{gnus-process-mark}). A
3890 variety of commands react to the presence of the process mark. For
3891 instance, @kbd{X u} (@code{gnus-uu-decode-uu}) will uudecode and view
3892 all articles that have been marked with the process mark. Articles
3893 marked with the process mark have a @samp{#} in the second column.
3894
3895 @end itemize
3896
3897 You might have noticed that most of these ``non-readedness'' marks
3898 appear in the second column by default. So if you have a cached, saved,
3899 replied article that you have process-marked, what will that look like?
3900
3901 Nothing much. The precedence rules go as follows: process -> cache ->
3902 replied -> saved. So if the article is in the cache and is replied,
3903 you'll only see the cache mark and not the replied mark.
3904
3905
3906 @node Setting Marks
3907 @subsection Setting Marks
3908 @cindex setting marks
3909
3910 All the marking commands understand the numeric prefix.
3911
3912 @table @kbd
3913 @item M c
3914 @itemx M-u
3915 @kindex M c (Summary)
3916 @kindex M-u (Summary)
3917 @findex gnus-summary-clear-mark-forward
3918 @cindex mark as unread
3919 Clear all readedness-marks from the current article
3920 (@code{gnus-summary-clear-mark-forward}). In other words, mark the
3921 article as unread.
3922
3923 @item M t
3924 @itemx !
3925 @kindex ! (Summary)
3926 @kindex M t (Summary)
3927 @findex gnus-summary-tick-article-forward
3928 Tick the current article (@code{gnus-summary-tick-article-forward}).
3929 @xref{Article Caching}.
3930
3931 @item M ?
3932 @itemx ?
3933 @kindex ? (Summary)
3934 @kindex M ? (Summary)
3935 @findex gnus-summary-mark-as-dormant
3936 Mark the current article as dormant
3937 (@code{gnus-summary-mark-as-dormant}). @xref{Article Caching}.
3938
3939 @item M d
3940 @itemx d
3941 @kindex M d (Summary)
3942 @kindex d (Summary)
3943 @findex gnus-summary-mark-as-read-forward
3944 Mark the current article as read
3945 (@code{gnus-summary-mark-as-read-forward}).
3946
3947 @item D
3948 @kindex D (Summary)
3949 @findex gnus-summary-mark-as-read-backward
3950 Mark the current article as read and move point to the previous line
3951 (@code{gnus-summary-mark-as-read-backward}).
3952
3953 @item M k
3954 @itemx k
3955 @kindex k (Summary)
3956 @kindex M k (Summary)
3957 @findex gnus-summary-kill-same-subject-and-select
3958 Mark all articles that have the same subject as the current one as read,
3959 and then select the next unread article
3960 (@code{gnus-summary-kill-same-subject-and-select}).
3961
3962 @item M K
3963 @itemx C-k
3964 @kindex M K (Summary)
3965 @kindex C-k (Summary)
3966 @findex gnus-summary-kill-same-subject
3967 Mark all articles that have the same subject as the current one as read
3968 (@code{gnus-summary-kill-same-subject}).
3969
3970 @item M C
3971 @kindex M C (Summary)
3972 @findex gnus-summary-catchup
3973 @c @icon{gnus-summary-catchup}
3974 Mark all unread articles as read (@code{gnus-summary-catchup}).
3975
3976 @item M C-c
3977 @kindex M C-c (Summary)
3978 @findex gnus-summary-catchup-all
3979 Mark all articles in the group as read---even the ticked and dormant
3980 articles (@code{gnus-summary-catchup-all}).
3981
3982 @item M H
3983 @kindex M H (Summary)
3984 @findex gnus-summary-catchup-to-here
3985 Catchup the current group to point
3986 (@code{gnus-summary-catchup-to-here}).
3987
3988 @item C-w
3989 @kindex C-w (Summary)
3990 @findex gnus-summary-mark-region-as-read
3991 Mark all articles between point and mark as read
3992 (@code{gnus-summary-mark-region-as-read}).
3993
3994 @item M V k
3995 @kindex M V k (Summary)
3996 @findex gnus-summary-kill-below
3997 Kill all articles with scores below the default score (or below the
3998 numeric prefix) (@code{gnus-summary-kill-below}).
3999
4000 @item M e
4001 @itemx E
4002 @kindex M e (Summary)
4003 @kindex E (Summary)
4004 @findex gnus-summary-mark-as-expirable
4005 Mark the current article as expirable
4006 (@code{gnus-summary-mark-as-expirable}).
4007
4008 @item M b
4009 @kindex M b (Summary)
4010 @findex gnus-summary-set-bookmark
4011 Set a bookmark in the current article
4012 (@code{gnus-summary-set-bookmark}).
4013
4014 @item M B
4015 @kindex M B (Summary)
4016 @findex gnus-summary-remove-bookmark
4017 Remove the bookmark from the current article
4018 (@code{gnus-summary-remove-bookmark}).
4019
4020 @item M V c
4021 @kindex M V c (Summary)
4022 @findex gnus-summary-clear-above
4023 Clear all marks from articles with scores over the default score (or
4024 over the numeric prefix) (@code{gnus-summary-clear-above}).
4025
4026 @item M V u
4027 @kindex M V u (Summary)
4028 @findex gnus-summary-tick-above
4029 Tick all articles with scores over the default score (or over the
4030 numeric prefix) (@code{gnus-summary-tick-above}).
4031
4032 @item M V m
4033 @kindex M V m (Summary)
4034 @findex gnus-summary-mark-above
4035 Prompt for a mark, and mark all articles with scores over the default
4036 score (or over the numeric prefix) with this mark
4037 (@code{gnus-summary-clear-above}).
4038 @end table
4039
4040 @vindex gnus-summary-goto-unread
4041 The @code{gnus-summary-goto-unread} variable controls what action should
4042 be taken after setting a mark. If non-@code{nil}, point will move to
4043 the next/previous unread article. If @code{nil}, point will just move
4044 one line up or down. As a special case, if this variable is
4045 @code{never}, all the marking commands as well as other commands (like
4046 @kbd{SPACE}) will move to the next article, whether it is unread or not.
4047 The default is @code{t}.
4048
4049
4050 @node Setting Process Marks
4051 @subsection Setting Process Marks
4052 @cindex setting process marks
4053
4054 @table @kbd
4055
4056 @item M P p
4057 @itemx #
4058 @kindex # (Summary)
4059 @kindex M P p (Summary)
4060 @findex gnus-summary-mark-as-processable
4061 Mark the current article with the process mark
4062 (@code{gnus-summary-mark-as-processable}).
4063 @findex gnus-summary-unmark-as-processable
4064
4065 @item M P u
4066 @itemx M-#
4067 @kindex M P u (Summary)
4068 @kindex M-# (Summary)
4069 Remove the process mark, if any, from the current article
4070 (@code{gnus-summary-unmark-as-processable}).
4071
4072 @item M P U
4073 @kindex M P U (Summary)
4074 @findex gnus-summary-unmark-all-processable
4075 Remove the process mark from all articles
4076 (@code{gnus-summary-unmark-all-processable}).
4077
4078 @item M P i
4079 @kindex M P i (Summary)
4080 @findex gnus-uu-invert-processable
4081 Invert the list of process marked articles
4082 (@code{gnus-uu-invert-processable}).
4083
4084 @item M P R
4085 @kindex M P R (Summary)
4086 @findex gnus-uu-mark-by-regexp
4087 Mark articles that have a @code{Subject} header that matches a regular
4088 expression (@code{gnus-uu-mark-by-regexp}).
4089
4090 @item M P r
4091 @kindex M P r (Summary)
4092 @findex gnus-uu-mark-region
4093 Mark articles in region (@code{gnus-uu-mark-region}).
4094
4095 @item M P t
4096 @kindex M P t (Summary)
4097 @findex gnus-uu-mark-thread
4098 Mark all articles in the current (sub)thread
4099 (@code{gnus-uu-mark-thread}).
4100
4101 @item M P T
4102 @kindex M P T (Summary)
4103 @findex gnus-uu-unmark-thread
4104 Unmark all articles in the current (sub)thread
4105 (@code{gnus-uu-unmark-thread}).
4106
4107 @item M P v
4108 @kindex M P v (Summary)
4109 @findex gnus-uu-mark-over
4110 Mark all articles that have a score above the prefix argument
4111 (@code{gnus-uu-mark-over}).
4112
4113 @item M P s
4114 @kindex M P s (Summary)
4115 @findex gnus-uu-mark-series
4116 Mark all articles in the current series (@code{gnus-uu-mark-series}).
4117
4118 @item M P S
4119 @kindex M P S (Summary)
4120 @findex gnus-uu-mark-sparse
4121 Mark all series that have already had some articles marked
4122 (@code{gnus-uu-mark-sparse}).
4123
4124 @item M P a
4125 @kindex M P a (Summary)
4126 @findex gnus-uu-mark-all
4127 Mark all articles in series order (@code{gnus-uu-mark-series}).
4128
4129 @item M P b
4130 @kindex M P b (Summary)
4131 @findex gnus-uu-mark-buffer
4132 Mark all articles in the buffer in the order they appear
4133 (@code{gnus-uu-mark-buffer}).
4134
4135 @item M P k
4136 @kindex M P k (Summary)
4137 @findex gnus-summary-kill-process-mark
4138 Push the current process mark set onto the stack and unmark all articles
4139 (@code{gnus-summary-kill-process-mark}).
4140
4141 @item M P y
4142 @kindex M P y (Summary)
4143 @findex gnus-summary-yank-process-mark
4144 Pop the previous process mark set from the stack and restore it
4145 (@code{gnus-summary-yank-process-mark}).
4146
4147 @item M P w
4148 @kindex M P w (Summary)
4149 @findex gnus-summary-save-process-mark
4150 Push the current process mark set onto the stack
4151 (@code{gnus-summary-save-process-mark}).
4152
4153 @end table
4154
4155
4156 @node Limiting
4157 @section Limiting
4158 @cindex limiting
4159
4160 It can be convenient to limit the summary buffer to just show some
4161 subset of the articles currently in the group. The effect most limit
4162 commands have is to remove a few (or many) articles from the summary
4163 buffer.
4164
4165 All limiting commands work on subsets of the articles already fetched
4166 from the servers. None of these commands query the server for
4167 additional articles.
4168
4169 @table @kbd
4170
4171 @item / /
4172 @itemx / s
4173 @kindex / / (Summary)
4174 @findex gnus-summary-limit-to-subject
4175 Limit the summary buffer to articles that match some subject
4176 (@code{gnus-summary-limit-to-subject}).
4177
4178 @item / a
4179 @kindex / a (Summary)
4180 @findex gnus-summary-limit-to-author
4181 Limit the summary buffer to articles that match some author
4182 (@code{gnus-summary-limit-to-author}).
4183
4184 @item / u
4185 @itemx x
4186 @kindex / u (Summary)
4187 @kindex x (Summary)
4188 @findex gnus-summary-limit-to-unread
4189 Limit the summary buffer to articles not marked as read
4190 (@code{gnus-summary-limit-to-unread}). If given a prefix, limit the
4191 buffer to articles strictly unread. This means that ticked and
4192 dormant articles will also be excluded.
4193
4194 @item / m
4195 @kindex / m (Summary)
4196 @findex gnus-summary-limit-to-marks
4197 Ask for a mark and then limit to all articles that have been marked
4198 with that mark (@code{gnus-summary-limit-to-marks}).
4199
4200 @item / t
4201 @kindex / t (Summary)
4202 @findex gnus-summary-limit-to-age
4203 Ask for a number and then limit the summary buffer to articles older than (or equal to) that number of days
4204 (@code{gnus-summary-limit-to-marks}). If given a prefix, limit to
4205 articles younger than that number of days.
4206
4207 @item / n
4208 @kindex / n (Summary)
4209 @findex gnus-summary-limit-to-articles
4210 Limit the summary buffer to the current article
4211 (@code{gnus-summary-limit-to-articles}). Uses the process/prefix
4212 convention (@pxref{Process/Prefix}).
4213
4214 @item / w
4215 @kindex / w (Summary)
4216 @findex gnus-summary-pop-limit
4217 Pop the previous limit off the stack and restore it
4218 (@code{gnus-summary-pop-limit}). If given a prefix, pop all limits off
4219 the stack.
4220
4221 @item / v
4222 @kindex / v (Summary)
4223 @findex gnus-summary-limit-to-score
4224 Limit the summary buffer to articles that have a score at or above some
4225 score (@code{gnus-summary-limit-to-score}).
4226
4227 @item / E
4228 @itemx M S
4229 @kindex M S (Summary)
4230 @kindex / E (Summary)
4231 @findex gnus-summary-limit-include-expunged
4232 Include all expunged articles in the limit
4233 (@code{gnus-summary-limit-include-expunged}).
4234
4235 @item / D
4236 @kindex / D (Summary)
4237 @findex gnus-summary-limit-include-dormant
4238 Include all dormant articles in the limit
4239 (@code{gnus-summary-limit-include-dormant}).
4240
4241 @item / *
4242 @kindex / * (Summary)
4243 @findex gnus-summary-limit-include-cached
4244 Include all cached articles in the limit
4245 (@code{gnus-summary-limit-include-cached}).
4246
4247 @item / d
4248 @kindex / d (Summary)
4249 @findex gnus-summary-limit-exclude-dormant
4250 Exclude all dormant articles from the limit
4251 (@code{gnus-summary-limit-exclude-dormant}).
4252
4253 @item / T
4254 @kindex / T (Summary)
4255 @findex gnus-summary-limit-include-thread
4256 Include all the articles in the current thread in the limit.
4257
4258 @item / c
4259 @kindex / c (Summary)
4260 @findex gnus-summary-limit-exclude-childless-dormant
4261 Exclude all dormant articles that have no children from the limit
4262 (@code{gnus-summary-limit-exclude-childless-dormant}).
4263
4264 @item / C
4265 @kindex / C (Summary)
4266 @findex gnus-summary-limit-mark-excluded-as-read
4267 Mark all excluded unread articles as read
4268 (@code{gnus-summary-limit-mark-excluded-as-read}). If given a prefix,
4269 also mark excluded ticked and dormant articles as read.
4270
4271 @end table
4272
4273
4274 @node Threading
4275 @section Threading
4276 @cindex threading
4277 @cindex article threading
4278
4279 Gnus threads articles by default. @dfn{To thread} is to put responses
4280 to articles directly after the articles they respond to---in a
4281 hierarchical fashion.
4282
4283 Threading is done by looking at the @code{References} headers of the
4284 articles. In a perfect world, this would be enough to build pretty
4285 trees, but unfortunately, the @code{References} header is often broken
4286 or simply missing. Weird news propagation excarcerbates the problem,
4287 so one has to employ other heuristics to get pleasing results. A
4288 plethora of approaches exists, as detailed in horrible detail in
4289 @pxref{Customizing Threading}.
4290
4291 First, a quick overview of the concepts:
4292
4293 @table @dfn
4294 @item root
4295 The top-most article in a thread; the first article in the thread.
4296
4297 @item thread
4298 A tree-like article structure.
4299
4300 @item sub-thread
4301 A small(er) section of this tree-like structure.
4302
4303 @item loose threads
4304 Threads often lose their roots due to article expiry, or due to the root
4305 already having been read in a previous session, and not displayed in the
4306 summary buffer. We then typically have many sub-threads that really
4307 belong to one thread, but are without connecting roots. These are
4308 called loose threads.
4309
4310 @item thread gathering
4311 An attempt to gather loose threads into bigger threads.
4312
4313 @item sparse threads
4314 A thread where the missing articles have been ``guessed'' at, and are
4315 displayed as empty lines in the summary buffer.
4316
4317 @end table
4318
4319
4320 @menu
4321 * Customizing Threading:: Variables you can change to affect the threading.
4322 * Thread Commands:: Thread based commands in the summary buffer.
4323 @end menu
4324
4325
4326 @node Customizing Threading
4327 @subsection Customizing Threading
4328 @cindex customizing threading
4329
4330 @menu
4331 * Loose Threads:: How Gnus gathers loose threads into bigger threads.
4332 * Filling In Threads:: Making the threads displayed look fuller.
4333 * More Threading:: Even more variables for fiddling with threads.
4334 * Low-Level Threading:: You thought it was over... but you were wrong!
4335 @end menu
4336
4337
4338 @node Loose Threads
4339 @subsubsection Loose Threads
4340 @cindex <
4341 @cindex >
4342 @cindex loose threads
4343
4344 @table @code
4345 @item gnus-summary-make-false-root
4346 @vindex gnus-summary-make-false-root
4347 If non-@code{nil}, Gnus will gather all loose subtrees into one big tree
4348 and create a dummy root at the top. (Wait a minute. Root at the top?
4349 Yup.) Loose subtrees occur when the real root has expired, or you've
4350 read or killed the root in a previous session.
4351
4352 When there is no real root of a thread, Gnus will have to fudge
4353 something. This variable says what fudging method Gnus should use.
4354 There are four possible values:
4355
4356 @cindex adopting articles
4357
4358 @table @code
4359
4360 @item adopt
4361 Gnus will make the first of the orphaned articles the parent. This
4362 parent will adopt all the other articles. The adopted articles will be
4363 marked as such by pointy brackets (@samp{<>}) instead of the standard
4364 square brackets (@samp{[]}). This is the default method.
4365
4366 @item dummy
4367 @vindex gnus-summary-dummy-line-format
4368 Gnus will create a dummy summary line that will pretend to be the
4369 parent. This dummy line does not correspond to any real article, so
4370 selecting it will just select the first real article after the dummy
4371 article. @code{gnus-summary-dummy-line-format} is used to specify the
4372 format of the dummy roots. It accepts only one format spec: @samp{S},
4373 which is the subject of the article. @xref{Formatting Variables}.
4374
4375 @item empty
4376 Gnus won't actually make any article the parent, but simply leave the
4377 subject field of all orphans except the first empty. (Actually, it will
4378 use @code{gnus-summary-same-subject} as the subject (@pxref{Summary
4379 Buffer Format}).)
4380
4381 @item none
4382 Don't make any article parent at all. Just gather the threads and
4383 display them after one another.
4384
4385 @item nil
4386 Don't gather loose threads.
4387 @end table
4388
4389 @item gnus-summary-gather-subject-limit
4390 @vindex gnus-summary-gather-subject-limit
4391 Loose threads are gathered by comparing subjects of articles. If this
4392 variable is @code{nil}, Gnus requires an exact match between the
4393 subjects of the loose threads before gathering them into one big
4394 super-thread. This might be too strict a requirement, what with the
4395 presence of stupid newsreaders that chop off long subject lines. If
4396 you think so, set this variable to, say, 20 to require that only the
4397 first 20 characters of the subjects have to match. If you set this
4398 variable to a really low number, you'll find that Gnus will gather
4399 everything in sight into one thread, which isn't very helpful.
4400
4401 @cindex fuzzy article gathering
4402 If you set this variable to the special value @code{fuzzy}, Gnus will
4403 use a fuzzy string comparison algorithm on the subjects (@pxref{Fuzzy
4404 Matching}).
4405
4406 @item gnus-simplify-subject-fuzzy-regexp
4407 @vindex gnus-simplify-subject-fuzzy-regexp
4408 This can either be a regular expression or list of regular expressions
4409 that match strings that will be removed from subjects if fuzzy subject
4410 simplification is used.
4411
4412 @item gnus-simplify-ignored-prefixes
4413 @vindex gnus-simplify-ignored-prefixes
4414 If you set @code{gnus-summary-gather-subject-limit} to something as low
4415 as 10, you might consider setting this variable to something sensible:
4416
4417 @c Written by Michael Ernst <mernst@cs.rice.edu>
4418 @lisp
4419 (setq gnus-simplify-ignored-prefixes
4420 (concat
4421 "\\`\\[?\\("
4422 (mapconcat
4423 'identity
4424 '("looking"
4425 "wanted" "followup" "summary\\( of\\)?"
4426 "help" "query" "problem" "question"
4427 "answer" "reference" "announce"
4428 "How can I" "How to" "Comparison of"
4429 ;; ...
4430 )
4431 "\\|")
4432 "\\)\\s *\\("
4433 (mapconcat 'identity
4434 '("for" "for reference" "with" "about")
4435 "\\|")
4436 "\\)?\\]?:?[ \t]*"))
4437 @end lisp
4438
4439 All words that match this regexp will be removed before comparing two
4440 subjects.
4441
4442 @item gnus-simplify-subject-functions
4443 @vindex gnus-simplify-subject-functions
4444 If non-@code{nil}, this variable overrides
4445 @code{gnus-summary-gather-subject-limit}. This variable should be a
4446 list of functions to apply to the @code{Subject} string iteratively to
4447 arrive at the simplified version of the string.
4448
4449 Useful functions to put in this list include:
4450
4451 @table @code
4452 @item gnus-simplify-subject-re
4453 @findex gnus-simplify-subject-re
4454 Strip the leading @samp{Re:}.
4455
4456 @item gnus-simplify-subject-fuzzy
4457 @findex gnus-simplify-subject-fuzzy
4458 Simplify fuzzily.
4459
4460 @item gnus-simplify-whitespace
4461 @findex gnus-simplify-whitespace
4462 Remove excessive whitespace.
4463 @end table
4464
4465 You may also write your own functions, of course.
4466
4467
4468 @item gnus-summary-gather-exclude-subject
4469 @vindex gnus-summary-gather-exclude-subject
4470 Since loose thread gathering is done on subjects only, that might lead
4471 to many false hits, especially with certain common subjects like
4472 @samp{} and @samp{(none)}. To make the situation slightly better,
4473 you can use the regexp @code{gnus-summary-gather-exclude-subject} to say
4474 what subjects should be excluded from the gathering process.@*
4475 The default is @samp{^ *$\\|^(none)$}.
4476
4477 @item gnus-summary-thread-gathering-function
4478 @vindex gnus-summary-thread-gathering-function
4479 Gnus gathers threads by looking at @code{Subject} headers. This means
4480 that totally unrelated articles may end up in the same ``thread'', which
4481 is confusing. An alternate approach is to look at all the
4482 @code{Message-ID}s in all the @code{References} headers to find matches.
4483 This will ensure that no gathered threads ever include unrelated
4484 articles, but it also means that people who have posted with broken
4485 newsreaders won't be gathered properly. The choice is yours---plague or
4486 cholera:
4487
4488 @table @code
4489 @item gnus-gather-threads-by-subject
4490 @findex gnus-gather-threads-by-subject
4491 This function is the default gathering function and looks at
4492 @code{Subject}s exclusively.
4493
4494 @item gnus-gather-threads-by-references
4495 @findex gnus-gather-threads-by-references
4496 This function looks at @code{References} headers exclusively.
4497 @end table
4498
4499 If you want to test gathering by @code{References}, you could say
4500 something like:
4501
4502 @lisp
4503 (setq gnus-summary-thread-gathering-function
4504 'gnus-gather-threads-by-references)
4505 @end lisp
4506
4507 @end table
4508
4509
4510 @node Filling In Threads
4511 @subsubsection Filling In Threads
4512
4513 @table @code
4514 @item gnus-fetch-old-headers
4515 @vindex gnus-fetch-old-headers
4516 If non-@code{nil}, Gnus will attempt to build old threads by fetching
4517 more old headers---headers to articles marked as read. If you
4518 would like to display as few summary lines as possible, but still
4519 connect as many loose threads as possible, you should set this variable
4520 to @code{some} or a number. If you set it to a number, no more than
4521 that number of extra old headers will be fetched. In either case,
4522 fetching old headers only works if the backend you are using carries
4523 overview files---this would normally be @code{nntp}, @code{nnspool} and
4524 @code{nnml}. Also remember that if the root of the thread has been
4525 expired by the server, there's not much Gnus can do about that.
4526
4527 This variable can also be set to @code{invisible}. This won't have any
4528 visible effects, but is useful if you use the @kbd{A T} command a lot
4529 (@pxref{Finding the Parent}).
4530
4531 @item gnus-build-sparse-threads
4532 @vindex gnus-build-sparse-threads
4533 Fetching old headers can be slow. A low-rent similar effect can be
4534 gotten by setting this variable to @code{some}. Gnus will then look at
4535 the complete @code{References} headers of all articles and try to string
4536 together articles that belong in the same thread. This will leave
4537 @dfn{gaps} in the threading display where Gnus guesses that an article
4538 is missing from the thread. (These gaps appear like normal summary
4539 lines. If you select a gap, Gnus will try to fetch the article in
4540 question.) If this variable is @code{t}, Gnus will display all these
4541 ``gaps'' without regard for whether they are useful for completing the
4542 thread or not. Finally, if this variable is @code{more}, Gnus won't cut
4543 off sparse leaf nodes that don't lead anywhere. This variable is
4544 @code{nil} by default.
4545
4546 @end table
4547
4548
4549 @node More Threading
4550 @subsubsection More Threading
4551
4552 @table @code
4553 @item gnus-show-threads
4554 @vindex gnus-show-threads
4555 If this variable is @code{nil}, no threading will be done, and all of
4556 the rest of the variables here will have no effect. Turning threading
4557 off will speed group selection up a bit, but it is sure to make reading
4558 slower and more awkward.
4559
4560 @item gnus-thread-hide-subtree
4561 @vindex gnus-thread-hide-subtree
4562 If non-@code{nil}, all threads will be hidden when the summary buffer is
4563 generated.
4564
4565 @item gnus-thread-expunge-below
4566 @vindex gnus-thread-expunge-below
4567 All threads that have a total score (as defined by
4568 @code{gnus-thread-score-function}) less than this number will be
4569 expunged. This variable is @code{nil} by default, which means that no
4570 threads are expunged.
4571
4572 @item gnus-thread-hide-killed
4573 @vindex gnus-thread-hide-killed
4574 if you kill a thread and this variable is non-@code{nil}, the subtree
4575 will be hidden.
4576
4577 @item gnus-thread-ignore-subject
4578 @vindex gnus-thread-ignore-subject
4579 Sometimes somebody changes the subject in the middle of a thread. If
4580 this variable is non-@code{nil}, the subject change is ignored. If it
4581 is @code{nil}, which is the default, a change in the subject will result
4582 in a new thread.
4583
4584 @item gnus-thread-indent-level
4585 @vindex gnus-thread-indent-level
4586 This is a number that says how much each sub-thread should be indented.
4587 The default is 4.
4588
4589 @end table
4590
4591
4592 @node Low-Level Threading
4593 @subsubsection Low-Level Threading
4594
4595 @table @code
4596
4597 @item gnus-parse-headers-hook
4598 @vindex gnus-parse-headers-hook
4599 Hook run before parsing any headers. The default value is
4600 @code{(gnus-decode-rfc1522)}, which means that QPized headers will be
4601 slightly decoded in a hackish way. This is likely to change in the
4602 future when Gnus becomes @sc{MIME}ified.
4603
4604 @item gnus-alter-header-function
4605 @vindex gnus-alter-header-function
4606 If non-@code{nil}, this function will be called to allow alteration of
4607 article header structures. The function is called with one parameter,
4608 the article header vector, which it may alter in any way. For instance,
4609 if you have a mail-to-news gateway which alters the @code{Message-ID}s
4610 in systematic ways (by adding prefixes and such), you can use this
4611 variable to un-scramble the @code{Message-ID}s so that they are more
4612 meaningful. Here's one example:
4613
4614 @lisp
4615 (setq gnus-alter-header-function 'my-alter-message-id)
4616
4617 (defun my-alter-message-id (header)
4618 (let ((id (mail-header-id header)))
4619 (when (string-match
4620 "\\(<[^<>@@]*\\)\\.?cygnus\\..*@@\\([^<>@@]*>\\)" id)
4621 (mail-header-set-id
4622 (concat (match-string 1 id) "@@" (match-string 2 id))
4623 header))))
4624 @end lisp
4625
4626 @end table
4627
4628
4629 @node Thread Commands
4630 @subsection Thread Commands
4631 @cindex thread commands
4632
4633 @table @kbd
4634
4635 @item T k
4636 @itemx M-C-k
4637 @kindex T k (Summary)
4638 @kindex M-C-k (Summary)
4639 @findex gnus-summary-kill-thread
4640 Mark all articles in the current (sub-)thread as read
4641 (@code{gnus-summary-kill-thread}). If the prefix argument is positive,
4642 remove all marks instead. If the prefix argument is negative, tick
4643 articles instead.
4644
4645 @item T l
4646 @itemx M-C-l
4647 @kindex T l (Summary)
4648 @kindex M-C-l (Summary)
4649 @findex gnus-summary-lower-thread
4650 Lower the score of the current (sub-)thread
4651 (@code{gnus-summary-lower-thread}).
4652
4653 @item T i
4654 @kindex T i (Summary)
4655 @findex gnus-summary-raise-thread
4656 Increase the score of the current (sub-)thread
4657 (@code{gnus-summary-raise-thread}).
4658
4659 @item T #
4660 @kindex T # (Summary)
4661 @findex gnus-uu-mark-thread
4662 Set the process mark on the current (sub-)thread
4663 (@code{gnus-uu-mark-thread}).
4664
4665 @item T M-#
4666 @kindex T M-# (Summary)
4667 @findex gnus-uu-unmark-thread
4668 Remove the process mark from the current (sub-)thread
4669 (@code{gnus-uu-unmark-thread}).
4670
4671 @item T T
4672 @kindex T T (Summary)
4673 @findex gnus-summary-toggle-threads
4674 Toggle threading (@code{gnus-summary-toggle-threads}).
4675
4676 @item T s
4677 @kindex T s (Summary)
4678 @findex gnus-summary-show-thread
4679 Expose the (sub-)thread hidden under the current article, if any
4680 (@code{gnus-summary-show-thread}).
4681
4682 @item T h
4683 @kindex T h (Summary)
4684 @findex gnus-summary-hide-thread
4685 Hide the current (sub-)thread (@code{gnus-summary-hide-thread}).
4686
4687 @item T S
4688 @kindex T S (Summary)
4689 @findex gnus-summary-show-all-threads
4690 Expose all hidden threads (@code{gnus-summary-show-all-threads}).
4691
4692 @item T H
4693 @kindex T H (Summary)
4694 @findex gnus-summary-hide-all-threads
4695 Hide all threads (@code{gnus-summary-hide-all-threads}).
4696
4697 @item T t
4698 @kindex T t (Summary)
4699 @findex gnus-summary-rethread-current
4700 Re-thread the current article's thread
4701 (@code{gnus-summary-rethread-current}). This works even when the
4702 summary buffer is otherwise unthreaded.
4703
4704 @item T ^
4705 @kindex T ^ (Summary)
4706 @findex gnus-summary-reparent-thread
4707 Make the current article the child of the marked (or previous) article
4708 (@code{gnus-summary-reparent-thread}).
4709
4710 @end table
4711
4712 The following commands are thread movement commands. They all
4713 understand the numeric prefix.
4714
4715 @table @kbd
4716
4717 @item T n
4718 @kindex T n (Summary)
4719 @findex gnus-summary-next-thread
4720 Go to the next thread (@code{gnus-summary-next-thread}).
4721
4722 @item T p
4723 @kindex T p (Summary)
4724 @findex gnus-summary-prev-thread
4725 Go to the previous thread (@code{gnus-summary-prev-thread}).
4726
4727 @item T d
4728 @kindex T d (Summary)
4729 @findex gnus-summary-down-thread
4730 Descend the thread (@code{gnus-summary-down-thread}).
4731
4732 @item T u
4733 @kindex T u (Summary)
4734 @findex gnus-summary-up-thread
4735 Ascend the thread (@code{gnus-summary-up-thread}).
4736
4737 @item T o
4738 @kindex T o (Summary)
4739 @findex gnus-summary-top-thread
4740 Go to the top of the thread (@code{gnus-summary-top-thread}).
4741 @end table
4742
4743 @vindex gnus-thread-operation-ignore-subject
4744 If you ignore subject while threading, you'll naturally end up with
4745 threads that have several different subjects in them. If you then issue
4746 a command like `T k' (@code{gnus-summary-kill-thread}) you might not
4747 wish to kill the entire thread, but just those parts of the thread that
4748 have the same subject as the current article. If you like this idea,
4749 you can fiddle with @code{gnus-thread-operation-ignore-subject}. If it
4750 is non-@code{nil} (which it is by default), subjects will be ignored
4751 when doing thread commands. If this variable is @code{nil}, articles in
4752 the same thread with different subjects will not be included in the
4753 operation in question. If this variable is @code{fuzzy}, only articles
4754 that have subjects fuzzily equal will be included (@pxref{Fuzzy
4755 Matching}).
4756
4757
4758 @node Sorting
4759 @section Sorting
4760
4761 @findex gnus-thread-sort-by-total-score
4762 @findex gnus-thread-sort-by-date
4763 @findex gnus-thread-sort-by-score
4764 @findex gnus-thread-sort-by-subject
4765 @findex gnus-thread-sort-by-author
4766 @findex gnus-thread-sort-by-number
4767 @vindex gnus-thread-sort-functions
4768 If you are using a threaded summary display, you can sort the threads by
4769 setting @code{gnus-thread-sort-functions}, which is a list of functions.
4770 By default, sorting is done on article numbers. Ready-made sorting
4771 predicate functions include @code{gnus-thread-sort-by-number},
4772 @code{gnus-thread-sort-by-author}, @code{gnus-thread-sort-by-subject},
4773 @code{gnus-thread-sort-by-date}, @code{gnus-thread-sort-by-score}, and
4774 @code{gnus-thread-sort-by-total-score}.
4775
4776 Each function takes two threads and returns non-@code{nil} if the first
4777 thread should be sorted before the other. Note that sorting really is
4778 normally done by looking only at the roots of each thread. If you use
4779 more than one function, the primary sort key should be the last function
4780 in the list. You should probably always include
4781 @code{gnus-thread-sort-by-number} in the list of sorting
4782 functions---preferably first. This will ensure that threads that are
4783 equal with respect to the other sort criteria will be displayed in
4784 ascending article order.
4785
4786 If you would like to sort by score, then by subject, and finally by
4787 number, you could do something like:
4788
4789 @lisp
4790 (setq gnus-thread-sort-functions
4791 '(gnus-thread-sort-by-number
4792 gnus-thread-sort-by-subject
4793 gnus-thread-sort-by-total-score))
4794 @end lisp
4795
4796 The threads that have highest score will be displayed first in the
4797 summary buffer. When threads have the same score, they will be sorted
4798 alphabetically. The threads that have the same score and the same
4799 subject will be sorted by number, which is (normally) the sequence in
4800 which the articles arrived.
4801
4802 If you want to sort by score and then reverse arrival order, you could
4803 say something like:
4804
4805 @lisp
4806 (setq gnus-thread-sort-functions
4807 '((lambda (t1 t2)
4808 (not (gnus-thread-sort-by-number t1 t2)))
4809 gnus-thread-sort-by-score))
4810 @end lisp
4811
4812 @vindex gnus-thread-score-function
4813 The function in the @code{gnus-thread-score-function} variable (default
4814 @code{+}) is used for calculating the total score of a thread. Useful
4815 functions might be @code{max}, @code{min}, or squared means, or whatever
4816 tickles your fancy.
4817
4818 @findex gnus-article-sort-functions
4819 @findex gnus-article-sort-by-date
4820 @findex gnus-article-sort-by-score
4821 @findex gnus-article-sort-by-subject
4822 @findex gnus-article-sort-by-author
4823 @findex gnus-article-sort-by-number
4824 If you are using an unthreaded display for some strange reason or other,
4825 you have to fiddle with the @code{gnus-article-sort-functions} variable.
4826 It is very similar to the @code{gnus-thread-sort-functions}, except that
4827 it uses slightly different functions for article comparison. Available
4828 sorting predicate functions are @code{gnus-article-sort-by-number},
4829 @code{gnus-article-sort-by-author}, @code{gnus-article-sort-by-subject},
4830 @code{gnus-article-sort-by-date}, and @code{gnus-article-sort-by-score}.
4831
4832 If you want to sort an unthreaded summary display by subject, you could
4833 say something like:
4834
4835 @lisp
4836 (setq gnus-article-sort-functions
4837 '(gnus-article-sort-by-number
4838 gnus-article-sort-by-subject))
4839 @end lisp
4840
4841
4842
4843 @node Asynchronous Fetching
4844 @section Asynchronous Article Fetching
4845 @cindex asynchronous article fetching
4846 @cindex article pre-fetch
4847 @cindex pre-fetch
4848
4849 If you read your news from an @sc{nntp} server that's far away, the
4850 network latencies may make reading articles a chore. You have to wait
4851 for a while after pressing @kbd{n} to go to the next article before the
4852 article appears. Why can't Gnus just go ahead and fetch the article
4853 while you are reading the previous one? Why not, indeed.
4854
4855 First, some caveats. There are some pitfalls to using asynchronous
4856 article fetching, especially the way Gnus does it.
4857
4858 Let's say you are reading article 1, which is short, and article 2 is
4859 quite long, and you are not interested in reading that. Gnus does not
4860 know this, so it goes ahead and fetches article 2. You decide to read
4861 article 3, but since Gnus is in the process of fetching article 2, the
4862 connection is blocked.
4863
4864 To avoid these situations, Gnus will open two (count 'em two)
4865 connections to the server. Some people may think this isn't a very nice
4866 thing to do, but I don't see any real alternatives. Setting up that
4867 extra connection takes some time, so Gnus startup will be slower.
4868
4869 Gnus will fetch more articles than you will read. This will mean that
4870 the link between your machine and the @sc{nntp} server will become more
4871 loaded than if you didn't use article pre-fetch. The server itself will
4872 also become more loaded---both with the extra article requests, and the
4873 extra connection.
4874
4875 Ok, so now you know that you shouldn't really use this thing... unless
4876 you really want to.
4877
4878 @vindex gnus-asynchronous
4879 Here's how: Set @code{gnus-asynchronous} to @code{t}. The rest should
4880 happen automatically.
4881
4882 @vindex gnus-use-article-prefetch
4883 You can control how many articles are to be pre-fetched by setting
4884 @code{gnus-use-article-prefetch}. This is 30 by default, which means
4885 that when you read an article in the group, the backend will pre-fetch
4886 the next 30 articles. If this variable is @code{t}, the backend will
4887 pre-fetch all the articles it can without bound. If it is
4888 @code{nil}, no pre-fetching will be done.
4889
4890 @vindex gnus-async-prefetch-article-p
4891 @findex gnus-async-read-p
4892 There are probably some articles that you don't want to pre-fetch---read
4893 articles, for instance. The @code{gnus-async-prefetch-article-p} variable controls whether an article is to be pre-fetched. This function should
4894 return non-@code{nil} when the article in question is to be
4895 pre-fetched. The default is @code{gnus-async-read-p}, which returns
4896 @code{nil} on read articles. The function is called with an article
4897 data structure as the only parameter.
4898
4899 If, for instance, you wish to pre-fetch only unread articles shorter than 100 lines, you could say something like:
4900
4901 @lisp
4902 (defun my-async-short-unread-p (data)
4903 "Return non-nil for short, unread articles."
4904 (and (gnus-data-unread-p data)
4905 (< (mail-header-lines (gnus-data-header data))
4906 100)))
4907
4908 (setq gnus-async-prefetch-article-p 'my-async-short-unread-p)
4909 @end lisp
4910
4911 These functions will be called many, many times, so they should
4912 preferably be short and sweet to avoid slowing down Gnus too much.
4913 It's probably a good idea to byte-compile things like this.
4914
4915 @vindex gnus-prefetched-article-deletion-strategy
4916 Articles have to be removed from the asynch buffer sooner or later. The
4917 @code{gnus-prefetched-article-deletion-strategy} says when to remove
4918 articles. This is a list that may contain the following elements:
4919
4920 @table @code
4921 @item read
4922 Remove articles when they are read.
4923
4924 @item exit
4925 Remove articles when exiting the group.
4926 @end table
4927
4928 The default value is @code{(read exit)}.
4929
4930 @c @vindex gnus-use-header-prefetch
4931 @c If @code{gnus-use-header-prefetch} is non-@code{nil}, prefetch articles
4932 @c from the next group.
4933
4934
4935 @node Article Caching
4936 @section Article Caching
4937 @cindex article caching
4938 @cindex caching
4939
4940 If you have an @emph{extremely} slow @sc{nntp} connection, you may
4941 consider turning article caching on. Each article will then be stored
4942 locally under your home directory. As you may surmise, this could
4943 potentially use @emph{huge} amounts of disk space, as well as eat up all
4944 your inodes so fast it will make your head swim. In vodka.
4945
4946 Used carefully, though, it could be just an easier way to save articles.
4947
4948 @vindex gnus-use-long-file-name
4949 @vindex gnus-cache-directory
4950 @vindex gnus-use-cache
4951 To turn caching on, set @code{gnus-use-cache} to @code{t}. By default,
4952 all articles ticked or marked as dormant will then be copied
4953 over to your local cache (@code{gnus-cache-directory}). Whether this
4954 cache is flat or hierarchal is controlled by the
4955 @code{gnus-use-long-file-name} variable, as usual.
4956
4957 When re-selecting a ticked or dormant article, it will be fetched from the
4958 cache instead of from the server. As articles in your cache will never
4959 expire, this might serve as a method of saving articles while still
4960 keeping them where they belong. Just mark all articles you want to save
4961 as dormant, and don't worry.
4962
4963 When an article is marked as read, is it removed from the cache.
4964
4965 @vindex gnus-cache-remove-articles
4966 @vindex gnus-cache-enter-articles
4967 The entering/removal of articles from the cache is controlled by the
4968 @code{gnus-cache-enter-articles} and @code{gnus-cache-remove-articles}
4969 variables. Both are lists of symbols. The first is @code{(ticked
4970 dormant)} by default, meaning that ticked and dormant articles will be
4971 put in the cache. The latter is @code{(read)} by default, meaning that
4972 articles marked as read are removed from the cache. Possibly
4973 symbols in these two lists are @code{ticked}, @code{dormant},
4974 @code{unread} and @code{read}.
4975
4976 @findex gnus-jog-cache
4977 So where does the massive article-fetching and storing come into the
4978 picture? The @code{gnus-jog-cache} command will go through all
4979 subscribed newsgroups, request all unread articles, score them, and
4980 store them in the cache. You should only ever, ever ever ever, use this
4981 command if 1) your connection to the @sc{nntp} server is really, really,
4982 really slow and 2) you have a really, really, really huge disk.
4983 Seriously. One way to cut down on the number of articles downloaded is
4984 to score unwanted articles down and have them marked as read. They will
4985 not then be downloaded by this command.
4986
4987 @vindex gnus-uncacheable-groups
4988 @vindex gnus-cacheable-groups
4989 It is likely that you do not want caching on all groups. For instance,
4990 if your @code{nnml} mail is located under your home directory, it makes no
4991 sense to cache it somewhere else under your home directory. Unless you
4992 feel that it's neat to use twice as much space.
4993
4994 To limit the caching, you could set @code{gnus-cacheable-groups} to a
4995 regexp of groups to cache, @samp{^nntp} for instance, or set the
4996 @code{gnus-uncacheable-groups} regexp to @samp{^nnml}, for instance.
4997 Both variables are @code{nil} by default. If a group matches both
4998 variables, the group is not cached.
4999
5000 @findex gnus-cache-generate-nov-databases
5001 @findex gnus-cache-generate-active
5002 @vindex gnus-cache-active-file
5003 The cache stores information on what articles it contains in its active
5004 file (@code{gnus-cache-active-file}). If this file (or any other parts
5005 of the cache) becomes all messed up for some reason or other, Gnus
5006 offers two functions that will try to set things right. @kbd{M-x
5007 gnus-cache-generate-nov-databases} will (re)build all the @sc{nov}
5008 files, and @kbd{gnus-cache-generate-active} will (re)generate the active
5009 file.
5010
5011
5012 @node Persistent Articles
5013 @section Persistent Articles
5014 @cindex persistent articles
5015
5016 Closely related to article caching, we have @dfn{persistent articles}.
5017 In fact, it's just a different way of looking at caching, and much more
5018 useful in my opinion.
5019
5020 Say you're reading a newsgroup, and you happen on to some valuable gem
5021 that you want to keep and treasure forever. You'd normally just save it
5022 (using one of the many saving commands) in some file. The problem with
5023 that is that it's just, well, yucky. Ideally you'd prefer just having
5024 the article remain in the group where you found it forever; untouched by
5025 the expiry going on at the news server.
5026
5027 This is what a @dfn{persistent article} is---an article that just won't
5028 be deleted. It's implemented using the normal cache functions, but
5029 you use two explicit commands for managing persistent articles:
5030
5031 @table @kbd
5032
5033 @item *
5034 @kindex * (Summary)
5035 @findex gnus-cache-enter-article
5036 Make the current article persistent (@code{gnus-cache-enter-article}).
5037
5038 @item M-*
5039 @kindex M-* (Summary)
5040 @findex gnus-cache-remove-article
5041 Remove the current article from the persistent articles
5042 (@code{gnus-cache-remove-article}). This will normally delete the
5043 article.
5044 @end table
5045
5046 Both these commands understand the process/prefix convention.
5047
5048 To avoid having all ticked articles (and stuff) entered into the cache,
5049 you should set @code{gnus-use-cache} to @code{passive} if you're just
5050 interested in persistent articles:
5051
5052 @lisp
5053 (setq gnus-use-cache 'passive)
5054 @end lisp
5055
5056
5057 @node Article Backlog
5058 @section Article Backlog
5059 @cindex backlog
5060 @cindex article backlog
5061
5062 If you have a slow connection, but the idea of using caching seems
5063 unappealing to you (and it is, really), you can help the situation some
5064 by switching on the @dfn{backlog}. This is where Gnus will buffer
5065 already read articles so that it doesn't have to re-fetch articles
5066 you've already read. This only helps if you are in the habit of
5067 re-selecting articles you've recently read, of course. If you never do
5068 that, turning the backlog on will slow Gnus down a little bit, and
5069 increase memory usage some.
5070
5071 @vindex gnus-keep-backlog
5072 If you set @code{gnus-keep-backlog} to a number @var{n}, Gnus will store
5073 at most @var{n} old articles in a buffer for later re-fetching. If this
5074 variable is non-@code{nil} and is not a number, Gnus will store
5075 @emph{all} read articles, which means that your Emacs will grow without
5076 bound before exploding and taking your machine down with you. I put
5077 that in there just to keep y'all on your toes.
5078
5079 This variable is @code{nil} by default.
5080
5081
5082 @node Saving Articles
5083 @section Saving Articles
5084 @cindex saving articles
5085
5086 Gnus can save articles in a number of ways. Below is the documentation
5087 for saving articles in a fairly straight-forward fashion (i.e., little
5088 processing of the article is done before it is saved). For a different
5089 approach (uudecoding, unsharing) you should use @code{gnus-uu}
5090 (@pxref{Decoding Articles}).
5091
5092 @vindex gnus-save-all-headers
5093 If @code{gnus-save-all-headers} is non-@code{nil}, Gnus will not delete
5094 unwanted headers before saving the article.
5095
5096 @vindex gnus-saved-headers
5097 If the preceding variable is @code{nil}, all headers that match the
5098 @code{gnus-saved-headers} regexp will be kept, while the rest will be
5099 deleted before saving.
5100
5101 @table @kbd
5102
5103 @item O o
5104 @itemx o
5105 @kindex O o (Summary)
5106 @kindex o (Summary)
5107 @findex gnus-summary-save-article
5108 @c @icon{gnus-summary-save-article}
5109 Save the current article using the default article saver
5110 (@code{gnus-summary-save-article}).
5111
5112 @item O m
5113 @kindex O m (Summary)
5114 @findex gnus-summary-save-article-mail
5115 Save the current article in mail format
5116 (@code{gnus-summary-save-article-mail}).
5117
5118 @item O r
5119 @kindex O r (Summary)
5120 @findex gnus-summary-save-article-rmail
5121 Save the current article in rmail format
5122 (@code{gnus-summary-save-article-rmail}).
5123
5124 @item O f
5125 @kindex O f (Summary)
5126 @findex gnus-summary-save-article-file
5127 @c @icon{gnus-summary-save-article-file}
5128 Save the current article in plain file format
5129 (@code{gnus-summary-save-article-file}).
5130
5131 @item O F
5132 @kindex O F (Summary)
5133 @findex gnus-summary-write-article-file
5134 Write the current article in plain file format, overwriting any previous
5135 file contents (@code{gnus-summary-write-article-file}).
5136
5137 @item O b
5138 @kindex O b (Summary)
5139 @findex gnus-summary-save-article-body-file
5140 Save the current article body in plain file format
5141 (@code{gnus-summary-save-article-body-file}).
5142
5143 @item O h
5144 @kindex O h (Summary)
5145 @findex gnus-summary-save-article-folder
5146 Save the current article in mh folder format
5147 (@code{gnus-summary-save-article-folder}).
5148
5149 @item O v
5150 @kindex O v (Summary)
5151 @findex gnus-summary-save-article-vm
5152 Save the current article in a VM folder
5153 (@code{gnus-summary-save-article-vm}).
5154
5155 @item O p
5156 @kindex O p (Summary)
5157 @findex gnus-summary-pipe-output
5158 Save the current article in a pipe. Uhm, like, what I mean is---Pipe
5159 the current article to a process (@code{gnus-summary-pipe-output}).
5160 @end table
5161
5162 @vindex gnus-prompt-before-saving
5163 All these commands use the process/prefix convention
5164 (@pxref{Process/Prefix}). If you save bunches of articles using these
5165 functions, you might get tired of being prompted for files to save each
5166 and every article in. The prompting action is controlled by
5167 the @code{gnus-prompt-before-saving} variable, which is @code{always} by
5168 default, giving you that excessive prompting action you know and
5169 loathe. If you set this variable to @code{t} instead, you'll be prompted
5170 just once for each series of articles you save. If you like to really
5171 have Gnus do all your thinking for you, you can even set this variable
5172 to @code{nil}, which means that you will never be prompted for files to
5173 save articles in. Gnus will simply save all the articles in the default
5174 files.
5175
5176
5177 @vindex gnus-default-article-saver
5178 You can customize the @code{gnus-default-article-saver} variable to make
5179 Gnus do what you want it to. You can use any of the four ready-made
5180 functions below, or you can create your own.
5181
5182 @table @code
5183
5184 @item gnus-summary-save-in-rmail
5185 @findex gnus-summary-save-in-rmail
5186 @vindex gnus-rmail-save-name
5187 @findex gnus-plain-save-name
5188 This is the default format, @dfn{babyl}. Uses the function in the
5189 @code{gnus-rmail-save-name} variable to get a file name to save the
5190 article in. The default is @code{gnus-plain-save-name}.
5191
5192 @item gnus-summary-save-in-mail
5193 @findex gnus-summary-save-in-mail
5194 @vindex gnus-mail-save-name
5195 Save in a Unix mail (mbox) file. Uses the function in the
5196 @code{gnus-mail-save-name} variable to get a file name to save the
5197 article in. The default is @code{gnus-plain-save-name}.
5198
5199 @item gnus-summary-save-in-file
5200 @findex gnus-summary-save-in-file
5201 @vindex gnus-file-save-name
5202 @findex gnus-numeric-save-name
5203 Append the article straight to an ordinary file. Uses the function in
5204 the @code{gnus-file-save-name} variable to get a file name to save the
5205 article in. The default is @code{gnus-numeric-save-name}.
5206
5207 @item gnus-summary-save-body-in-file
5208 @findex gnus-summary-save-body-in-file
5209 Append the article body to an ordinary file. Uses the function in the
5210 @code{gnus-file-save-name} variable to get a file name to save the
5211 article in. The default is @code{gnus-numeric-save-name}.
5212
5213 @item gnus-summary-save-in-folder
5214 @findex gnus-summary-save-in-folder
5215 @findex gnus-folder-save-name
5216 @findex gnus-Folder-save-name
5217 @vindex gnus-folder-save-name
5218 @cindex rcvstore
5219 @cindex MH folders
5220 Save the article to an MH folder using @code{rcvstore} from the MH
5221 library. Uses the function in the @code{gnus-folder-save-name} variable
5222 to get a file name to save the article in. The default is
5223 @code{gnus-folder-save-name}, but you can also use
5224 @code{gnus-Folder-save-name}, which creates capitalized names.
5225
5226 @item gnus-summary-save-in-vm
5227 @findex gnus-summary-save-in-vm
5228 Save the article in a VM folder. You have to have the VM mail
5229 reader to use this setting.
5230 @end table
5231
5232 @vindex gnus-article-save-directory
5233 All of these functions, except for the last one, will save the article
5234 in the @code{gnus-article-save-directory}, which is initialized from the
5235 @code{SAVEDIR} environment variable. This is @file{~/News/} by
5236 default.
5237
5238 As you can see above, the functions use different functions to find a
5239 suitable name of a file to save the article in. Below is a list of
5240 available functions that generate names:
5241
5242 @table @code
5243
5244 @item gnus-Numeric-save-name
5245 @findex gnus-Numeric-save-name
5246 File names like @file{~/News/Alt.andrea-dworkin/45}.
5247
5248 @item gnus-numeric-save-name
5249 @findex gnus-numeric-save-name
5250 File names like @file{~/News/alt.andrea-dworkin/45}.
5251
5252 @item gnus-Plain-save-name
5253 @findex gnus-Plain-save-name
5254 File names like @file{~/News/Alt.andrea-dworkin}.
5255
5256 @item gnus-plain-save-name
5257 @findex gnus-plain-save-name
5258 File names like @file{~/News/alt.andrea-dworkin}.
5259 @end table
5260
5261 @vindex gnus-split-methods
5262 You can have Gnus suggest where to save articles by plonking a regexp into
5263 the @code{gnus-split-methods} alist. For instance, if you would like to
5264 save articles related to Gnus in the file @file{gnus-stuff}, and articles
5265 related to VM in @code{vm-stuff}, you could set this variable to something
5266 like:
5267
5268 @lisp
5269 (("^Subject:.*gnus\\|^Newsgroups:.*gnus" "gnus-stuff")
5270 ("^Subject:.*vm\\|^Xref:.*vm" "vm-stuff")
5271 (my-choosing-function "../other-dir/my-stuff")
5272 ((equal gnus-newsgroup-name "mail.misc") "mail-stuff"))
5273 @end lisp
5274
5275 We see that this is a list where each element is a list that has two
5276 elements---the @dfn{match} and the @dfn{file}. The match can either be
5277 a string (in which case it is used as a regexp to match on the article
5278 head); it can be a symbol (which will be called as a function with the
5279 group name as a parameter); or it can be a list (which will be
5280 @code{eval}ed). If any of these actions have a non-@code{nil} result,
5281 the @dfn{file} will be used as a default prompt. In addition, the
5282 result of the operation itself will be used if the function or form
5283 called returns a string or a list of strings.
5284
5285 You basically end up with a list of file names that might be used when
5286 saving the current article. (All ``matches'' will be used.) You will
5287 then be prompted for what you really want to use as a name, with file
5288 name completion over the results from applying this variable.
5289
5290 This variable is @code{((gnus-article-archive-name))} by default, which
5291 means that Gnus will look at the articles it saves for an
5292 @code{Archive-name} line and use that as a suggestion for the file
5293 name.
5294
5295 Here's an example function to clean up file names somewhat. If you have
5296 lots of mail groups called things like
5297 @samp{nnml:mail.whatever}, you may want to chop off the beginning of
5298 these group names before creating the file name to save to. The
5299 following will do just that:
5300
5301 @lisp
5302 (defun my-save-name (group)
5303 (when (string-match "^nnml:mail." group)
5304 (substring group (match-end 0))))
5305
5306 (setq gnus-split-methods
5307 '((gnus-article-archive-name)
5308 (my-save-name)))
5309 @end lisp
5310
5311
5312 @vindex gnus-use-long-file-name
5313 Finally, you have the @code{gnus-use-long-file-name} variable. If it is
5314 @code{nil}, all the preceding functions will replace all periods
5315 (@samp{.}) in the group names with slashes (@samp{/})---which means that
5316 the functions will generate hierarchies of directories instead of having
5317 all the files in the top level directory
5318 (@file{~/News/alt/andrea-dworkin} instead of
5319 @file{~/News/alt.andrea-dworkin}.) This variable is @code{t} by default
5320 on most systems. However, for historical reasons, this is @code{nil} on
5321 Xenix and usg-unix-v machines by default.
5322
5323 This function also affects kill and score file names. If this variable
5324 is a list, and the list contains the element @code{not-score}, long file
5325 names will not be used for score files, if it contains the element
5326 @code{not-save}, long file names will not be used for saving, and if it
5327 contains the element @code{not-kill}, long file names will not be used
5328 for kill files.
5329
5330 If you'd like to save articles in a hierarchy that looks something like
5331 a spool, you could
5332
5333 @lisp
5334 (setq gnus-use-long-file-name '(not-save)) ; to get a hierarchy
5335 (setq gnus-default-article-saver 'gnus-summary-save-in-file) ; no encoding
5336 @end lisp
5337
5338 Then just save with @kbd{o}. You'd then read this hierarchy with
5339 ephemeral @code{nneething} groups---@kbd{G D} in the group buffer, and
5340 the top level directory as the argument (@file{~/News/}). Then just walk
5341 around to the groups/directories with @code{nneething}.
5342
5343
5344 @node Decoding Articles
5345 @section Decoding Articles
5346 @cindex decoding articles
5347
5348 Sometime users post articles (or series of articles) that have been
5349 encoded in some way or other. Gnus can decode them for you.
5350
5351 @menu
5352 * Uuencoded Articles:: Uudecode articles.
5353 * Shell Archives:: Unshar articles.
5354 * PostScript Files:: Split PostScript.
5355 * Other Files:: Plain save and binhex.
5356 * Decoding Variables:: Variables for a happy decoding.
5357 * Viewing Files:: You want to look at the result of the decoding?
5358 @end menu
5359
5360 @cindex series
5361 @cindex article series
5362 All these functions use the process/prefix convention
5363 (@pxref{Process/Prefix}) for finding out what articles to work on, with
5364 the extension that a ``single article'' means ``a single series''. Gnus
5365 can find out by itself what articles belong to a series, decode all the
5366 articles and unpack/view/save the resulting file(s).
5367
5368 Gnus guesses what articles are in the series according to the following
5369 simplish rule: The subjects must be (nearly) identical, except for the
5370 last two numbers of the line. (Spaces are largely ignored, however.)
5371
5372 For example: If you choose a subject called @samp{cat.gif (2/3)}, Gnus
5373 will find all the articles that match the regexp @samp{^cat.gif
5374 ([0-9]+/[0-9]+).*$}.
5375
5376 Subjects that are non-standard, like @samp{cat.gif (2/3) Part 6 of a
5377 series}, will not be properly recognized by any of the automatic viewing
5378 commands, and you have to mark the articles manually with @kbd{#}.
5379
5380
5381 @node Uuencoded Articles
5382 @subsection Uuencoded Articles
5383 @cindex uudecode
5384 @cindex uuencoded articles
5385
5386 @table @kbd
5387
5388 @item X u
5389 @kindex X u (Summary)
5390 @findex gnus-uu-decode-uu
5391 @c @icon{gnus-uu-decode-uu}
5392 Uudecodes the current series (@code{gnus-uu-decode-uu}).
5393
5394 @item X U
5395 @kindex X U (Summary)
5396 @findex gnus-uu-decode-uu-and-save
5397 Uudecodes and saves the current series
5398 (@code{gnus-uu-decode-uu-and-save}).
5399
5400 @item X v u
5401 @kindex X v u (Summary)
5402 @findex gnus-uu-decode-uu-view
5403 Uudecodes and views the current series (@code{gnus-uu-decode-uu-view}).
5404
5405 @item X v U
5406 @kindex X v U (Summary)
5407 @findex gnus-uu-decode-uu-and-save-view
5408 Uudecodes, views and saves the current series
5409 (@code{gnus-uu-decode-uu-and-save-view}).
5410
5411 @end table
5412
5413 Remember that these all react to the presence of articles marked with
5414 the process mark. If, for instance, you'd like to decode and save an
5415 entire newsgroup, you'd typically do @kbd{M P a}
5416 (@code{gnus-uu-mark-all}) and then @kbd{X U}
5417 (@code{gnus-uu-decode-uu-and-save}).
5418
5419 All this is very much different from how @code{gnus-uu} worked with
5420 @sc{gnus 4.1}, where you had explicit keystrokes for everything under
5421 the sun. This version of @code{gnus-uu} generally assumes that you mark
5422 articles in some way (@pxref{Setting Process Marks}) and then press
5423 @kbd{X u}.
5424
5425 @vindex gnus-uu-notify-files
5426 Note: When trying to decode articles that have names matching
5427 @code{gnus-uu-notify-files}, which is hard-coded to
5428 @samp{[Cc][Ii][Nn][Dd][Yy][0-9]+.\\(gif\\|jpg\\)}, @code{gnus-uu} will
5429 automatically post an article on @samp{comp.unix.wizards} saying that
5430 you have just viewed the file in question. This feature can't be turned
5431 off.
5432
5433
5434 @node Shell Archives
5435 @subsection Shell Archives
5436 @cindex unshar
5437 @cindex shell archives
5438 @cindex shared articles
5439
5440 Shell archives (``shar files'') used to be a popular way to distribute
5441 sources, but it isn't used all that much today. In any case, we have
5442 some commands to deal with these:
5443
5444 @table @kbd
5445
5446 @item X s
5447 @kindex X s (Summary)
5448 @findex gnus-uu-decode-unshar
5449 Unshars the current series (@code{gnus-uu-decode-unshar}).
5450
5451 @item X S
5452 @kindex X S (Summary)
5453 @findex gnus-uu-decode-unshar-and-save
5454 Unshars and saves the current series (@code{gnus-uu-decode-unshar-and-save}).
5455
5456 @item X v s
5457 @kindex X v s (Summary)
5458 @findex gnus-uu-decode-unshar-view
5459 Unshars and views the current series (@code{gnus-uu-decode-unshar-view}).
5460
5461 @item X v S
5462 @kindex X v S (Summary)
5463 @findex gnus-uu-decode-unshar-and-save-view
5464 Unshars, views and saves the current series
5465 (@code{gnus-uu-decode-unshar-and-save-view}).
5466 @end table
5467
5468
5469 @node PostScript Files
5470 @subsection PostScript Files
5471 @cindex PostScript
5472
5473 @table @kbd
5474
5475 @item X p
5476 @kindex X p (Summary)
5477 @findex gnus-uu-decode-postscript
5478 Unpack the current PostScript series (@code{gnus-uu-decode-postscript}).
5479
5480 @item X P
5481 @kindex X P (Summary)
5482 @findex gnus-uu-decode-postscript-and-save
5483 Unpack and save the current PostScript series
5484 (@code{gnus-uu-decode-postscript-and-save}).
5485
5486 @item X v p
5487 @kindex X v p (Summary)
5488 @findex gnus-uu-decode-postscript-view
5489 View the current PostScript series
5490 (@code{gnus-uu-decode-postscript-view}).
5491
5492 @item X v P
5493 @kindex X v P (Summary)
5494 @findex gnus-uu-decode-postscript-and-save-view
5495 View and save the current PostScript series
5496 (@code{gnus-uu-decode-postscript-and-save-view}).
5497 @end table
5498
5499
5500 @node Other Files
5501 @subsection Other Files
5502
5503 @table @kbd
5504 @item X o
5505 @kindex X o (Summary)
5506 @findex gnus-uu-decode-save
5507 Save the current series
5508 (@code{gnus-uu-decode-save}).
5509
5510 @item X b
5511 @kindex X b (Summary)
5512 @findex gnus-uu-decode-binhex
5513 Unbinhex the current series (@code{gnus-uu-decode-binhex}). This
5514 doesn't really work yet.
5515 @end table
5516
5517
5518 @node Decoding Variables
5519 @subsection Decoding Variables
5520
5521 Adjective, not verb.
5522
5523 @menu
5524 * Rule Variables:: Variables that say how a file is to be viewed.
5525 * Other Decode Variables:: Other decode variables.
5526 * Uuencoding and Posting:: Variables for customizing uuencoding.
5527 @end menu
5528
5529
5530 @node Rule Variables
5531 @subsubsection Rule Variables
5532 @cindex rule variables
5533
5534 Gnus uses @dfn{rule variables} to decide how to view a file. All these
5535 variables are of the form
5536
5537 @lisp
5538 (list '(regexp1 command2)
5539 '(regexp2 command2)
5540 ...)
5541 @end lisp
5542
5543 @table @code
5544
5545 @item gnus-uu-user-view-rules
5546 @vindex gnus-uu-user-view-rules
5547 @cindex sox
5548 This variable is consulted first when viewing files. If you wish to use,
5549 for instance, @code{sox} to convert an @samp{.au} sound file, you could
5550 say something like:
5551 @lisp
5552 (setq gnus-uu-user-view-rules
5553 (list '(\"\\\\.au$\" \"sox %s -t .aiff > /dev/audio\")))
5554 @end lisp
5555
5556 @item gnus-uu-user-view-rules-end
5557 @vindex gnus-uu-user-view-rules-end
5558 This variable is consulted if Gnus couldn't make any matches from the
5559 user and default view rules.
5560
5561 @item gnus-uu-user-archive-rules
5562 @vindex gnus-uu-user-archive-rules
5563 This variable can be used to say what commands should be used to unpack
5564 archives.
5565 @end table
5566
5567
5568 @node Other Decode Variables
5569 @subsubsection Other Decode Variables
5570
5571 @table @code
5572 @vindex gnus-uu-grabbed-file-functions
5573
5574 @item gnus-uu-grabbed-file-functions
5575 All functions in this list will be called right after each file has been
5576 successfully decoded---so that you can move or view files right away,
5577 and don't have to wait for all files to be decoded before you can do
5578 anything. Ready-made functions you can put in this list are:
5579
5580 @table @code
5581
5582 @item gnus-uu-grab-view
5583 @findex gnus-uu-grab-view
5584 View the file.
5585
5586 @item gnus-uu-grab-move
5587 @findex gnus-uu-grab-move
5588 Move the file (if you're using a saving function.)
5589 @end table
5590
5591 @item gnus-uu-be-dangerous
5592 @vindex gnus-uu-be-dangerous
5593 Specifies what to do if unusual situations arise during decoding. If
5594 @code{nil}, be as conservative as possible. If @code{t}, ignore things
5595 that didn't work, and overwrite existing files. Otherwise, ask each
5596 time.
5597
5598 @item gnus-uu-ignore-files-by-name
5599 @vindex gnus-uu-ignore-files-by-name
5600 Files with name matching this regular expression won't be viewed.
5601
5602 @item gnus-uu-ignore-files-by-type
5603 @vindex gnus-uu-ignore-files-by-type
5604 Files with a @sc{mime} type matching this variable won't be viewed.
5605 Note that Gnus tries to guess what type the file is based on the name.
5606 @code{gnus-uu} is not a @sc{mime} package (yet), so this is slightly
5607 kludgey.
5608
5609 @item gnus-uu-tmp-dir
5610 @vindex gnus-uu-tmp-dir
5611 Where @code{gnus-uu} does its work.
5612
5613 @item gnus-uu-do-not-unpack-archives
5614 @vindex gnus-uu-do-not-unpack-archives
5615 Non-@code{nil} means that @code{gnus-uu} won't peek inside archives
5616 looking for files to display.
5617
5618 @item gnus-uu-view-and-save
5619 @vindex gnus-uu-view-and-save
5620 Non-@code{nil} means that the user will always be asked to save a file
5621 after viewing it.
5622
5623 @item gnus-uu-ignore-default-view-rules
5624 @vindex gnus-uu-ignore-default-view-rules
5625 Non-@code{nil} means that @code{gnus-uu} will ignore the default viewing
5626 rules.
5627
5628 @item gnus-uu-ignore-default-archive-rules
5629 @vindex gnus-uu-ignore-default-archive-rules
5630 Non-@code{nil} means that @code{gnus-uu} will ignore the default archive
5631 unpacking commands.
5632
5633 @item gnus-uu-kill-carriage-return
5634 @vindex gnus-uu-kill-carriage-return
5635 Non-@code{nil} means that @code{gnus-uu} will strip all carriage returns
5636 from articles.
5637
5638 @item gnus-uu-unmark-articles-not-decoded
5639 @vindex gnus-uu-unmark-articles-not-decoded
5640 Non-@code{nil} means that @code{gnus-uu} will mark unsuccessfully
5641 decoded articles as unread.
5642
5643 @item gnus-uu-correct-stripped-uucode
5644 @vindex gnus-uu-correct-stripped-uucode
5645 Non-@code{nil} means that @code{gnus-uu} will @emph{try} to fix
5646 uuencoded files that have had trailing spaces deleted.
5647
5648 @item gnus-uu-pre-uudecode-hook
5649 @vindex gnus-uu-pre-uudecode-hook
5650 Hook run before sending a message to @code{uudecode}.
5651
5652 @item gnus-uu-view-with-metamail
5653 @vindex gnus-uu-view-with-metamail
5654 @cindex metamail
5655 Non-@code{nil} means that @code{gnus-uu} will ignore the viewing
5656 commands defined by the rule variables and just fudge a @sc{mime}
5657 content type based on the file name. The result will be fed to
5658 @code{metamail} for viewing.
5659
5660 @item gnus-uu-save-in-digest
5661 @vindex gnus-uu-save-in-digest
5662 Non-@code{nil} means that @code{gnus-uu}, when asked to save without
5663 decoding, will save in digests. If this variable is @code{nil},
5664 @code{gnus-uu} will just save everything in a file without any
5665 embellishments. The digesting almost conforms to RFC1153---no easy way
5666 to specify any meaningful volume and issue numbers were found, so I
5667 simply dropped them.
5668
5669 @end table
5670
5671
5672 @node Uuencoding and Posting
5673 @subsubsection Uuencoding and Posting
5674
5675 @table @code
5676
5677 @item gnus-uu-post-include-before-composing
5678 @vindex gnus-uu-post-include-before-composing
5679 Non-@code{nil} means that @code{gnus-uu} will ask for a file to encode
5680 before you compose the article. If this variable is @code{t}, you can
5681 either include an encoded file with @kbd{C-c C-i} or have one included
5682 for you when you post the article.
5683
5684 @item gnus-uu-post-length
5685 @vindex gnus-uu-post-length
5686 Maximum length of an article. The encoded file will be split into how
5687 many articles it takes to post the entire file.
5688
5689 @item gnus-uu-post-threaded
5690 @vindex gnus-uu-post-threaded
5691 Non-@code{nil} means that @code{gnus-uu} will post the encoded file in a
5692 thread. This may not be smart, as no other decoder I have seen is able
5693 to follow threads when collecting uuencoded articles. (Well, I have
5694 seen one package that does that---@code{gnus-uu}, but somehow, I don't
5695 think that counts...) Default is @code{nil}.
5696
5697 @item gnus-uu-post-separate-description
5698 @vindex gnus-uu-post-separate-description
5699 Non-@code{nil} means that the description will be posted in a separate
5700 article. The first article will typically be numbered (0/x). If this
5701 variable is @code{nil}, the description the user enters will be included
5702 at the beginning of the first article, which will be numbered (1/x).
5703 Default is @code{t}.
5704
5705 @end table
5706
5707
5708 @node Viewing Files
5709 @subsection Viewing Files
5710 @cindex viewing files
5711 @cindex pseudo-articles
5712
5713 After decoding, if the file is some sort of archive, Gnus will attempt
5714 to unpack the archive and see if any of the files in the archive can be
5715 viewed. For instance, if you have a gzipped tar file @file{pics.tar.gz}
5716 containing the files @file{pic1.jpg} and @file{pic2.gif}, Gnus will
5717 uncompress and de-tar the main file, and then view the two pictures.
5718 This unpacking process is recursive, so if the archive contains archives
5719 of archives, it'll all be unpacked.
5720
5721 Finally, Gnus will normally insert a @dfn{pseudo-article} for each
5722 extracted file into the summary buffer. If you go to these
5723 ``articles'', you will be prompted for a command to run (usually Gnus
5724 will make a suggestion), and then the command will be run.
5725
5726 @vindex gnus-view-pseudo-asynchronously
5727 If @code{gnus-view-pseudo-asynchronously} is @code{nil}, Emacs will wait
5728 until the viewing is done before proceeding.
5729
5730 @vindex gnus-view-pseudos
5731 If @code{gnus-view-pseudos} is @code{automatic}, Gnus will not insert
5732 the pseudo-articles into the summary buffer, but view them
5733 immediately. If this variable is @code{not-confirm}, the user won't even
5734 be asked for a confirmation before viewing is done.
5735
5736 @vindex gnus-view-pseudos-separately
5737 If @code{gnus-view-pseudos-separately} is non-@code{nil}, one
5738 pseudo-article will be created for each file to be viewed. If
5739 @code{nil}, all files that use the same viewing command will be given as
5740 a list of parameters to that command.
5741
5742 @vindex gnus-insert-pseudo-articles
5743 If @code{gnus-insert-pseudo-articles} is non-@code{nil}, insert
5744 pseudo-articles when decoding. It is @code{t} by default.
5745
5746 So; there you are, reading your @emph{pseudo-articles} in your
5747 @emph{virtual newsgroup} from the @emph{virtual server}; and you think:
5748 Why isn't anything real anymore? How did we get here?
5749
5750
5751 @node Article Treatment
5752 @section Article Treatment
5753
5754 Reading through this huge manual, you may have quite forgotten that the
5755 object of newsreaders is to actually, like, read what people have
5756 written. Reading articles. Unfortunately, people are quite bad at
5757 writing, so there are tons of functions and variables to make reading
5758 these articles easier.
5759
5760 @menu
5761 * Article Highlighting:: You want to make the article look like fruit salad.
5762 * Article Fontisizing:: Making emphasized text look nice.
5763 * Article Hiding:: You also want to make certain info go away.
5764 * Article Washing:: Lots of way-neat functions to make life better.
5765 * Article Buttons:: Click on URLs, Message-IDs, addresses and the like.
5766 * Article Date:: Grumble, UT!
5767 * Article Signature:: What is a signature?
5768 @end menu
5769
5770
5771 @node Article Highlighting
5772 @subsection Article Highlighting
5773 @cindex highlighting
5774
5775 Not only do you want your article buffer to look like fruit salad, but
5776 you want it to look like technicolor fruit salad.
5777
5778 @table @kbd
5779
5780 @item W H a
5781 @kindex W H a (Summary)
5782 @findex gnus-article-highlight
5783 @findex gnus-article-maybe-highlight
5784 Do much highlighting of the current article
5785 (@code{gnus-article-highlight}). This function highlights header, cited
5786 text, the signature, and adds buttons to the body and the head.
5787
5788 Most users would prefer using @code{gnus-article-maybe-highlight} in
5789 @code{gnus-article-display-hook} (@pxref{Customizing Articles}) instead.
5790 This is a bit less agressive---it highlights only the headers, the
5791 signature and adds buttons.
5792
5793 @item W H h
5794 @kindex W H h (Summary)
5795 @findex gnus-article-highlight-headers
5796 @vindex gnus-header-face-alist
5797 Highlight the headers (@code{gnus-article-highlight-headers}). The
5798 highlighting will be done according to the @code{gnus-header-face-alist}
5799 variable, which is a list where each element has the form @var{(regexp
5800 name content)}. @var{regexp} is a regular expression for matching the
5801 header, @var{name} is the face used for highlighting the header name
5802 (@pxref{Faces and Fonts}) and @var{content} is the face for highlighting
5803 the header value. The first match made will be used. Note that
5804 @var{regexp} shouldn't have @samp{^} prepended---Gnus will add one.
5805
5806 @item W H c
5807 @kindex W H c (Summary)
5808 @findex gnus-article-highlight-citation
5809 Highlight cited text (@code{gnus-article-highlight-citation}).
5810
5811 Some variables to customize the citation highlights:
5812
5813 @table @code
5814 @vindex gnus-cite-parse-max-size
5815
5816 @item gnus-cite-parse-max-size
5817 If the article size if bigger than this variable (which is 25000 by
5818 default), no citation highlighting will be performed.
5819
5820 @item gnus-cite-prefix-regexp
5821 @vindex gnus-cite-prefix-regexp
5822 Regexp matching the longest possible citation prefix on a line.
5823
5824 @item gnus-cite-max-prefix
5825 @vindex gnus-cite-max-prefix
5826 Maximum possible length for a citation prefix (default 20).
5827
5828 @item gnus-cite-face-list
5829 @vindex gnus-cite-face-list
5830 List of faces used for highlighting citations (@pxref{Faces and Fonts}).
5831 When there are citations from multiple articles in the same message,
5832 Gnus will try to give each citation from each article its own face.
5833 This should make it easier to see who wrote what.
5834
5835 @item gnus-supercite-regexp
5836 @vindex gnus-supercite-regexp
5837 Regexp matching normal Supercite attribution lines.
5838
5839 @item gnus-supercite-secondary-regexp
5840 @vindex gnus-supercite-secondary-regexp
5841 Regexp matching mangled Supercite attribution lines.
5842
5843 @item gnus-cite-minimum-match-count
5844 @vindex gnus-cite-minimum-match-count
5845 Minimum number of identical prefixes we have to see before we believe
5846 that it's a citation.
5847
5848 @item gnus-cite-attribution-prefix
5849 @vindex gnus-cite-attribution-prefix
5850 Regexp matching the beginning of an attribution line.
5851
5852 @item gnus-cite-attribution-suffix
5853 @vindex gnus-cite-attribution-suffix
5854 Regexp matching the end of an attribution line.
5855
5856 @item gnus-cite-attribution-face
5857 @vindex gnus-cite-attribution-face
5858 Face used for attribution lines. It is merged with the face for the
5859 cited text belonging to the attribution.
5860
5861 @end table
5862
5863
5864 @item W H s
5865 @kindex W H s (Summary)
5866 @vindex gnus-signature-separator
5867 @vindex gnus-signature-face
5868 @findex gnus-article-highlight-signature
5869 Highlight the signature (@code{gnus-article-highlight-signature}).
5870 Everything after @code{gnus-signature-separator} (@pxref{Article
5871 Signature}) in an article will be considered a signature and will be
5872 highlighted with @code{gnus-signature-face}, which is @code{italic} by
5873 default.
5874
5875 @end table
5876
5877 @xref{Customizing Articles}, for how to highlight articles automatically.
5878
5879
5880 @node Article Fontisizing
5881 @subsection Article Fontisizing
5882 @cindex emphasis
5883 @cindex article emphasis
5884
5885 @findex gnus-article-emphasize
5886 @kindex W e (Summary)
5887 People commonly add emphasis to words in news articles by writing things
5888 like @samp{_this_} or @samp{*this*}. Gnus can make this look nicer by
5889 running the article through the @kbd{W e}
5890 (@code{gnus-article-emphasize}) command.
5891
5892 @vindex gnus-emphasis-alist
5893 How the emphasis is computed is controlled by the
5894 @code{gnus-emphasis-alist} variable. This is an alist where the first
5895 element is a regular expression to be matched. The second is a number
5896 that says what regular expression grouping is used to find the entire
5897 emphasized word. The third is a number that says what regexp grouping
5898 should be displayed and highlighted. (The text between these two
5899 groupings will be hidden.) The fourth is the face used for
5900 highlighting.
5901
5902 @lisp
5903 (setq gnus-article-emphasis
5904 '(("_\\(\\w+\\)_" 0 1 gnus-emphasis-underline)
5905 ("\\*\\(\\w+\\)\\*" 0 1 gnus-emphasis-bold)))
5906 @end lisp
5907
5908 @vindex gnus-emphasis-underline
5909 @vindex gnus-emphasis-bold
5910 @vindex gnus-emphasis-italic
5911 @vindex gnus-emphasis-underline-bold
5912 @vindex gnus-emphasis-underline-italic
5913 @vindex gnus-emphasis-bold-italic
5914 @vindex gnus-emphasis-underline-bold-italic
5915 By default, there are seven rules, and they use the following faces:
5916 @code{gnus-emphasis-bold}, @code{gnus-emphasis-italic},
5917 @code{gnus-emphasis-underline}, @code{gnus-emphasis-bold-italic},
5918 @code{gnus-emphasis-underline-italic},
5919 @code{gnus-emphasis-underline-bold}, and
5920 @code{gnus-emphasis-underline-bold-italic}.
5921
5922 If you want to change these faces, you can either use @kbd{M-x
5923 customize}, or you can use @code{copy-face}. For instance, if you want
5924 to make @code{gnus-emphasis-italic} use a red face instead, you could
5925 say something like:
5926
5927 @lisp
5928 (copy-face 'red 'gnus-emphasis-italic)
5929 @end lisp
5930
5931 @xref{Customizing Articles}, for how to fontize articles automatically.
5932
5933
5934 @node Article Hiding
5935 @subsection Article Hiding
5936 @cindex article hiding
5937
5938 Or rather, hiding certain things in each article. There usually is much
5939 too much cruft in most articles.
5940
5941 @table @kbd
5942
5943 @item W W a
5944 @kindex W W a (Summary)
5945 @findex gnus-article-hide
5946 Do quite a lot of hiding on the article buffer
5947 (@kbd{gnus-article-hide}). In particular, this function will hide
5948 headers, PGP, cited text and the signature.
5949
5950 @item W W h
5951 @kindex W W h (Summary)
5952 @findex gnus-article-hide-headers
5953 Hide headers (@code{gnus-article-hide-headers}). @xref{Hiding
5954 Headers}.
5955
5956 @item W W b
5957 @kindex W W b (Summary)
5958 @findex gnus-article-hide-boring-headers
5959 Hide headers that aren't particularly interesting
5960 (@code{gnus-article-hide-boring-headers}). @xref{Hiding Headers}.
5961
5962 @item W W s
5963 @kindex W W s (Summary)
5964 @findex gnus-article-hide-signature
5965 Hide signature (@code{gnus-article-hide-signature}). @xref{Article
5966 Signature}.
5967
5968 @item W W p
5969 @kindex W W p (Summary)
5970 @findex gnus-article-hide-pgp
5971 @vindex gnus-article-hide-pgp-hook
5972 Hide @sc{pgp} signatures (@code{gnus-article-hide-pgp}). The
5973 @code{gnus-article-hide-pgp-hook} hook will be run after a @sc{pgp}
5974 signature has been hidden.
5975
5976 @item W W P
5977 @kindex W W P (Summary)
5978 @findex gnus-article-hide-pem
5979 Hide @sc{pem} (privacy enhanced messages) cruft
5980 (@code{gnus-article-hide-pem}).
5981
5982 @item W W c
5983 @kindex W W c (Summary)
5984 @findex gnus-article-hide-citation
5985 Hide citation (@code{gnus-article-hide-citation}). Some variables for
5986 customizing the hiding:
5987
5988 @table @code
5989
5990 @item gnus-cited-opened-text-button-line-format
5991 @itemx gnus-cited-closed-text-button-line-format
5992 @vindex gnus-cited-closed-text-button-line-format
5993 @vindex gnus-cited-opened-text-button-line-format
5994 Gnus adds buttons to show where the cited text has been hidden, and to
5995 allow toggle hiding the text. The format of the variable is specified
5996 by these format-like variable (@pxref{Formatting Variables}). These
5997 specs are valid:
5998
5999 @table @samp
6000 @item b
6001 Starting point of the hidden text.
6002 @item e
6003 Ending point of the hidden text.
6004 @item l
6005 Number of characters in the hidden region.
6006 @item n
6007 Number of lines of hidden text.
6008 @end table
6009
6010 @item gnus-cited-lines-visible
6011 @vindex gnus-cited-lines-visible
6012 The number of lines at the beginning of the cited text to leave shown.
6013
6014 @end table
6015
6016 @item W W C-c
6017 @kindex W W C-c (Summary)
6018 @findex gnus-article-hide-citation-maybe
6019
6020 Hide citation (@code{gnus-article-hide-citation-maybe}) depending on the
6021 following two variables:
6022
6023 @table @code
6024 @item gnus-cite-hide-percentage
6025 @vindex gnus-cite-hide-percentage
6026 If the cited text is of a bigger percentage than this variable (default
6027 50), hide the cited text.
6028
6029 @item gnus-cite-hide-absolute
6030 @vindex gnus-cite-hide-absolute
6031 The cited text must have at least this length (default 10) before it
6032 is hidden.
6033 @end table
6034
6035 @item W W C
6036 @kindex W W C (Summary)
6037 @findex gnus-article-hide-citation-in-followups
6038 Hide cited text in articles that aren't roots
6039 (@code{gnus-article-hide-citation-in-followups}). This isn't very
6040 useful as an interactive command, but might be a handy function to stick
6041 in @code{gnus-article-display-hook} (@pxref{Customizing Articles}).
6042
6043 @end table
6044
6045 All these ``hiding'' commands are toggles, but if you give a negative
6046 prefix to these commands, they will show what they have previously
6047 hidden. If you give a positive prefix, they will always hide.
6048
6049 Also @pxref{Article Highlighting} for further variables for
6050 citation customization.
6051
6052 @xref{Customizing Articles}, for how to hide article elements
6053 automatically.
6054
6055
6056 @node Article Washing
6057 @subsection Article Washing
6058 @cindex washing
6059 @cindex article washing
6060
6061 We call this ``article washing'' for a really good reason. Namely, the
6062 @kbd{A} key was taken, so we had to use the @kbd{W} key instead.
6063
6064 @dfn{Washing} is defined by us as ``changing something from something to
6065 something else'', but normally results in something looking better.
6066 Cleaner, perhaps.
6067
6068 @table @kbd
6069
6070 @item W l
6071 @kindex W l (Summary)
6072 @findex gnus-summary-stop-page-breaking
6073 Remove page breaks from the current article
6074 (@code{gnus-summary-stop-page-breaking}). @xref{Misc Article}, for page
6075 delimiters.
6076
6077 @item W r
6078 @kindex W r (Summary)
6079 @findex gnus-summary-caesar-message
6080 @c @icon{gnus-summary-caesar-message}
6081 Do a Caesar rotate (rot13) on the article buffer
6082 (@code{gnus-summary-caesar-message}).
6083 Unreadable articles that tell you to read them with Caesar rotate or rot13.
6084 (Typically offensive jokes and such.)
6085
6086 It's commonly called ``rot13'' because each letter is rotated 13
6087 positions in the alphabet, e. g. @samp{B} (letter #2) -> @samp{O} (letter
6088 #15). It is sometimes referred to as ``Caesar rotate'' because Caesar
6089 is rumored to have employed this form of, uh, somewhat weak encryption.
6090
6091 @item W t
6092 @kindex W t (Summary)
6093 @findex gnus-summary-toggle-header
6094 Toggle whether to display all headers in the article buffer
6095 (@code{gnus-summary-toggle-header}).
6096
6097 @item W v
6098 @kindex W v (Summary)
6099 @findex gnus-summary-verbose-header
6100 Toggle whether to display all headers in the article buffer permanently
6101 (@code{gnus-summary-verbose-header}).
6102
6103 @item W m
6104 @kindex W m (Summary)
6105 @findex gnus-summary-toggle-mime
6106 Toggle whether to run the article through @sc{mime} before displaying
6107 (@code{gnus-summary-toggle-mime}).
6108
6109 @item W o
6110 @kindex W o (Summary)
6111 @findex gnus-article-treat-overstrike
6112 Treat overstrike (@code{gnus-article-treat-overstrike}).
6113
6114 @item W d
6115 @kindex W d (Summary)
6116 @findex gnus-article-treat-dumbquotes
6117 Treat M******** sm*rtq**t*s (@code{gnus-article-treat-dumbquotes}).
6118
6119 @item W w
6120 @kindex W w (Summary)
6121 @findex gnus-article-fill-cited-article
6122 Do word wrap (@code{gnus-article-fill-cited-article}). If you use this
6123 function in @code{gnus-article-display-hook}, it should be run fairly
6124 late and certainly after any highlighting.
6125
6126 You can give the command a numerical prefix to specify the width to use
6127 when filling.
6128
6129 @item W c
6130 @kindex W c (Summary)
6131 @findex gnus-article-remove-cr
6132 Remove CR (i. e., @samp{^M}s on the end of the lines)
6133 (@code{gnus-article-remove-cr}).
6134
6135 @item W q
6136 @kindex W q (Summary)
6137 @findex gnus-article-de-quoted-unreadable
6138 Treat quoted-printable (@code{gnus-article-de-quoted-unreadable}).
6139 Quoted-Printable is one common @sc{mime} encoding employed when sending
6140 non-ASCII (i. e., 8-bit) articles. It typically makes strings like
6141 @samp{déjà vu} look like @samp{d=E9j=E0 vu}, which doesn't look very
6142 readable to me.
6143
6144 @item W f
6145 @kindex W f (Summary)
6146 @cindex x-face
6147 @findex gnus-article-display-x-face
6148 @findex gnus-article-x-face-command
6149 @vindex gnus-article-x-face-command
6150 @vindex gnus-article-x-face-too-ugly
6151 Look for and display any X-Face headers
6152 (@code{gnus-article-display-x-face}). The command executed by this
6153 function is given by the @code{gnus-article-x-face-command} variable.
6154 If this variable is a string, this string will be executed in a
6155 sub-shell. If it is a function, this function will be called with the
6156 face as the argument. If the @code{gnus-article-x-face-too-ugly} (which
6157 is a regexp) matches the @code{From} header, the face will not be shown.
6158 The default action under Emacs is to fork off an @code{xv} to view the
6159 face; under XEmacs the default action is to display the face before the
6160 @code{From} header. (It's nicer if XEmacs has been compiled with X-Face
6161 support---that will make display somewhat faster. If there's no native
6162 X-Face support, Gnus will try to convert the @code{X-Face} header using
6163 external programs from the @code{pbmplus} package and friends.) If you
6164 want to have this function in the display hook, it should probably come
6165 last.
6166
6167 @item W b
6168 @kindex W b (Summary)
6169 @findex gnus-article-add-buttons
6170 Add clickable buttons to the article (@code{gnus-article-add-buttons}).
6171 @xref{Article Buttons}.
6172
6173 @item W B
6174 @kindex W B (Summary)
6175 @findex gnus-article-add-buttons-to-head
6176 Add clickable buttons to the article headers
6177 (@code{gnus-article-add-buttons-to-head}).
6178
6179 @item W E l
6180 @kindex W E l (Summary)
6181 @findex gnus-article-strip-leading-blank-lines
6182 Remove all blank lines from the beginning of the article
6183 (@code{gnus-article-strip-leading-blank-lines}).
6184
6185 @item W E m
6186 @kindex W E m (Summary)
6187 @findex gnus-article-strip-multiple-blank-lines
6188 Replace all blank lines with empty lines and then all multiple empty
6189 lines with a single empty line.
6190 (@code{gnus-article-strip-multiple-blank-lines}).
6191
6192 @item W E t
6193 @kindex W E t (Summary)
6194 @findex gnus-article-remove-trailing-blank-lines
6195 Remove all blank lines at the end of the article
6196 (@code{gnus-article-remove-trailing-blank-lines}).
6197
6198 @item W E a
6199 @kindex W E a (Summary)
6200 @findex gnus-article-strip-blank-lines
6201 Do all the three commands above
6202 (@code{gnus-article-strip-blank-lines}).
6203
6204 @item W E A
6205 @kindex W E A (Summary)
6206 @findex gnus-article-strip-all-blank-lines
6207 Remove all blank lines
6208 (@code{gnus-article-strip-all-blank-lines}).
6209
6210 @item W E s
6211 @kindex W E s (Summary)
6212 @findex gnus-article-strip-leading-space
6213 Remove all white space from the beginning of all lines of the article
6214 body (@code{gnus-article-strip-leading-space}).
6215
6216 @end table
6217
6218 @xref{Customizing Articles}, for how to wash articles automatically.
6219
6220
6221 @node Article Buttons
6222 @subsection Article Buttons
6223 @cindex buttons
6224
6225 People often include references to other stuff in articles, and it would
6226 be nice if Gnus could just fetch whatever it is that people talk about
6227 with the minimum of fuzz when you hit @kbd{RET} or use the middle mouse
6228 button on these references.
6229
6230 Gnus adds @dfn{buttons} to certain standard references by default:
6231 Well-formed URLs, mail addresses and Message-IDs. This is controlled by
6232 two variables, one that handles article bodies and one that handles
6233 article heads:
6234
6235 @table @code
6236
6237 @item gnus-button-alist
6238 @vindex gnus-button-alist
6239 This is an alist where each entry has this form:
6240
6241 @lisp
6242 (REGEXP BUTTON-PAR USE-P FUNCTION DATA-PAR)
6243 @end lisp
6244
6245 @table @var
6246
6247 @item regexp
6248 All text that match this regular expression will be considered an
6249 external reference. Here's a typical regexp that matches embedded URLs:
6250 @samp{<URL:\\([^\n\r>]*\\)>}.
6251
6252 @item button-par
6253 Gnus has to know which parts of the matches is to be highlighted. This
6254 is a number that says what sub-expression of the regexp is to be
6255 highlighted. If you want it all highlighted, you use 0 here.
6256
6257 @item use-p
6258 This form will be @code{eval}ed, and if the result is non-@code{nil},
6259 this is considered a match. This is useful if you want extra sifting to
6260 avoid false matches.
6261
6262 @item function
6263 This function will be called when you click on this button.
6264
6265 @item data-par
6266 As with @var{button-par}, this is a sub-expression number, but this one
6267 says which part of the match is to be sent as data to @var{function}.
6268
6269 @end table
6270
6271 So the full entry for buttonizing URLs is then
6272
6273 @lisp
6274 ("<URL:\\([^\n\r>]*\\)>" 0 t gnus-button-url 1)
6275 @end lisp
6276
6277 @item gnus-header-button-alist
6278 @vindex gnus-header-button-alist
6279 This is just like the other alist, except that it is applied to the
6280 article head only, and that each entry has an additional element that is
6281 used to say what headers to apply the buttonize coding to:
6282
6283 @lisp
6284 (HEADER REGEXP BUTTON-PAR USE-P FUNCTION DATA-PAR)
6285 @end lisp
6286
6287 @var{HEADER} is a regular expression.
6288
6289 @item gnus-button-url-regexp
6290 @vindex gnus-button-url-regexp
6291 A regular expression that matches embedded URLs. It is used in the
6292 default values of the variables above.
6293
6294 @item gnus-article-button-face
6295 @vindex gnus-article-button-face
6296 Face used on buttons.
6297
6298 @item gnus-article-mouse-face
6299 @vindex gnus-article-mouse-face
6300 Face used when the mouse cursor is over a button.
6301
6302 @end table
6303
6304 @xref{Customizing Articles}, for how to buttonize articles automatically.
6305
6306
6307 @node Article Date
6308 @subsection Article Date
6309
6310 The date is most likely generated in some obscure timezone you've never
6311 heard of, so it's quite nice to be able to find out what the time was
6312 when the article was sent.
6313
6314 @table @kbd
6315
6316 @item W T u
6317 @kindex W T u (Summary)
6318 @findex gnus-article-date-ut
6319 Display the date in UT (aka. GMT, aka ZULU)
6320 (@code{gnus-article-date-ut}).
6321
6322 @item W T i
6323 @kindex W T i (Summary)
6324 @findex gnus-article-date-iso8601
6325 @cindex ISO 8601
6326 Display the date in international format, aka. ISO 8601
6327 (@code{gnus-article-date-iso8601}).
6328
6329 @item W T l
6330 @kindex W T l (Summary)
6331 @findex gnus-article-date-local
6332 Display the date in the local timezone (@code{gnus-article-date-local}).
6333
6334 @item W T s
6335 @kindex W T s (Summary)
6336 @vindex gnus-article-time-format
6337 @findex gnus-article-date-user
6338 @findex format-time-string
6339 Display the date using a user-defined format
6340 (@code{gnus-article-date-user}). The format is specified by the
6341 @code{gnus-article-time-format} variable, and is a string that's passed
6342 to @code{format-time-string}. See the documentation of that variable
6343 for a list of possible format specs.
6344
6345 @item W T e
6346 @kindex W T e (Summary)
6347 @findex gnus-article-date-lapsed
6348 @findex gnus-start-date-timer
6349 @findex gnus-stop-date-timer
6350 Say how much time has elapsed between the article was posted and now
6351 (@code{gnus-article-date-lapsed}). If you want to have this line
6352 updated continually, you can put
6353
6354 @lisp
6355 (gnus-start-date-timer)
6356 @end lisp
6357
6358 in your @file{.gnus.el} file, or you can run it off of some hook. If
6359 you want to stop the timer, you can use the @code{gnus-stop-date-timer}
6360 command.
6361
6362 @item W T o
6363 @kindex W T o (Summary)
6364 @findex gnus-article-date-original
6365 Display the original date (@code{gnus-article-date-original}). This can
6366 be useful if you normally use some other conversion function and are
6367 worried that it might be doing something totally wrong. Say, claiming
6368 that the article was posted in 1854. Although something like that is
6369 @emph{totally} impossible. Don't you trust me? *titter*
6370
6371 @end table
6372
6373 @xref{Customizing Articles}, for how to display the date in your
6374 preferred format automatically.
6375
6376
6377 @node Article Signature
6378 @subsection Article Signature
6379 @cindex signatures
6380 @cindex article signature
6381
6382 @vindex gnus-signature-separator
6383 Each article is divided into two parts---the head and the body. The
6384 body can be divided into a signature part and a text part. The variable
6385 that says what is to be considered a signature is
6386 @code{gnus-signature-separator}. This is normally the standard
6387 @samp{^-- $} as mandated by son-of-RFC 1036. However, many people use
6388 non-standard signature separators, so this variable can also be a list
6389 of regular expressions to be tested, one by one. (Searches are done
6390 from the end of the body towards the beginning.) One likely value is:
6391
6392 @lisp
6393 (setq gnus-signature-separator
6394 '("^-- $" ; The standard
6395 "^-- *$" ; A common mangling
6396 "^-------*$" ; Many people just use a looong
6397 ; line of dashes. Shame!
6398 "^ *--------*$" ; Double-shame!
6399 "^________*$" ; Underscores are also popular
6400 "^========*$")) ; Pervert!
6401 @end lisp
6402
6403 The more permissive you are, the more likely it is that you'll get false
6404 positives.
6405
6406 @vindex gnus-signature-limit
6407 @code{gnus-signature-limit} provides a limit to what is considered a
6408 signature.
6409
6410 @enumerate
6411 @item
6412 If it is an integer, no signature may be longer (in characters) than
6413 that integer.
6414 @item
6415 If it is a floating point number, no signature may be longer (in lines)
6416 than that number.
6417 @item
6418 If it is a function, the function will be called without any parameters,
6419 and if it returns @code{nil}, there is no signature in the buffer.
6420 @item
6421 If it is a string, it will be used as a regexp. If it matches, the text
6422 in question is not a signature.
6423 @end enumerate
6424
6425 This variable can also be a list where the elements may be of the types
6426 listed above. Here's an example:
6427
6428 @lisp
6429 (setq gnus-signature-limit
6430 '(200.0 "^---*Forwarded article"))
6431 @end lisp
6432
6433 This means that if there are more than 200 lines after the signature
6434 separator, or the text after the signature separator is matched by
6435 the regular expression @samp{^---*Forwarded article}, then it isn't a
6436 signature after all.
6437
6438
6439 @node Article Commands
6440 @section Article Commands
6441
6442 @table @kbd
6443
6444 @item A P
6445 @cindex PostScript
6446 @cindex printing
6447 @kindex A P (Summary)
6448 @vindex gnus-ps-print-hook
6449 @findex gnus-summary-print-article
6450 Generate and print a PostScript image of the article buffer
6451 (@code{gnus-summary-print-article}). @code{gnus-ps-print-hook} will be
6452 run just before printing the buffer.
6453
6454 @end table
6455
6456
6457 @node Summary Sorting
6458 @section Summary Sorting
6459 @cindex summary sorting
6460
6461 You can have the summary buffer sorted in various ways, even though I
6462 can't really see why you'd want that.
6463
6464 @table @kbd
6465
6466 @item C-c C-s C-n
6467 @kindex C-c C-s C-n (Summary)
6468 @findex gnus-summary-sort-by-number
6469 Sort by article number (@code{gnus-summary-sort-by-number}).
6470
6471 @item C-c C-s C-a
6472 @kindex C-c C-s C-a (Summary)
6473 @findex gnus-summary-sort-by-author
6474 Sort by author (@code{gnus-summary-sort-by-author}).
6475
6476 @item C-c C-s C-s
6477 @kindex C-c C-s C-s (Summary)
6478 @findex gnus-summary-sort-by-subject
6479 Sort by subject (@code{gnus-summary-sort-by-subject}).
6480
6481 @item C-c C-s C-d
6482 @kindex C-c C-s C-d (Summary)
6483 @findex gnus-summary-sort-by-date
6484 Sort by date (@code{gnus-summary-sort-by-date}).
6485
6486 @item C-c C-s C-l
6487 @kindex C-c C-s C-l (Summary)
6488 @findex gnus-summary-sort-by-lines
6489 Sort by lines (@code{gnus-summary-sort-by-lines}).
6490
6491 @item C-c C-s C-i
6492 @kindex C-c C-s C-i (Summary)
6493 @findex gnus-summary-sort-by-score
6494 Sort by score (@code{gnus-summary-sort-by-score}).
6495 @end table
6496
6497 These functions will work both when you use threading and when you don't
6498 use threading. In the latter case, all summary lines will be sorted,
6499 line by line. In the former case, sorting will be done on a
6500 root-by-root basis, which might not be what you were looking for. To
6501 toggle whether to use threading, type @kbd{T T} (@pxref{Thread
6502 Commands}).
6503
6504
6505 @node Finding the Parent
6506 @section Finding the Parent
6507 @cindex parent articles
6508 @cindex referring articles
6509
6510 @table @kbd
6511 @item ^
6512 @kindex ^ (Summary)
6513 @findex gnus-summary-refer-parent-article
6514 If you'd like to read the parent of the current article, and it is not
6515 displayed in the summary buffer, you might still be able to. That is,
6516 if the current group is fetched by @sc{nntp}, the parent hasn't expired
6517 and the @code{References} in the current article are not mangled, you
6518 can just press @kbd{^} or @kbd{A r}
6519 (@code{gnus-summary-refer-parent-article}). If everything goes well,
6520 you'll get the parent. If the parent is already displayed in the
6521 summary buffer, point will just move to this article.
6522
6523 If given a positive numerical prefix, fetch that many articles back into
6524 the ancestry. If given a negative numerical prefix, fetch just that
6525 ancestor. So if you say @kbd{3 ^}, Gnus will fetch the parent, the
6526 grandparent and the grandgrandparent of the current article. If you say
6527 @kbd{-3 ^}, Gnus will only fetch the grandgrandparent of the current
6528 article.
6529
6530 @item A R (Summary)
6531 @findex gnus-summary-refer-references
6532 @kindex A R (Summary)
6533 Fetch all articles mentioned in the @code{References} header of the
6534 article (@code{gnus-summary-refer-references}).
6535
6536 @item A T (Summary)
6537 @findex gnus-summary-refer-thread
6538 @kindex A T (Summary)
6539 Display the full thread where the current article appears
6540 (@code{gnus-summary-refer-thread}). This command has to fetch all the
6541 headers in the current group to work, so it usually takes a while. If
6542 you do it often, you may consider setting @code{gnus-fetch-old-headers}
6543 to @code{invisible} (@pxref{Filling In Threads}). This won't have any
6544 visible effects normally, but it'll make this command work a whole lot
6545 faster. Of course, it'll make group entry somewhat slow.
6546
6547 @vindex gnus-refer-thread-limit
6548 The @code{gnus-refer-thread-limit} variable says how many old (i. e.,
6549 articles before the first displayed in the current group) headers to
6550 fetch when doing this command. The default is 200. If @code{t}, all
6551 the available headers will be fetched. This variable can be overridden
6552 by giving the @kbd{A T} command a numerical prefix.
6553
6554 @item M-^ (Summary)
6555 @findex gnus-summary-refer-article
6556 @kindex M-^ (Summary)
6557 @cindex Message-ID
6558 @cindex fetching by Message-ID
6559 You can also ask the @sc{nntp} server for an arbitrary article, no
6560 matter what group it belongs to. @kbd{M-^}
6561 (@code{gnus-summary-refer-article}) will ask you for a
6562 @code{Message-ID}, which is one of those long, hard-to-read thingies
6563 that look something like @samp{<38o6up$6f2@@hymir.ifi.uio.no>}. You
6564 have to get it all exactly right. No fuzzy searches, I'm afraid.
6565 @end table
6566
6567 The current select method will be used when fetching by
6568 @code{Message-ID} from non-news select method, but you can override this
6569 by giving this command a prefix.
6570
6571 @vindex gnus-refer-article-method
6572 If the group you are reading is located on a backend that does not
6573 support fetching by @code{Message-ID} very well (like @code{nnspool}),
6574 you can set @code{gnus-refer-article-method} to an @sc{nntp} method. It
6575 would, perhaps, be best if the @sc{nntp} server you consult is the one
6576 updating the spool you are reading from, but that's not really
6577 necessary.
6578
6579 Most of the mail backends support fetching by @code{Message-ID}, but do
6580 not do a particularly excellent job at it. That is, @code{nnmbox} and
6581 @code{nnbabyl} are able to locate articles from any groups, while
6582 @code{nnml} and @code{nnfolder} are only able to locate articles that
6583 have been posted to the current group. (Anything else would be too time
6584 consuming.) @code{nnmh} does not support this at all.
6585
6586
6587 @node Alternative Approaches
6588 @section Alternative Approaches
6589
6590 Different people like to read news using different methods. This being
6591 Gnus, we offer a small selection of minor modes for the summary buffers.
6592
6593 @menu
6594 * Pick and Read:: First mark articles and then read them.
6595 * Binary Groups:: Auto-decode all articles.
6596 @end menu
6597
6598
6599 @node Pick and Read
6600 @subsection Pick and Read
6601 @cindex pick and read
6602
6603 Some newsreaders (like @code{nn} and, uhm, @code{Netnews} on VM/CMS) use
6604 a two-phased reading interface. The user first marks in a summary
6605 buffer the articles she wants to read. Then she starts reading the
6606 articles with just an article buffer displayed.
6607
6608 @findex gnus-pick-mode
6609 @kindex M-x gnus-pick-mode
6610 Gnus provides a summary buffer minor mode that allows
6611 this---@code{gnus-pick-mode}. This basically means that a few process
6612 mark commands become one-keystroke commands to allow easy marking, and
6613 it provides one additional command for switching to the summary buffer.
6614
6615 Here are the available keystrokes when using pick mode:
6616
6617 @table @kbd
6618 @item .
6619 @kindex . (Pick)
6620 @findex gnus-pick-article-or-thread
6621 Pick the article or thread on the current line
6622 (@code{gnus-pick-article-or-thread}). If the variable
6623 @code{gnus-thread-hide-subtree} is true, then this key selects the
6624 entire thread when used at the first article of the thread. Otherwise,
6625 it selects just the article. If given a numerical prefix, go to that
6626 thread or article and pick it. (The line number is normally displayed
6627 at the beginning of the summary pick lines.)
6628
6629 @item SPACE
6630 @kindex SPACE (Pick)
6631 @findex gnus-pick-next-page
6632 Scroll the summary buffer up one page (@code{gnus-pick-next-page}). If
6633 at the end of the buffer, start reading the picked articles.
6634
6635 @item u
6636 @kindex u (Pick)
6637 @findex gnus-pick-unmark-article-or-thread.
6638 Unpick the thread or article
6639 (@code{gnus-pick-unmark-article-or-thread}). If the variable
6640 @code{gnus-thread-hide-subtree} is true, then this key unpicks the
6641 thread if used at the first article of the thread. Otherwise it unpicks
6642 just the article. You can give this key a numerical prefix to unpick
6643 the thread or article at that line.
6644
6645 @item RET
6646 @kindex RET (Pick)
6647 @findex gnus-pick-start-reading
6648 @vindex gnus-pick-display-summary
6649 Start reading the picked articles (@code{gnus-pick-start-reading}). If
6650 given a prefix, mark all unpicked articles as read first. If
6651 @code{gnus-pick-display-summary} is non-@code{nil}, the summary buffer
6652 will still be visible when you are reading.
6653
6654 @end table
6655
6656 All the normal summary mode commands are still available in the
6657 pick-mode, with the exception of @kbd{u}. However @kbd{!} is available
6658 which is mapped to the same function
6659 @code{gnus-summary-tick-article-forward}.
6660
6661 If this sounds like a good idea to you, you could say:
6662
6663 @lisp
6664 (add-hook 'gnus-summary-mode-hook 'gnus-pick-mode)
6665 @end lisp
6666
6667 @vindex gnus-pick-mode-hook
6668 @code{gnus-pick-mode-hook} is run in pick minor mode buffers.
6669
6670 @vindex gnus-mark-unpicked-articles-as-read
6671 If @code{gnus-mark-unpicked-articles-as-read} is non-@code{nil}, mark
6672 all unpicked articles as read. The default is @code{nil}.
6673
6674 @vindex gnus-summary-pick-line-format
6675 The summary line format in pick mode is slightly different from the
6676 standard format. At the beginning of each line the line number is
6677 displayed. The pick mode line format is controlled by the
6678 @code{gnus-summary-pick-line-format} variable (@pxref{Formatting
6679 Variables}). It accepts the same format specs that
6680 @code{gnus-summary-line-format} does (@pxref{Summary Buffer Lines}).
6681
6682
6683 @node Binary Groups
6684 @subsection Binary Groups
6685 @cindex binary groups
6686
6687 @findex gnus-binary-mode
6688 @kindex M-x gnus-binary-mode
6689 If you spend much time in binary groups, you may grow tired of hitting
6690 @kbd{X u}, @kbd{n}, @kbd{RET} all the time. @kbd{M-x gnus-binary-mode}
6691 is a minor mode for summary buffers that makes all ordinary Gnus article
6692 selection functions uudecode series of articles and display the result
6693 instead of just displaying the articles the normal way.
6694
6695 @kindex g (Binary)
6696 @findex gnus-binary-show-article
6697 The only way, in fact, to see the actual articles is the @kbd{g}
6698 command, when you have turned on this mode
6699 (@code{gnus-binary-show-article}).
6700
6701 @vindex gnus-binary-mode-hook
6702 @code{gnus-binary-mode-hook} is called in binary minor mode buffers.
6703
6704
6705 @node Tree Display
6706 @section Tree Display
6707 @cindex trees
6708
6709 @vindex gnus-use-trees
6710 If you don't like the normal Gnus summary display, you might try setting
6711 @code{gnus-use-trees} to @code{t}. This will create (by default) an
6712 additional @dfn{tree buffer}. You can execute all summary mode commands
6713 in the tree buffer.
6714
6715 There are a few variables to customize the tree display, of course:
6716
6717 @table @code
6718 @item gnus-tree-mode-hook
6719 @vindex gnus-tree-mode-hook
6720 A hook called in all tree mode buffers.
6721
6722 @item gnus-tree-mode-line-format
6723 @vindex gnus-tree-mode-line-format
6724 A format string for the mode bar in the tree mode buffers (@pxref{Mode
6725 Line Formatting}). The default is @samp{Gnus: %%b %S %Z}. For a list
6726 of valid specs, @pxref{Summary Buffer Mode Line}.
6727
6728 @item gnus-selected-tree-face
6729 @vindex gnus-selected-tree-face
6730 Face used for highlighting the selected article in the tree buffer. The
6731 default is @code{modeline}.
6732
6733 @item gnus-tree-line-format
6734 @vindex gnus-tree-line-format
6735 A format string for the tree nodes. The name is a bit of a misnomer,
6736 though---it doesn't define a line, but just the node. The default value
6737 is @samp{%(%[%3,3n%]%)}, which displays the first three characters of
6738 the name of the poster. It is vital that all nodes are of the same
6739 length, so you @emph{must} use @samp{%4,4n}-like specifiers.
6740
6741 Valid specs are:
6742
6743 @table @samp
6744 @item n
6745 The name of the poster.
6746 @item f
6747 The @code{From} header.
6748 @item N
6749 The number of the article.
6750 @item [
6751 The opening bracket.
6752 @item ]
6753 The closing bracket.
6754 @item s
6755 The subject.
6756 @end table
6757
6758 @xref{Formatting Variables}.
6759
6760 Variables related to the display are:
6761
6762 @table @code
6763 @item gnus-tree-brackets
6764 @vindex gnus-tree-brackets
6765 This is used for differentiating between ``real'' articles and
6766 ``sparse'' articles. The format is @var{((real-open . real-close)
6767 (sparse-open . sparse-close) (dummy-open . dummy-close))}, and the
6768 default is @code{((?[ . ?]) (?( . ?)) (?@{ . ?@}) (?< . ?>))}.
6769
6770 @item gnus-tree-parent-child-edges
6771 @vindex gnus-tree-parent-child-edges
6772 This is a list that contains the characters used for connecting parent
6773 nodes to their children. The default is @code{(?- ?\\ ?|)}.
6774
6775 @end table
6776
6777 @item gnus-tree-minimize-window
6778 @vindex gnus-tree-minimize-window
6779 If this variable is non-@code{nil}, Gnus will try to keep the tree
6780 buffer as small as possible to allow more room for the other Gnus
6781 windows. If this variable is a number, the tree buffer will never be
6782 higher than that number. The default is @code{t}. Note that if you
6783 have several windows displayed side-by-side in a frame and the tree
6784 buffer is one of these, minimizing the tree window will also resize all
6785 other windows displayed next to it.
6786
6787 @item gnus-generate-tree-function
6788 @vindex gnus-generate-tree-function
6789 @findex gnus-generate-horizontal-tree
6790 @findex gnus-generate-vertical-tree
6791 The function that actually generates the thread tree. Two predefined
6792 functions are available: @code{gnus-generate-horizontal-tree} and
6793 @code{gnus-generate-vertical-tree} (which is the default).
6794
6795 @end table
6796
6797 Here's an example from a horizontal tree buffer:
6798
6799 @example
6800 @{***@}-(***)-[odd]-[Gun]
6801 | \[Jan]
6802 | \[odd]-[Eri]
6803 | \(***)-[Eri]
6804 | \[odd]-[Paa]
6805 \[Bjo]
6806 \[Gun]
6807 \[Gun]-[Jor]
6808 @end example
6809
6810 Here's the same thread displayed in a vertical tree buffer:
6811
6812 @example
6813 @{***@}
6814 |--------------------------\-----\-----\
6815 (***) [Bjo] [Gun] [Gun]
6816 |--\-----\-----\ |
6817 [odd] [Jan] [odd] (***) [Jor]
6818 | | |--\
6819 [Gun] [Eri] [Eri] [odd]
6820 |
6821 [Paa]
6822 @end example
6823
6824 If you're using horizontal trees, it might be nice to display the trees
6825 side-by-side with the summary buffer. You could add something like the
6826 following to your @file{.gnus.el} file:
6827
6828 @lisp
6829 (setq gnus-use-trees t
6830 gnus-generate-tree-function 'gnus-generate-horizontal-tree
6831 gnus-tree-minimize-window nil)
6832 (gnus-add-configuration
6833 '(article
6834 (vertical 1.0
6835 (horizontal 0.25
6836 (summary 0.75 point)
6837 (tree 1.0))
6838 (article 1.0))))
6839 @end lisp
6840
6841 @xref{Windows Configuration}.
6842
6843
6844 @node Mail Group Commands
6845 @section Mail Group Commands
6846 @cindex mail group commands
6847
6848 Some commands only make sense in mail groups. If these commands are
6849 invalid in the current group, they will raise a hell and let you know.
6850
6851 All these commands (except the expiry and edit commands) use the
6852 process/prefix convention (@pxref{Process/Prefix}).
6853
6854 @table @kbd
6855
6856 @item B e
6857 @kindex B e (Summary)
6858 @findex gnus-summary-expire-articles
6859 Expire all expirable articles in the group
6860 (@code{gnus-summary-expire-articles}).
6861
6862 @item B M-C-e
6863 @kindex B M-C-e (Summary)
6864 @findex gnus-summary-expire-articles-now
6865 Delete all the expirable articles in the group
6866 (@code{gnus-summary-expire-articles-now}). This means that @strong{all}
6867 articles eligible for expiry in the current group will
6868 disappear forever into that big @file{/dev/null} in the sky.
6869
6870 @item B DEL
6871 @kindex B DEL (Summary)
6872 @findex gnus-summary-delete-article
6873 @c @icon{gnus-summary-mail-delete}
6874 Delete the mail article. This is ``delete'' as in ``delete it from your
6875 disk forever and ever, never to return again.'' Use with caution.
6876 (@code{gnus-summary-delete-article}).
6877
6878 @item B m
6879 @kindex B m (Summary)
6880 @cindex move mail
6881 @findex gnus-summary-move-article
6882 Move the article from one mail group to another
6883 (@code{gnus-summary-move-article}).
6884
6885 @item B c
6886 @kindex B c (Summary)
6887 @cindex copy mail
6888 @findex gnus-summary-copy-article
6889 @c @icon{gnus-summary-mail-copy}
6890 Copy the article from one group (mail group or not) to a mail group
6891 (@code{gnus-summary-copy-article}).
6892
6893 @item B B
6894 @kindex B B (Summary)
6895 @cindex crosspost mail
6896 @findex gnus-summary-crosspost-article
6897 Crosspost the current article to some other group
6898 (@code{gnus-summary-crosspost-article}). This will create a new copy of
6899 the article in the other group, and the Xref headers of the article will
6900 be properly updated.
6901
6902 @item B i
6903 @kindex B i (Summary)
6904 @findex gnus-summary-import-article
6905 Import an arbitrary file into the current mail newsgroup
6906 (@code{gnus-summary-import-article}). You will be prompted for a file
6907 name, a @code{From} header and a @code{Subject} header.
6908
6909 @item B r
6910 @kindex B r (Summary)
6911 @findex gnus-summary-respool-article
6912 Respool the mail article (@code{gnus-summary-respool-article}).
6913 @code{gnus-summary-respool-default-method} will be used as the default
6914 select method when respooling. This variable is @code{nil} by default,
6915 which means that the current group select method will be used instead.
6916
6917 @item B w
6918 @itemx e
6919 @kindex B w (Summary)
6920 @kindex e (Summary)
6921 @findex gnus-summary-edit-article
6922 @kindex C-c C-c (Article)
6923 Edit the current article (@code{gnus-summary-edit-article}). To finish
6924 editing and make the changes permanent, type @kbd{C-c C-c}
6925 (@kbd{gnus-summary-edit-article-done}). If you give a prefix to the
6926 @kbd{C-c C-c} command, Gnus won't re-highlight the article.
6927
6928 @item B q
6929 @kindex B q (Summary)
6930 @findex gnus-summary-respool-query
6931 If you want to re-spool an article, you might be curious as to what group
6932 the article will end up in before you do the re-spooling. This command
6933 will tell you (@code{gnus-summary-respool-query}).
6934
6935 @item B t
6936 @kindex B t (Summary)
6937 @findex gnus-summary-respool-trace
6938 Similarly, this command will display all fancy splitting patterns used
6939 when repooling, if any (@code{gnus-summary-respool-trace}).
6940
6941 @item B p
6942 @kindex B p (Summary)
6943 @findex gnus-summary-article-posted-p
6944 Some people have a tendency to send you "courtesy" copies when they
6945 follow up to articles you have posted. These usually have a
6946 @code{Newsgroups} header in them, but not always. This command
6947 (@code{gnus-summary-article-posted-p}) will try to fetch the current
6948 article from your news server (or rather, from
6949 @code{gnus-refer-article-method} or @code{gnus-select-method}) and will
6950 report back whether it found the article or not. Even if it says that
6951 it didn't find the article, it may have been posted anyway---mail
6952 propagation is much faster than news propagation, and the news copy may
6953 just not have arrived yet.
6954
6955 @end table
6956
6957 @vindex gnus-move-split-methods
6958 @cindex moving articles
6959 If you move (or copy) articles regularly, you might wish to have Gnus
6960 suggest where to put the articles. @code{gnus-move-split-methods} is a
6961 variable that uses the same syntax as @code{gnus-split-methods}
6962 (@pxref{Saving Articles}). You may customize that variable to create
6963 suggestions you find reasonable.
6964
6965 @lisp
6966 (setq gnus-move-split-methods
6967 '(("^From:.*Lars Magne" "nnml:junk")
6968 ("^Subject:.*gnus" "nnfolder:important")
6969 (".*" "nnml:misc")))
6970 @end lisp
6971
6972
6973 @node Various Summary Stuff
6974 @section Various Summary Stuff
6975
6976 @menu
6977 * Summary Group Information:: Information oriented commands.
6978 * Searching for Articles:: Multiple article commands.
6979 * Summary Generation Commands:: (Re)generating the summary buffer.
6980 * Really Various Summary Commands:: Those pesky non-conformant commands.
6981 @end menu
6982
6983 @table @code
6984 @vindex gnus-summary-mode-hook
6985 @item gnus-summary-mode-hook
6986 This hook is called when creating a summary mode buffer.
6987
6988 @vindex gnus-summary-generate-hook
6989 @item gnus-summary-generate-hook
6990 This is called as the last thing before doing the threading and the
6991 generation of the summary buffer. It's quite convenient for customizing
6992 the threading variables based on what data the newsgroup has. This hook
6993 is called from the summary buffer after most summary buffer variables
6994 have been set.
6995
6996 @vindex gnus-summary-prepare-hook
6997 @item gnus-summary-prepare-hook
6998 It is called after the summary buffer has been generated. You might use
6999 it to, for instance, highlight lines or modify the look of the buffer in
7000 some other ungodly manner. I don't care.
7001
7002 @vindex gnus-summary-ignore-duplicates
7003 @item gnus-summary-ignore-duplicates
7004 When Gnus discovers two articles that have the same @code{Message-ID},
7005 it has to do something drastic. No articles are allowed to have the
7006 same @code{Message-ID}, but this may happen when reading mail from some
7007 sources. Gnus allows you to customize what happens with this variable.
7008 If it is @code{nil} (which is the default), Gnus will rename the
7009 @code{Message-ID} (for display purposes only) and display the article as
7010 any other article. If this variable is @code{t}, it won't display the
7011 article---it'll be as if it never existed.
7012
7013 @end table
7014
7015
7016 @node Summary Group Information
7017 @subsection Summary Group Information
7018
7019 @table @kbd
7020
7021 @item H f
7022 @kindex H f (Summary)
7023 @findex gnus-summary-fetch-faq
7024 @vindex gnus-group-faq-directory
7025 Try to fetch the FAQ (list of frequently asked questions) for the
7026 current group (@code{gnus-summary-fetch-faq}). Gnus will try to get the
7027 FAQ from @code{gnus-group-faq-directory}, which is usually a directory
7028 on a remote machine. This variable can also be a list of directories.
7029 In that case, giving a prefix to this command will allow you to choose
7030 between the various sites. @code{ange-ftp} or @code{efs} will probably
7031 be used for fetching the file.
7032
7033 @item H d
7034 @kindex H d (Summary)
7035 @findex gnus-summary-describe-group
7036 Give a brief description of the current group
7037 (@code{gnus-summary-describe-group}). If given a prefix, force
7038 rereading the description from the server.
7039
7040 @item H h
7041 @kindex H h (Summary)
7042 @findex gnus-summary-describe-briefly
7043 Give an extremely brief description of the most important summary
7044 keystrokes (@code{gnus-summary-describe-briefly}).
7045
7046 @item H i
7047 @kindex H i (Summary)
7048 @findex gnus-info-find-node
7049 Go to the Gnus info node (@code{gnus-info-find-node}).
7050 @end table
7051
7052
7053 @node Searching for Articles
7054 @subsection Searching for Articles
7055
7056 @table @kbd
7057
7058 @item M-s
7059 @kindex M-s (Summary)
7060 @findex gnus-summary-search-article-forward
7061 Search through all subsequent articles for a regexp
7062 (@code{gnus-summary-search-article-forward}).
7063
7064 @item M-r
7065 @kindex M-r (Summary)
7066 @findex gnus-summary-search-article-backward
7067 Search through all previous articles for a regexp
7068 (@code{gnus-summary-search-article-backward}).
7069
7070 @item &
7071 @kindex & (Summary)
7072 @findex gnus-summary-execute-command
7073 This command will prompt you for a header field, a regular expression to
7074 match on this field, and a command to be executed if the match is made
7075 (@code{gnus-summary-execute-command}). If given a prefix, search
7076 backward instead.
7077
7078 @item M-&
7079 @kindex M-& (Summary)
7080 @findex gnus-summary-universal-argument
7081 Perform any operation on all articles that have been marked with
7082 the process mark (@code{gnus-summary-universal-argument}).
7083 @end table
7084
7085 @node Summary Generation Commands
7086 @subsection Summary Generation Commands
7087
7088 @table @kbd
7089
7090 @item Y g
7091 @kindex Y g (Summary)
7092 @findex gnus-summary-prepare
7093 Regenerate the current summary buffer (@code{gnus-summary-prepare}).
7094
7095 @item Y c
7096 @kindex Y c (Summary)
7097 @findex gnus-summary-insert-cached-articles
7098 Pull all cached articles (for the current group) into the summary buffer
7099 (@code{gnus-summary-insert-cached-articles}).
7100
7101 @end table
7102
7103
7104 @node Really Various Summary Commands
7105 @subsection Really Various Summary Commands
7106
7107 @table @kbd
7108
7109 @item C-d
7110 @kindex C-d (Summary)
7111 @findex gnus-summary-enter-digest-group
7112 If the current article is a collection of other articles (for instance,
7113 a digest), you might use this command to enter a group based on the that
7114 article (@code{gnus-summary-enter-digest-group}). Gnus will try to
7115 guess what article type is currently displayed unless you give a prefix
7116 to this command, which forces a ``digest'' interpretation. Basically,
7117 whenever you see a message that is a collection of other messages of
7118 some format, you @kbd{C-d} and read these messages in a more convenient
7119 fashion.
7120
7121 @item M-C-d
7122 @kindex M-C-d (Summary)
7123 @findex gnus-summary-read-document
7124 This command is very similar to the one above, but lets you gather
7125 several documents into one biiig group
7126 (@code{gnus-summary-read-document}). It does this by opening several
7127 @code{nndoc} groups for each document, and then opening an
7128 @code{nnvirtual} group on top of these @code{nndoc} groups. This
7129 command understands the process/prefix convention
7130 (@pxref{Process/Prefix}).
7131
7132 @item C-t
7133 @kindex C-t (Summary)
7134 @findex gnus-summary-toggle-truncation
7135 Toggle truncation of summary lines
7136 (@code{gnus-summary-toggle-truncation}). This will probably confuse the
7137 line centering function in the summary buffer, so it's not a good idea
7138 to have truncation switched off while reading articles.
7139
7140 @item =
7141 @kindex = (Summary)
7142 @findex gnus-summary-expand-window
7143 Expand the summary buffer window (@code{gnus-summary-expand-window}).
7144 If given a prefix, force an @code{article} window configuration.
7145
7146 @item M-C-e
7147 @kindex M-C-e (Summary)
7148 @findex gnus-summary-edit-parameters
7149 Edit the group parameters (@pxref{Group Parameters}) of the current
7150 group (@code{gnus-summary-edit-parameters}).
7151
7152 @end table
7153
7154
7155 @node Exiting the Summary Buffer
7156 @section Exiting the Summary Buffer
7157 @cindex summary exit
7158 @cindex exiting groups
7159
7160 Exiting from the summary buffer will normally update all info on the
7161 group and return you to the group buffer.
7162
7163 @table @kbd
7164
7165 @item Z Z
7166 @itemx q
7167 @kindex Z Z (Summary)
7168 @kindex q (Summary)
7169 @findex gnus-summary-exit
7170 @vindex gnus-summary-exit-hook
7171 @vindex gnus-summary-prepare-exit-hook
7172 @c @icon{gnus-summary-exit}
7173 Exit the current group and update all information on the group
7174 (@code{gnus-summary-exit}). @code{gnus-summary-prepare-exit-hook} is
7175 called before doing much of the exiting, which calls
7176 @code{gnus-summary-expire-articles} by default.
7177 @code{gnus-summary-exit-hook} is called after finishing the exit
7178 process. @code{gnus-group-no-more-groups-hook} is run when returning to
7179 group mode having no more (unread) groups.
7180
7181 @item Z E
7182 @itemx Q
7183 @kindex Z E (Summary)
7184 @kindex Q (Summary)
7185 @findex gnus-summary-exit-no-update
7186 Exit the current group without updating any information on the group
7187 (@code{gnus-summary-exit-no-update}).
7188
7189 @item Z c
7190 @itemx c
7191 @kindex Z c (Summary)
7192 @kindex c (Summary)
7193 @findex gnus-summary-catchup-and-exit
7194 @c @icon{gnus-summary-catchup-and-exit}
7195 Mark all unticked articles in the group as read and then exit
7196 (@code{gnus-summary-catchup-and-exit}).
7197
7198 @item Z C
7199 @kindex Z C (Summary)
7200 @findex gnus-summary-catchup-all-and-exit
7201 Mark all articles, even the ticked ones, as read and then exit
7202 (@code{gnus-summary-catchup-all-and-exit}).
7203
7204 @item Z n
7205 @kindex Z n (Summary)
7206 @findex gnus-summary-catchup-and-goto-next-group
7207 Mark all articles as read and go to the next group
7208 (@code{gnus-summary-catchup-and-goto-next-group}).
7209
7210 @item Z R
7211 @kindex Z R (Summary)
7212 @findex gnus-summary-reselect-current-group
7213 Exit this group, and then enter it again
7214 (@code{gnus-summary-reselect-current-group}). If given a prefix, select
7215 all articles, both read and unread.
7216
7217 @item Z G
7218 @itemx M-g
7219 @kindex Z G (Summary)
7220 @kindex M-g (Summary)
7221 @findex gnus-summary-rescan-group
7222 @c @icon{gnus-summary-mail-get}
7223 Exit the group, check for new articles in the group, and select the
7224 group (@code{gnus-summary-rescan-group}). If given a prefix, select all
7225 articles, both read and unread.
7226
7227 @item Z N
7228 @kindex Z N (Summary)
7229 @findex gnus-summary-next-group
7230 Exit the group and go to the next group
7231 (@code{gnus-summary-next-group}).
7232
7233 @item Z P
7234 @kindex Z P (Summary)
7235 @findex gnus-summary-prev-group
7236 Exit the group and go to the previous group
7237 (@code{gnus-summary-prev-group}).
7238
7239 @item Z s
7240 @kindex Z s (Summary)
7241 @findex gnus-summary-save-newsrc
7242 Save the current number of read/marked articles in the dribble buffer
7243 and then save the dribble buffer (@code{gnus-summary-save-newsrc}). If
7244 given a prefix, also save the @file{.newsrc} file(s). Using this
7245 command will make exit without updating (the @kbd{Q} command) worthless.
7246 @end table
7247
7248 @vindex gnus-exit-group-hook
7249 @code{gnus-exit-group-hook} is called when you exit the current
7250 group.
7251
7252 @findex gnus-summary-wake-up-the-dead
7253 @findex gnus-dead-summary-mode
7254 @vindex gnus-kill-summary-on-exit
7255 If you're in the habit of exiting groups, and then changing your mind
7256 about it, you might set @code{gnus-kill-summary-on-exit} to @code{nil}.
7257 If you do that, Gnus won't kill the summary buffer when you exit it.
7258 (Quelle surprise!) Instead it will change the name of the buffer to
7259 something like @samp{*Dead Summary ... *} and install a minor mode
7260 called @code{gnus-dead-summary-mode}. Now, if you switch back to this
7261 buffer, you'll find that all keys are mapped to a function called
7262 @code{gnus-summary-wake-up-the-dead}. So tapping any keys in a dead
7263 summary buffer will result in a live, normal summary buffer.
7264
7265 There will never be more than one dead summary buffer at any one time.
7266
7267 @vindex gnus-use-cross-reference
7268 The data on the current group will be updated (which articles you have
7269 read, which articles you have replied to, etc.) when you exit the
7270 summary buffer. If the @code{gnus-use-cross-reference} variable is
7271 @code{t} (which is the default), articles that are cross-referenced to
7272 this group and are marked as read, will also be marked as read in the
7273 other subscribed groups they were cross-posted to. If this variable is
7274 neither @code{nil} nor @code{t}, the article will be marked as read in
7275 both subscribed and unsubscribed groups (@pxref{Crosspost Handling}).
7276
7277
7278 @node Crosspost Handling
7279 @section Crosspost Handling
7280
7281 @cindex velveeta
7282 @cindex spamming
7283 Marking cross-posted articles as read ensures that you'll never have to
7284 read the same article more than once. Unless, of course, somebody has
7285 posted it to several groups separately. Posting the same article to
7286 several groups (not cross-posting) is called @dfn{spamming}, and you are
7287 by law required to send nasty-grams to anyone who perpetrates such a
7288 heinous crime. You may want to try NoCeM handling to filter out spam
7289 (@pxref{NoCeM}).
7290
7291 Remember: Cross-posting is kinda ok, but posting the same article
7292 separately to several groups is not. Massive cross-posting (aka.
7293 @dfn{velveeta}) is to be avoided at all costs, and you can even use the
7294 @code{gnus-summary-mail-crosspost-complaint} command to complain about
7295 excessive crossposting (@pxref{Summary Mail Commands}).
7296
7297 @cindex cross-posting
7298 @cindex Xref
7299 @cindex @sc{nov}
7300 One thing that may cause Gnus to not do the cross-posting thing
7301 correctly is if you use an @sc{nntp} server that supports @sc{xover}
7302 (which is very nice, because it speeds things up considerably) which
7303 does not include the @code{Xref} header in its @sc{nov} lines. This is
7304 Evil, but all too common, alas, alack. Gnus tries to Do The Right Thing
7305 even with @sc{xover} by registering the @code{Xref} lines of all
7306 articles you actually read, but if you kill the articles, or just mark
7307 them as read without reading them, Gnus will not get a chance to snoop
7308 the @code{Xref} lines out of these articles, and will be unable to use
7309 the cross reference mechanism.
7310
7311 @cindex LIST overview.fmt
7312 @cindex overview.fmt
7313 To check whether your @sc{nntp} server includes the @code{Xref} header
7314 in its overview files, try @samp{telnet your.nntp.server nntp},
7315 @samp{MODE READER} on @code{inn} servers, and then say @samp{LIST
7316 overview.fmt}. This may not work, but if it does, and the last line you
7317 get does not read @samp{Xref:full}, then you should shout and whine at
7318 your news admin until she includes the @code{Xref} header in the
7319 overview files.
7320
7321 @vindex gnus-nov-is-evil
7322 If you want Gnus to get the @code{Xref}s right all the time, you have to
7323 set @code{gnus-nov-is-evil} to @code{t}, which slows things down
7324 considerably.
7325
7326 C'est la vie.
7327
7328 For an alternative approach, @pxref{Duplicate Suppression}.
7329
7330
7331 @node Duplicate Suppression
7332 @section Duplicate Suppression
7333
7334 By default, Gnus tries to make sure that you don't have to read the same
7335 article more than once by utilizing the crossposting mechanism
7336 (@pxref{Crosspost Handling}). However, that simple and efficient
7337 approach may not work satisfactory for some users for various
7338 reasons.
7339
7340 @enumerate
7341 @item
7342 The @sc{nntp} server may fail to generate the @code{Xref} header. This
7343 is evil and not very common.
7344
7345 @item
7346 The @sc{nntp} server may fail to include the @code{Xref} header in the
7347 @file{.overview} data bases. This is evil and all too common, alas.
7348
7349 @item
7350 You may be reading the same group (or several related groups) from
7351 different @sc{nntp} servers.
7352
7353 @item
7354 You may be getting mail that duplicates articles posted to groups.
7355 @end enumerate
7356
7357 I'm sure there are other situations where @code{Xref} handling fails as
7358 well, but these four are the most common situations.
7359
7360 If, and only if, @code{Xref} handling fails for you, then you may
7361 consider switching on @dfn{duplicate suppression}. If you do so, Gnus
7362 will remember the @code{Message-ID}s of all articles you have read or
7363 otherwise marked as read, and then, as if by magic, mark them as read
7364 all subsequent times you see them---in @emph{all} groups. Using this
7365 mechanism is quite likely to be somewhat inefficient, but not overly
7366 so. It's certainly preferable to reading the same articles more than
7367 once.
7368
7369 Duplicate suppression is not a very subtle instrument. It's more like a
7370 sledge hammer than anything else. It works in a very simple
7371 fashion---if you have marked an article as read, it adds this Message-ID
7372 to a cache. The next time it sees this Message-ID, it will mark the
7373 article as read with the @samp{M} mark. It doesn't care what group it
7374 saw the article in.
7375
7376 @table @code
7377 @item gnus-suppress-duplicates
7378 @vindex gnus-suppress-duplicates
7379 If non-@code{nil}, suppress duplicates.
7380
7381 @item gnus-save-duplicate-list
7382 @vindex gnus-save-duplicate-list
7383 If non-@code{nil}, save the list of duplicates to a file. This will
7384 make startup and shutdown take longer, so the default is @code{nil}.
7385 However, this means that only duplicate articles read in a single Gnus
7386 session are suppressed.
7387
7388 @item gnus-duplicate-list-length
7389 @vindex gnus-duplicate-list-length
7390 This variable says how many @code{Message-ID}s to keep in the duplicate
7391 suppression list. The default is 10000.
7392
7393 @item gnus-duplicate-file
7394 @vindex gnus-duplicate-file
7395 The name of the file to store the duplicate suppression list in. The
7396 default is @file{~/News/suppression}.
7397 @end table
7398
7399 If you have a tendency to stop and start Gnus often, setting
7400 @code{gnus-save-duplicate-list} to @code{t} is probably a good idea. If
7401 you leave Gnus running for weeks on end, you may have it @code{nil}. On
7402 the other hand, saving the list makes startup and shutdown much slower,
7403 so that means that if you stop and start Gnus often, you should set
7404 @code{gnus-save-duplicate-list} to @code{nil}. Uhm. I'll leave this up
7405 to you to figure out, I think.
7406
7407
7408 @node The Article Buffer
7409 @chapter The Article Buffer
7410 @cindex article buffer
7411
7412 The articles are displayed in the article buffer, of which there is only
7413 one. All the summary buffers share the same article buffer unless you
7414 tell Gnus otherwise.
7415
7416 @menu
7417 * Hiding Headers:: Deciding what headers should be displayed.
7418 * Using MIME:: Pushing articles through @sc{mime} before reading them.
7419 * Customizing Articles:: Tailoring the look of the articles.
7420 * Article Keymap:: Keystrokes available in the article buffer.
7421 * Misc Article:: Other stuff.
7422 @end menu
7423
7424
7425 @node Hiding Headers
7426 @section Hiding Headers
7427 @cindex hiding headers
7428 @cindex deleting headers
7429
7430 The top section of each article is the @dfn{head}. (The rest is the
7431 @dfn{body}, but you may have guessed that already.)
7432
7433 @vindex gnus-show-all-headers
7434 There is a lot of useful information in the head: the name of the person
7435 who wrote the article, the date it was written and the subject of the
7436 article. That's well and nice, but there's also lots of information
7437 most people do not want to see---what systems the article has passed
7438 through before reaching you, the @code{Message-ID}, the
7439 @code{References}, etc. ad nauseum---and you'll probably want to get rid
7440 of some of those lines. If you want to keep all those lines in the
7441 article buffer, you can set @code{gnus-show-all-headers} to @code{t}.
7442
7443 Gnus provides you with two variables for sifting headers:
7444
7445 @table @code
7446
7447 @item gnus-visible-headers
7448 @vindex gnus-visible-headers
7449 If this variable is non-@code{nil}, it should be a regular expression
7450 that says what headers you wish to keep in the article buffer. All
7451 headers that do not match this variable will be hidden.
7452
7453 For instance, if you only want to see the name of the person who wrote
7454 the article and the subject, you'd say:
7455
7456 @lisp
7457 (setq gnus-visible-headers "^From:\\|^Subject:")
7458 @end lisp
7459
7460 This variable can also be a list of regexps to match headers to
7461 remain visible.
7462
7463 @item gnus-ignored-headers
7464 @vindex gnus-ignored-headers
7465 This variable is the reverse of @code{gnus-visible-headers}. If this
7466 variable is set (and @code{gnus-visible-headers} is @code{nil}), it
7467 should be a regular expression that matches all lines that you want to
7468 hide. All lines that do not match this variable will remain visible.
7469
7470 For instance, if you just want to get rid of the @code{References} line
7471 and the @code{Xref} line, you might say:
7472
7473 @lisp
7474 (setq gnus-ignored-headers "^References:\\|^Xref:")
7475 @end lisp
7476
7477 This variable can also be a list of regexps to match headers to
7478 be removed.
7479
7480 Note that if @code{gnus-visible-headers} is non-@code{nil}, this
7481 variable will have no effect.
7482
7483 @end table
7484
7485 @vindex gnus-sorted-header-list
7486 Gnus can also sort the headers for you. (It does this by default.) You
7487 can control the sorting by setting the @code{gnus-sorted-header-list}
7488 variable. It is a list of regular expressions that says in what order
7489 the headers are to be displayed.
7490
7491 For instance, if you want the name of the author of the article first,
7492 and then the subject, you might say something like:
7493
7494 @lisp
7495 (setq gnus-sorted-header-list '("^From:" "^Subject:"))
7496 @end lisp
7497
7498 Any headers that are to remain visible, but are not listed in this
7499 variable, will be displayed in random order after all the headers listed in this variable.
7500
7501 @findex gnus-article-hide-boring-headers
7502 @vindex gnus-article-display-hook
7503 @vindex gnus-boring-article-headers
7504 You can hide further boring headers by entering
7505 @code{gnus-article-hide-boring-headers} into
7506 @code{gnus-article-display-hook}. What this function does depends on
7507 the @code{gnus-boring-article-headers} variable. It's a list, but this
7508 list doesn't actually contain header names. Instead is lists various
7509 @dfn{boring conditions} that Gnus can check and remove from sight.
7510
7511 These conditions are:
7512 @table @code
7513 @item empty
7514 Remove all empty headers.
7515 @item followup-to
7516 Remove the @code{Followup-To} header if it is identical to the
7517 @code{Newsgroups} header.
7518 @item reply-to
7519 Remove the @code{Reply-To} header if it lists the same address as the
7520 @code{From} header.
7521 @item newsgroups
7522 Remove the @code{Newsgroups} header if it only contains the current group
7523 name.
7524 @item date
7525 Remove the @code{Date} header if the article is less than three days
7526 old.
7527 @item long-to
7528 Remove the @code{To} header if it is very long.
7529 @item many-to
7530 Remove all @code{To} headers if there are more than one.
7531 @end table
7532
7533 To include the four three elements, you could say something like;
7534
7535 @lisp
7536 (setq gnus-boring-article-headers
7537 '(empty followup-to reply-to))
7538 @end lisp
7539
7540 This is also the default value for this variable.
7541
7542
7543 @node Using MIME
7544 @section Using @sc{mime}
7545 @cindex @sc{mime}
7546
7547 Mime is a standard for waving your hands through the air, aimlessly,
7548 while people stand around yawning.
7549
7550 @sc{mime}, however, is a standard for encoding your articles, aimlessly,
7551 while all newsreaders die of fear.
7552
7553 @sc{mime} may specify what character set the article uses, the encoding
7554 of the characters, and it also makes it possible to embed pictures and
7555 other naughty stuff in innocent-looking articles.
7556
7557 @vindex gnus-show-mime
7558 @vindex gnus-show-mime-method
7559 @vindex gnus-strict-mime
7560 @findex metamail-buffer
7561 Gnus handles @sc{mime} by pushing the articles through
7562 @code{gnus-show-mime-method}, which is @code{metamail-buffer} by
7563 default. This function calls the external @code{metamail} program to
7564 actually do the work. One common problem with this program is that is
7565 thinks that it can't display 8-bit things in the Emacs buffer. To tell
7566 it the truth, put something like the following in your
7567 @file{.bash_profile} file. (You do use @code{bash}, don't you?)
7568
7569 @example
7570 export MM_CHARSET="iso-8859-1"
7571 @end example
7572
7573 For more information on @code{metamail}, see its manual page.
7574
7575 Set @code{gnus-show-mime} to @code{t} if you want to use
7576 @sc{mime} all the time. However, if @code{gnus-strict-mime} is
7577 non-@code{nil}, the @sc{mime} method will only be used if there are
7578 @sc{mime} headers in the article. If you have @code{gnus-show-mime}
7579 set, then you'll see some unfortunate display glitches in the article
7580 buffer. These can't be avoided.
7581
7582 It might be best to just use the toggling functions from the summary
7583 buffer to avoid getting nasty surprises. (For instance, you enter the
7584 group @samp{alt.sing-a-long} and, before you know it, @sc{mime} has
7585 decoded the sound file in the article and some horrible sing-a-long song
7586 comes screaming out your speakers, and you can't find the volume
7587 button, because there isn't one, and people are starting to look at you,
7588 and you try to stop the program, but you can't, and you can't find the
7589 program to control the volume, and everybody else in the room suddenly
7590 decides to look at you disdainfully, and you'll feel rather stupid.)
7591
7592 Any similarity to real events and people is purely coincidental. Ahem.
7593
7594
7595 @node Customizing Articles
7596 @section Customizing Articles
7597 @cindex article customization
7598
7599 @vindex gnus-article-display-hook
7600 The @code{gnus-article-display-hook} is called after the article has
7601 been inserted into the article buffer. It is meant to handle all
7602 treatment of the article before it is displayed.
7603
7604 @findex gnus-article-maybe-highlight
7605 @findex gnus-article-maybe-hide-headers
7606 By default this hook just contains
7607 @code{gnus-article-maybe-hide-headers},
7608 @code{gnus-hide-boring-headers}, @code{gnus-article-treat-overstrike},
7609 and @code{gnus-article-maybe-highlight} (and under XEmacs,
7610 @code{gnus-article-display-x-face}), but there are thousands, nay
7611 millions, of functions you can put in this hook. For an overview of
7612 functions @pxref{Article Highlighting}, @pxref{Article Hiding},
7613 @pxref{Article Washing}, @pxref{Article Buttons} and @pxref{Article
7614 Date}. Note that the order of functions in this hook might affect
7615 things, so you may have to fiddle a bit to get the desired results.
7616
7617 You can, of course, write your own functions. The functions are called
7618 from the article buffer, and you can do anything you like, pretty much.
7619 There is no information that you have to keep in the buffer---you can
7620 change everything. However, you shouldn't delete any headers. Instead
7621 make them invisible if you want to make them go away.
7622
7623
7624 @node Article Keymap
7625 @section Article Keymap
7626
7627 Most of the keystrokes in the summary buffer can also be used in the
7628 article buffer. They should behave as if you typed them in the summary
7629 buffer, which means that you don't actually have to have a summary
7630 buffer displayed while reading. You can do it all from the article
7631 buffer.
7632
7633 A few additional keystrokes are available:
7634
7635 @table @kbd
7636
7637 @item SPACE
7638 @kindex SPACE (Article)
7639 @findex gnus-article-next-page
7640 Scroll forwards one page (@code{gnus-article-next-page}).
7641
7642 @item DEL
7643 @kindex DEL (Article)
7644 @findex gnus-article-prev-page
7645 Scroll backwards one page (@code{gnus-article-prev-page}).
7646
7647 @item C-c ^
7648 @kindex C-c ^ (Article)
7649 @findex gnus-article-refer-article
7650 If point is in the neighborhood of a @code{Message-ID} and you press
7651 @kbd{C-c ^}, Gnus will try to get that article from the server
7652 (@code{gnus-article-refer-article}).
7653
7654 @item C-c C-m
7655 @kindex C-c C-m (Article)
7656 @findex gnus-article-mail
7657 Send a reply to the address near point (@code{gnus-article-mail}). If
7658 given a prefix, include the mail.
7659
7660 @item s
7661 @kindex s (Article)
7662 @findex gnus-article-show-summary
7663 Reconfigure the buffers so that the summary buffer becomes visible
7664 (@code{gnus-article-show-summary}).
7665
7666 @item ?
7667 @kindex ? (Article)
7668 @findex gnus-article-describe-briefly
7669 Give a very brief description of the available keystrokes
7670 (@code{gnus-article-describe-briefly}).
7671
7672 @item TAB
7673 @kindex TAB (Article)
7674 @findex gnus-article-next-button
7675 Go to the next button, if any (@code{gnus-article-next-button}). This
7676 only makes sense if you have buttonizing turned on.
7677
7678 @item M-TAB
7679 @kindex M-TAB (Article)
7680 @findex gnus-article-prev-button
7681 Go to the previous button, if any (@code{gnus-article-prev-button}).
7682
7683 @end table
7684
7685
7686 @node Misc Article
7687 @section Misc Article
7688
7689 @table @code
7690
7691 @item gnus-single-article-buffer
7692 @vindex gnus-single-article-buffer
7693 If non-@code{nil}, use the same article buffer for all the groups.
7694 (This is the default.) If @code{nil}, each group will have its own
7695 article buffer.
7696
7697 @vindex gnus-article-prepare-hook
7698 @item gnus-article-prepare-hook
7699 This hook is called right after the article has been inserted into the
7700 article buffer. It is mainly intended for functions that do something
7701 depending on the contents; it should probably not be used for changing
7702 the contents of the article buffer.
7703
7704 @vindex gnus-article-display-hook
7705 @item gnus-article-display-hook
7706 This hook is called as the last thing when displaying an article, and is
7707 intended for modifying the contents of the buffer, doing highlights,
7708 hiding headers, and the like.
7709
7710 @item gnus-article-mode-hook
7711 @vindex gnus-article-mode-hook
7712 Hook called in article mode buffers.
7713
7714 @item gnus-article-mode-syntax-table
7715 @vindex gnus-article-mode-syntax-table
7716 Syntax table used in article buffers. It is initialized from
7717 @code{text-mode-syntax-table}.
7718
7719 @vindex gnus-article-mode-line-format
7720 @item gnus-article-mode-line-format
7721 This variable is a format string along the same lines as
7722 @code{gnus-summary-mode-line-format} (@pxref{Mode Line Formatting}). It
7723 accepts the same format specifications as that variable, with one
7724 extension:
7725
7726 @table @samp
7727 @item w
7728 The @dfn{wash status} of the article. This is a short string with one
7729 character for each possible article wash operation that may have been
7730 performed.
7731 @end table
7732
7733 @vindex gnus-break-pages
7734
7735 @item gnus-break-pages
7736 Controls whether @dfn{page breaking} is to take place. If this variable
7737 is non-@code{nil}, the articles will be divided into pages whenever a
7738 page delimiter appears in the article. If this variable is @code{nil},
7739 paging will not be done.
7740
7741 @item gnus-page-delimiter
7742 @vindex gnus-page-delimiter
7743 This is the delimiter mentioned above. By default, it is @samp{^L}
7744 (formfeed).
7745 @end table
7746
7747
7748 @node Composing Messages
7749 @chapter Composing Messages
7750 @cindex composing messages
7751 @cindex messages
7752 @cindex mail
7753 @cindex sending mail
7754 @cindex reply
7755 @cindex followup
7756 @cindex post
7757
7758 @kindex C-c C-c (Post)
7759 All commands for posting and mailing will put you in a message buffer
7760 where you can edit the article all you like, before you send the article
7761 by pressing @kbd{C-c C-c}. @xref{Top, , Top, message, The Message
7762 Manual}. If you are in a foreign news group, and you wish to post the
7763 article using the foreign server, you can give a prefix to @kbd{C-c C-c}
7764 to make Gnus try to post using the foreign server.
7765
7766 @menu
7767 * Mail:: Mailing and replying.
7768 * Post:: Posting and following up.
7769 * Posting Server:: What server should you post via?
7770 * Mail and Post:: Mailing and posting at the same time.
7771 * Archived Messages:: Where Gnus stores the messages you've sent.
7772 * Posting Styles:: An easier way to specify who you are.
7773 * Drafts:: Postponing messages and rejected messages.
7774 * Rejected Articles:: What happens if the server doesn't like your article?
7775 @end menu
7776
7777 Also see @pxref{Canceling and Superseding} for information on how to
7778 remove articles you shouldn't have posted.
7779
7780
7781 @node Mail
7782 @section Mail
7783
7784 Variables for customizing outgoing mail:
7785
7786 @table @code
7787 @item gnus-uu-digest-headers
7788 @vindex gnus-uu-digest-headers
7789 List of regexps to match headers included in digested messages. The
7790 headers will be included in the sequence they are matched.
7791
7792 @item gnus-add-to-list
7793 @vindex gnus-add-to-list
7794 If non-@code{nil}, add a @code{to-list} group parameter to mail groups
7795 that have none when you do a @kbd{a}.
7796
7797 @end table
7798
7799
7800 @node Post
7801 @section Post
7802
7803 Variables for composing news articles:
7804
7805 @table @code
7806 @item gnus-sent-message-ids-file
7807 @vindex gnus-sent-message-ids-file
7808 Gnus will keep a @code{Message-ID} history file of all the mails it has
7809 sent. If it discovers that it has already sent a mail, it will ask the
7810 user whether to re-send the mail. (This is primarily useful when
7811 dealing with @sc{soup} packets and the like where one is apt to send the
7812 same packet multiple times.) This variable says what the name of this
7813 history file is. It is @file{~/News/Sent-Message-IDs} by default. Set
7814 this variable to @code{nil} if you don't want Gnus to keep a history
7815 file.
7816
7817 @item gnus-sent-message-ids-length
7818 @vindex gnus-sent-message-ids-length
7819 This variable says how many @code{Message-ID}s to keep in the history
7820 file. It is 1000 by default.
7821
7822 @end table
7823
7824
7825 @node Posting Server
7826 @section Posting Server
7827
7828 When you press those magical @kbd{C-c C-c} keys to ship off your latest
7829 (extremely intelligent, of course) article, where does it go?
7830
7831 Thank you for asking. I hate you.
7832
7833 @vindex gnus-post-method
7834
7835 It can be quite complicated. Normally, Gnus will use the same native
7836 server. However. If your native server doesn't allow posting, just
7837 reading, you probably want to use some other server to post your
7838 (extremely intelligent and fabulously interesting) articles. You can
7839 then set the @code{gnus-post-method} to some other method:
7840
7841 @lisp
7842 (setq gnus-post-method '(nnspool ""))
7843 @end lisp
7844
7845 Now, if you've done this, and then this server rejects your article, or
7846 this server is down, what do you do then? To override this variable you
7847 can use a non-zero prefix to the @kbd{C-c C-c} command to force using
7848 the ``current'' server for posting.
7849
7850 If you give a zero prefix (i.e., @kbd{C-u 0 C-c C-c}) to that command,
7851 Gnus will prompt you for what method to use for posting.
7852
7853 You can also set @code{gnus-post-method} to a list of select methods.
7854 If that's the case, Gnus will always prompt you for what method to use
7855 for posting.
7856
7857 Finally, if you want to always post using the same select method as
7858 you're reading from (which might be convenient if you're reading lots of
7859 groups from different private servers), you can set this variable to
7860 @code{current}.
7861
7862
7863 @node Mail and Post
7864 @section Mail and Post
7865
7866 Here's a list of variables relevant to both mailing and
7867 posting:
7868
7869 @table @code
7870 @item gnus-mailing-list-groups
7871 @findex gnus-mailing-list-groups
7872 @cindex mailing lists
7873
7874 If your news server offers groups that are really mailing lists
7875 gatewayed to the @sc{nntp} server, you can read those groups without
7876 problems, but you can't post/followup to them without some difficulty.
7877 One solution is to add a @code{to-address} to the group parameters
7878 (@pxref{Group Parameters}). An easier thing to do is set the
7879 @code{gnus-mailing-list-groups} to a regexp that matches the groups that
7880 really are mailing lists. Then, at least, followups to the mailing
7881 lists will work most of the time. Posting to these groups (@kbd{a}) is
7882 still a pain, though.
7883
7884 @end table
7885
7886 You may want to do spell-checking on messages that you send out. Or, if
7887 you don't want to spell-check by hand, you could add automatic
7888 spell-checking via the @code{ispell} package:
7889
7890 @cindex ispell
7891 @findex ispell-message
7892 @lisp
7893 (add-hook 'message-send-hook 'ispell-message)
7894 @end lisp
7895
7896
7897 @node Archived Messages
7898 @section Archived Messages
7899 @cindex archived messages
7900 @cindex sent messages
7901
7902 Gnus provides a few different methods for storing the mail and news you
7903 send. The default method is to use the @dfn{archive virtual server} to
7904 store the messages. If you want to disable this completely, the
7905 @code{gnus-message-archive-group} variable should be @code{nil}, which
7906 is the default.
7907
7908 @vindex gnus-message-archive-method
7909 @code{gnus-message-archive-method} says what virtual server Gnus is to
7910 use to store sent messages. The default is:
7911
7912 @lisp
7913 (nnfolder "archive"
7914 (nnfolder-directory "~/Mail/archive")
7915 (nnfolder-active-file "~/Mail/archive/active")
7916 (nnfolder-get-new-mail nil)
7917 (nnfolder-inhibit-expiry t))
7918 @end lisp
7919
7920 You can, however, use any mail select method (@code{nnml},
7921 @code{nnmbox}, etc.). @code{nnfolder} is a quite likeable select method
7922 for doing this sort of thing, though. If you don't like the default
7923 directory chosen, you could say something like:
7924
7925 @lisp
7926 (setq gnus-message-archive-method
7927 '(nnfolder "archive"
7928 (nnfolder-inhibit-expiry t)
7929 (nnfolder-active-file "~/News/sent-mail/active")
7930 (nnfolder-directory "~/News/sent-mail/")))
7931 @end lisp
7932
7933 @vindex gnus-message-archive-group
7934 @cindex Gcc
7935 Gnus will insert @code{Gcc} headers in all outgoing messages that point
7936 to one or more group(s) on that server. Which group to use is
7937 determined by the @code{gnus-message-archive-group} variable.
7938
7939 This variable can be used to do the following:
7940
7941 @itemize @bullet
7942 @item a string
7943 Messages will be saved in that group.
7944 @item a list of strings
7945 Messages will be saved in all those groups.
7946 @item an alist of regexps, functions and forms
7947 When a key ``matches'', the result is used.
7948 @item @code{nil}
7949 No message archiving will take place. This is the default.
7950 @end itemize
7951
7952 Let's illustrate:
7953
7954 Just saving to a single group called @samp{MisK}:
7955 @lisp
7956 (setq gnus-message-archive-group "MisK")
7957 @end lisp
7958
7959 Saving to two groups, @samp{MisK} and @samp{safe}:
7960 @lisp
7961 (setq gnus-message-archive-group '("MisK" "safe"))
7962 @end lisp
7963
7964 Save to different groups based on what group you are in:
7965 @lisp
7966 (setq gnus-message-archive-group
7967 '(("^alt" "sent-to-alt")
7968 ("mail" "sent-to-mail")
7969 (".*" "sent-to-misc")))
7970 @end lisp
7971
7972 More complex stuff:
7973 @lisp
7974 (setq gnus-message-archive-group
7975 '((if (message-news-p)
7976 "misc-news"
7977 "misc-mail")))
7978 @end lisp
7979
7980 How about storing all news messages in one file, but storing all mail
7981 messages in one file per month:
7982
7983 @lisp
7984 (setq gnus-message-archive-group
7985 '((if (message-news-p)
7986 "misc-news"
7987 (concat "mail." (format-time-string
7988 "%Y-%m" (current-time))))))
7989 @end lisp
7990
7991 (XEmacs 19.13 doesn't have @code{format-time-string}, so you'll have to
7992 use a different value for @code{gnus-message-archive-group} there.)
7993
7994 Now, when you send a message off, it will be stored in the appropriate
7995 group. (If you want to disable storing for just one particular message,
7996 you can just remove the @code{Gcc} header that has been inserted.) The
7997 archive group will appear in the group buffer the next time you start
7998 Gnus, or the next time you press @kbd{F} in the group buffer. You can
7999 enter it and read the articles in it just like you'd read any other
8000 group. If the group gets really big and annoying, you can simply rename
8001 if (using @kbd{G r} in the group buffer) to something
8002 nice---@samp{misc-mail-september-1995}, or whatever. New messages will
8003 continue to be stored in the old (now empty) group.
8004
8005 That's the default method of archiving sent messages. Gnus offers a
8006 different way for the people who don't like the default method. In that
8007 case you should set @code{gnus-message-archive-group} to @code{nil};
8008 this will disable archiving.
8009
8010 @table @code
8011 @item gnus-outgoing-message-group
8012 @vindex gnus-outgoing-message-group
8013 All outgoing messages will be put in this group. If you want to store
8014 all your outgoing mail and articles in the group @samp{nnml:archive},
8015 you set this variable to that value. This variable can also be a list of
8016 group names.
8017
8018 If you want to have greater control over what group to put each
8019 message in, you can set this variable to a function that checks the
8020 current newsgroup name and then returns a suitable group name (or list
8021 of names).
8022
8023 This variable can be used instead of @code{gnus-message-archive-group},
8024 but the latter is the preferred method.
8025 @end table
8026
8027
8028 @node Posting Styles
8029 @section Posting Styles
8030 @cindex posting styles
8031 @cindex styles
8032
8033 All them variables, they make my head swim.
8034
8035 So what if you want a different @code{Organization} and signature based
8036 on what groups you post to? And you post both from your home machine
8037 and your work machine, and you want different @code{From} lines, and so
8038 on?
8039
8040 @vindex gnus-posting-styles
8041 One way to do stuff like that is to write clever hooks that change the
8042 variables you need to have changed. That's a bit boring, so somebody
8043 came up with the bright idea of letting the user specify these things in
8044 a handy alist. Here's an example of a @code{gnus-posting-styles}
8045 variable:
8046
8047 @lisp
8048 ((".*"
8049 (signature "Peace and happiness")
8050 (organization "What me?"))
8051 ("^comp"
8052 (signature "Death to everybody"))
8053 ("comp.emacs.i-love-it"
8054 (organization "Emacs is it")))
8055 @end lisp
8056
8057 As you might surmise from this example, this alist consists of several
8058 @dfn{styles}. Each style will be applicable if the first element
8059 ``matches'', in some form or other. The entire alist will be iterated
8060 over, from the beginning towards the end, and each match will be
8061 applied, which means that attributes in later styles that match override
8062 the same attributes in earlier matching styles. So
8063 @samp{comp.programming.literate} will have the @samp{Death to everybody}
8064 signature and the @samp{What me?} @code{Organization} header.
8065
8066 The first element in each style is called the @code{match}. If it's a
8067 string, then Gnus will try to regexp match it against the group name.
8068 If it's a function symbol, that function will be called with no
8069 arguments. If it's a variable symbol, then the variable will be
8070 referenced. If it's a list, then that list will be @code{eval}ed. In
8071 any case, if this returns a non-@code{nil} value, then the style is said
8072 to @dfn{match}.
8073
8074 Each style may contain a arbitrary amount of @dfn{attributes}. Each
8075 attribute consists of a @var{(name . value)} pair. The attribute name
8076 can be one of @code{signature}, @code{signature-file},
8077 @code{organization}, @code{address}, @code{name} or @code{body}. The
8078 attribute name can also be a string. In that case, this will be used as
8079 a header name, and the value will be inserted in the headers of the
8080 article.
8081
8082 The attribute value can be a string (used verbatim), a function (the
8083 return value will be used), a variable (its value will be used) or a
8084 list (it will be @code{eval}ed and the return value will be used).
8085
8086 If you wish to check whether the message you are about to compose is
8087 meant to be a news article or a mail message, you can check the values
8088 of the two dynamically bound variables @code{message-this-is-news} and
8089 @code{message-this-is-mail}.
8090
8091 @vindex message-this-is-mail
8092 @vindex message-this-is-news
8093
8094 So here's a new example:
8095
8096 @lisp
8097 (setq gnus-posting-styles
8098 '((".*"
8099 (signature-file "~/.signature")
8100 (name "User Name")
8101 ("X-Home-Page" (getenv "WWW_HOME"))
8102 (organization "People's Front Against MWM"))
8103 ("^rec.humor"
8104 (signature my-funny-signature-randomizer))
8105 ((equal (system-name) "gnarly")
8106 (signature my-quote-randomizer))
8107 (message-this-is-news
8108 (signature my-news-signature))
8109 (posting-from-work-p
8110 (signature-file "~/.work-signature")
8111 (address "user@@bar.foo")
8112 (body "You are fired.\n\nSincerely, your boss.")
8113 (organization "Important Work, Inc"))
8114 ("^nn.+:"
8115 (signature-file "~/.mail-signature"))))
8116 @end lisp
8117
8118
8119 @node Drafts
8120 @section Drafts
8121 @cindex drafts
8122
8123 If you are writing a message (mail or news) and suddenly remember that
8124 you have a steak in the oven (or some pesto in the food processor, you
8125 craaazy vegetarians), you'll probably wish there was a method to save
8126 the message you are writing so that you can continue editing it some
8127 other day, and send it when you feel its finished.
8128
8129 Well, don't worry about it. Whenever you start composing a message of
8130 some sort using the Gnus mail and post commands, the buffer you get will
8131 automatically associate to an article in a special @dfn{draft} group.
8132 If you save the buffer the normal way (@kbd{C-x C-s}, for instance), the
8133 article will be saved there. (Auto-save files also go to the draft
8134 group.)
8135
8136 @cindex nndraft
8137 @vindex nndraft-directory
8138 The draft group is a special group (which is implemented as an
8139 @code{nndraft} group, if you absolutely have to know) called
8140 @samp{nndraft:drafts}. The variable @code{nndraft-directory} says where
8141 @code{nndraft} is to store its files. What makes this group special is
8142 that you can't tick any articles in it or mark any articles as
8143 read---all articles in the group are permanently unread.
8144
8145 If the group doesn't exist, it will be created and you'll be subscribed
8146 to it. The only way to make it disappear from the Group buffer is to
8147 unsubscribe it.
8148
8149 @c @findex gnus-dissociate-buffer-from-draft
8150 @c @kindex C-c M-d (Mail)
8151 @c @kindex C-c M-d (Post)
8152 @c @findex gnus-associate-buffer-with-draft
8153 @c @kindex C-c C-d (Mail)
8154 @c @kindex C-c C-d (Post)
8155 @c If you're writing some super-secret message that you later want to
8156 @c encode with PGP before sending, you may wish to turn the auto-saving
8157 @c (and association with the draft group) off. You never know who might be
8158 @c interested in reading all your extremely valuable and terribly horrible
8159 @c and interesting secrets. The @kbd{C-c M-d}
8160 @c (@code{gnus-dissociate-buffer-from-draft}) command does that for you.
8161 @c If you change your mind and want to turn the auto-saving back on again,
8162 @c @kbd{C-c C-d} (@code{gnus-associate-buffer-with-draft} does that.
8163 @c
8164 @c @vindex gnus-use-draft
8165 @c To leave association with the draft group off by default, set
8166 @c @code{gnus-use-draft} to @code{nil}. It is @code{t} by default.
8167
8168 @findex gnus-draft-edit-message
8169 @kindex D e (Draft)
8170 When you want to continue editing the article, you simply enter the
8171 draft group and push @kbd{D e} (@code{gnus-draft-edit-message}) to do
8172 that. You will be placed in a buffer where you left off.
8173
8174 Rejected articles will also be put in this draft group (@pxref{Rejected
8175 Articles}).
8176
8177 @findex gnus-draft-send-all-messages
8178 @findex gnus-draft-send-message
8179 If you have lots of rejected messages you want to post (or mail) without
8180 doing further editing, you can use the @kbd{D s} command
8181 (@code{gnus-draft-send-message}). This command understands the
8182 process/prefix convention (@pxref{Process/Prefix}). The @kbd{D S}
8183 command (@code{gnus-draft-send-all-messages}) will ship off all messages
8184 in the buffer.
8185
8186 If you have some messages that you wish not to send, you can use the
8187 @kbd{D t} (@code{gnus-draft-toggle-sending}) command to mark the message
8188 as unsendable. This is a toggling command.
8189
8190
8191 @node Rejected Articles
8192 @section Rejected Articles
8193 @cindex rejected articles
8194
8195 Sometimes a news server will reject an article. Perhaps the server
8196 doesn't like your face. Perhaps it just feels miserable. Perhaps
8197 @emph{there be demons}. Perhaps you have included too much cited text.
8198 Perhaps the disk is full. Perhaps the server is down.
8199
8200 These situations are, of course, totally beyond the control of Gnus.
8201 (Gnus, of course, loves the way you look, always feels great, has angels
8202 fluttering around inside of it, doesn't care about how much cited text
8203 you include, never runs full and never goes down.) So Gnus saves these
8204 articles until some later time when the server feels better.
8205
8206 The rejected articles will automatically be put in a special draft group
8207 (@pxref{Drafts}). When the server comes back up again, you'd then
8208 typically enter that group and send all the articles off.
8209
8210
8211 @node Select Methods
8212 @chapter Select Methods
8213 @cindex foreign groups
8214 @cindex select methods
8215
8216 A @dfn{foreign group} is a group not read by the usual (or
8217 default) means. It could be, for instance, a group from a different
8218 @sc{nntp} server, it could be a virtual group, or it could be your own
8219 personal mail group.
8220
8221 A foreign group (or any group, really) is specified by a @dfn{name} and
8222 a @dfn{select method}. To take the latter first, a select method is a
8223 list where the first element says what backend to use (e.g. @code{nntp},
8224 @code{nnspool}, @code{nnml}) and the second element is the @dfn{server
8225 name}. There may be additional elements in the select method, where the
8226 value may have special meaning for the backend in question.
8227
8228 One could say that a select method defines a @dfn{virtual server}---so
8229 we do just that (@pxref{The Server Buffer}).
8230
8231 The @dfn{name} of the group is the name the backend will recognize the
8232 group as.
8233
8234 For instance, the group @samp{soc.motss} on the @sc{nntp} server
8235 @samp{some.where.edu} will have the name @samp{soc.motss} and select
8236 method @code{(nntp "some.where.edu")}. Gnus will call this group
8237 @samp{nntp+some.where.edu:soc.motss}, even though the @code{nntp}
8238 backend just knows this group as @samp{soc.motss}.
8239
8240 The different methods all have their peculiarities, of course.
8241
8242 @menu
8243 * The Server Buffer:: Making and editing virtual servers.
8244 * Getting News:: Reading USENET news with Gnus.
8245 * Getting Mail:: Reading your personal mail with Gnus.
8246 * Other Sources:: Reading directories, files, SOUP packets.
8247 * Combined Groups:: Combining groups into one group.
8248 * Gnus Unplugged:: Reading news and mail offline.
8249 @end menu
8250
8251
8252 @node The Server Buffer
8253 @section The Server Buffer
8254
8255 Traditionally, a @dfn{server} is a machine or a piece of software that
8256 one connects to, and then requests information from. Gnus does not
8257 connect directly to any real servers, but does all transactions through
8258 one backend or other. But that's just putting one layer more between
8259 the actual media and Gnus, so we might just as well say that each
8260 backend represents a virtual server.
8261
8262 For instance, the @code{nntp} backend may be used to connect to several
8263 different actual @sc{nntp} servers, or, perhaps, to many different ports
8264 on the same actual @sc{nntp} server. You tell Gnus which backend to
8265 use, and what parameters to set by specifying a @dfn{select method}.
8266
8267 These select method specifications can sometimes become quite
8268 complicated---say, for instance, that you want to read from the
8269 @sc{nntp} server @samp{news.funet.fi} on port number 13, which
8270 hangs if queried for @sc{nov} headers and has a buggy select. Ahem.
8271 Anyways, if you had to specify that for each group that used this
8272 server, that would be too much work, so Gnus offers a way of naming
8273 select methods, which is what you do in the server buffer.
8274
8275 To enter the server buffer, use the @kbd{^}
8276 (@code{gnus-group-enter-server-mode}) command in the group buffer.
8277
8278 @menu
8279 * Server Buffer Format:: You can customize the look of this buffer.
8280 * Server Commands:: Commands to manipulate servers.
8281 * Example Methods:: Examples server specifications.
8282 * Creating a Virtual Server:: An example session.
8283 * Server Variables:: Which variables to set.
8284 * Servers and Methods:: You can use server names as select methods.
8285 * Unavailable Servers:: Some servers you try to contact may be down.
8286 @end menu
8287
8288 @vindex gnus-server-mode-hook
8289 @code{gnus-server-mode-hook} is run when creating the server buffer.
8290
8291
8292 @node Server Buffer Format
8293 @subsection Server Buffer Format
8294 @cindex server buffer format
8295
8296 @vindex gnus-server-line-format
8297 You can change the look of the server buffer lines by changing the
8298 @code{gnus-server-line-format} variable. This is a @code{format}-like
8299 variable, with some simple extensions:
8300
8301 @table @samp
8302
8303 @item h
8304 How the news is fetched---the backend name.
8305
8306 @item n
8307 The name of this server.
8308
8309 @item w
8310 Where the news is to be fetched from---the address.
8311
8312 @item s
8313 The opened/closed/denied status of the server.
8314 @end table
8315
8316 @vindex gnus-server-mode-line-format
8317 The mode line can also be customized by using the
8318 @code{gnus-server-mode-line-format} variable (@pxref{Mode Line
8319 Formatting}). The following specs are understood:
8320
8321 @table @samp
8322 @item S
8323 Server name.
8324
8325 @item M
8326 Server method.
8327 @end table
8328
8329 Also @pxref{Formatting Variables}.
8330
8331
8332 @node Server Commands
8333 @subsection Server Commands
8334 @cindex server commands
8335
8336 @table @kbd
8337
8338 @item a
8339 @kindex a (Server)
8340 @findex gnus-server-add-server
8341 Add a new server (@code{gnus-server-add-server}).
8342
8343 @item e
8344 @kindex e (Server)
8345 @findex gnus-server-edit-server
8346 Edit a server (@code{gnus-server-edit-server}).
8347
8348 @item SPACE
8349 @kindex SPACE (Server)
8350 @findex gnus-server-read-server
8351 Browse the current server (@code{gnus-server-read-server}).
8352
8353 @item q
8354 @kindex q (Server)
8355 @findex gnus-server-exit
8356 Return to the group buffer (@code{gnus-server-exit}).
8357
8358 @item k
8359 @kindex k (Server)
8360 @findex gnus-server-kill-server
8361 Kill the current server (@code{gnus-server-kill-server}).
8362
8363 @item y
8364 @kindex y (Server)
8365 @findex gnus-server-yank-server
8366 Yank the previously killed server (@code{gnus-server-yank-server}).
8367
8368 @item c
8369 @kindex c (Server)
8370 @findex gnus-server-copy-server
8371 Copy the current server (@code{gnus-server-copy-server}).
8372
8373 @item l
8374 @kindex l (Server)
8375 @findex gnus-server-list-servers
8376 List all servers (@code{gnus-server-list-servers}).
8377
8378 @item s
8379 @kindex s (Server)
8380 @findex gnus-server-scan-server
8381 Request that the server scan its sources for new articles
8382 (@code{gnus-server-scan-server}). This is mainly sensible with mail
8383 servers.
8384
8385 @item g
8386 @kindex g (Server)
8387 @findex gnus-server-regenerate-server
8388 Request that the server regenerate all its data structures
8389 (@code{gnus-server-regenerate-server}). This can be useful if you have
8390 a mail backend that has gotten out of synch.
8391
8392 @end table
8393
8394
8395 @node Example Methods
8396 @subsection Example Methods
8397
8398 Most select methods are pretty simple and self-explanatory:
8399
8400 @lisp
8401 (nntp "news.funet.fi")
8402 @end lisp
8403
8404 Reading directly from the spool is even simpler:
8405
8406 @lisp
8407 (nnspool "")
8408 @end lisp
8409
8410 As you can see, the first element in a select method is the name of the
8411 backend, and the second is the @dfn{address}, or @dfn{name}, if you
8412 will.
8413
8414 After these two elements, there may be an arbitrary number of
8415 @var{(variable form)} pairs.
8416
8417 To go back to the first example---imagine that you want to read from
8418 port 15 on that machine. This is what the select method should
8419 look like then:
8420
8421 @lisp
8422 (nntp "news.funet.fi" (nntp-port-number 15))
8423 @end lisp
8424
8425 You should read the documentation to each backend to find out what
8426 variables are relevant, but here's an @code{nnmh} example:
8427
8428 @code{nnmh} is a mail backend that reads a spool-like structure. Say
8429 you have two structures that you wish to access: One is your private
8430 mail spool, and the other is a public one. Here's the possible spec for
8431 your private mail:
8432
8433 @lisp
8434 (nnmh "private" (nnmh-directory "~/private/mail/"))
8435 @end lisp
8436
8437 (This server is then called @samp{private}, but you may have guessed
8438 that.)
8439
8440 Here's the method for a public spool:
8441
8442 @lisp
8443 (nnmh "public"
8444 (nnmh-directory "/usr/information/spool/")
8445 (nnmh-get-new-mail nil))
8446 @end lisp
8447
8448 If you are behind a firewall and only have access to the @sc{nntp}
8449 server from the firewall machine, you can instruct Gnus to @code{rlogin}
8450 on the firewall machine and telnet from there to the @sc{nntp} server.
8451 Doing this can be rather fiddly, but your virtual server definition
8452 should probably look something like this:
8453
8454 @lisp
8455 (nntp "firewall"
8456 (nntp-address "the.firewall.machine")
8457 (nntp-open-connection-function nntp-open-rlogin)
8458 (nntp-end-of-line "\n")
8459 (nntp-rlogin-parameters
8460 ("telnet" "the.real.nntp.host" "nntp")))
8461 @end lisp
8462
8463 If you want to use the wonderful @code{ssh} program to provide a
8464 compressed connection over the modem line, you could create a virtual
8465 server that would look something like this:
8466
8467 @lisp
8468 (nntp "news"
8469 (nntp-address "copper.uio.no")
8470 (nntp-rlogin-program "ssh")
8471 (nntp-open-connection-function nntp-open-rlogin)
8472 (nntp-end-of-line "\n")
8473 (nntp-rlogin-parameters
8474 ("telnet" "news.uio.no" "nntp")))
8475 @end lisp
8476
8477 This means that you have to have set up @code{ssh-agent} correctly to
8478 provide automatic authorization, of course. And to get a compressed
8479 connection, you have to have the @samp{Compression} option in the
8480 @code{ssh} @file{config} file.
8481
8482
8483 @node Creating a Virtual Server
8484 @subsection Creating a Virtual Server
8485
8486 If you're saving lots of articles in the cache by using persistent
8487 articles, you may want to create a virtual server to read the cache.
8488
8489 First you need to add a new server. The @kbd{a} command does that. It
8490 would probably be best to use @code{nnspool} to read the cache. You
8491 could also use @code{nnml} or @code{nnmh}, though.
8492
8493 Type @kbd{a nnspool RET cache RET}.
8494
8495 You should now have a brand new @code{nnspool} virtual server called
8496 @samp{cache}. You now need to edit it to have the right definitions.
8497 Type @kbd{e} to edit the server. You'll be entered into a buffer that
8498 will contain the following:
8499
8500 @lisp
8501 (nnspool "cache")
8502 @end lisp
8503
8504 Change that to:
8505
8506 @lisp
8507 (nnspool "cache"
8508 (nnspool-spool-directory "~/News/cache/")
8509 (nnspool-nov-directory "~/News/cache/")
8510 (nnspool-active-file "~/News/cache/active"))
8511 @end lisp
8512
8513 Type @kbd{C-c C-c} to return to the server buffer. If you now press
8514 @kbd{RET} over this virtual server, you should be entered into a browse
8515 buffer, and you should be able to enter any of the groups displayed.
8516
8517
8518 @node Server Variables
8519 @subsection Server Variables
8520
8521 One sticky point when defining variables (both on backends and in Emacs
8522 in general) is that some variables are typically initialized from other
8523 variables when the definition of the variables is being loaded. If you
8524 change the "base" variable after the variables have been loaded, you
8525 won't change the "derived" variables.
8526
8527 This typically affects directory and file variables. For instance,
8528 @code{nnml-directory} is @file{~/Mail/} by default, and all @code{nnml}
8529 directory variables are initialized from that variable, so
8530 @code{nnml-active-file} will be @file{~/Mail/active}. If you define a
8531 new virtual @code{nnml} server, it will @emph{not} suffice to set just
8532 @code{nnml-directory}---you have to explicitly set all the file
8533 variables to be what you want them to be. For a complete list of
8534 variables for each backend, see each backend's section later in this
8535 manual, but here's an example @code{nnml} definition:
8536
8537 @lisp
8538 (nnml "public"
8539 (nnml-directory "~/my-mail/")
8540 (nnml-active-file "~/my-mail/active")
8541 (nnml-newsgroups-file "~/my-mail/newsgroups"))
8542 @end lisp
8543
8544
8545 @node Servers and Methods
8546 @subsection Servers and Methods
8547
8548 Wherever you would normally use a select method
8549 (e.g. @code{gnus-secondary-select-method}, in the group select method,
8550 when browsing a foreign server) you can use a virtual server name
8551 instead. This could potentially save lots of typing. And it's nice all
8552 over.
8553
8554
8555 @node Unavailable Servers
8556 @subsection Unavailable Servers
8557
8558 If a server seems to be unreachable, Gnus will mark that server as
8559 @code{denied}. That means that any subsequent attempt to make contact
8560 with that server will just be ignored. ``It can't be opened,'' Gnus
8561 will tell you, without making the least effort to see whether that is
8562 actually the case or not.
8563
8564 That might seem quite naughty, but it does make sense most of the time.
8565 Let's say you have 10 groups subscribed to on server
8566 @samp{nephelococcygia.com}. This server is located somewhere quite far
8567 away from you and the machine is quite slow, so it takes 1 minute just
8568 to find out that it refuses connection to you today. If Gnus were to
8569 attempt to do that 10 times, you'd be quite annoyed, so Gnus won't
8570 attempt to do that. Once it has gotten a single ``connection refused'',
8571 it will regard that server as ``down''.
8572
8573 So, what happens if the machine was only feeling unwell temporarily?
8574 How do you test to see whether the machine has come up again?
8575
8576 You jump to the server buffer (@pxref{The Server Buffer}) and poke it
8577 with the following commands:
8578
8579 @table @kbd
8580
8581 @item O
8582 @kindex O (Server)
8583 @findex gnus-server-open-server
8584 Try to establish connection to the server on the current line
8585 (@code{gnus-server-open-server}).
8586
8587 @item C
8588 @kindex C (Server)
8589 @findex gnus-server-close-server
8590 Close the connection (if any) to the server
8591 (@code{gnus-server-close-server}).
8592
8593 @item D
8594 @kindex D (Server)
8595 @findex gnus-server-deny-server
8596 Mark the current server as unreachable
8597 (@code{gnus-server-deny-server}).
8598
8599 @item M-o
8600 @kindex M-o (Server)
8601 @findex gnus-server-open-all-servers
8602 Open the connections to all servers in the buffer
8603 (@code{gnus-server-open-all-servers}).
8604
8605 @item M-c
8606 @kindex M-c (Server)
8607 @findex gnus-server-close-all-servers
8608 Close the connections to all servers in the buffer
8609 (@code{gnus-server-close-all-servers}).
8610
8611 @item R
8612 @kindex R (Server)
8613 @findex gnus-server-remove-denials
8614 Remove all marks to whether Gnus was denied connection from any servers
8615 (@code{gnus-server-remove-denials}).
8616
8617 @end table
8618
8619
8620 @node Getting News
8621 @section Getting News
8622 @cindex reading news
8623 @cindex news backends
8624
8625 A newsreader is normally used for reading news. Gnus currently provides
8626 only two methods of getting news---it can read from an @sc{nntp} server,
8627 or it can read from a local spool.
8628
8629 @menu
8630 * NNTP:: Reading news from an @sc{nntp} server.
8631 * News Spool:: Reading news from the local spool.
8632 @end menu
8633
8634
8635 @node NNTP
8636 @subsection @sc{nntp}
8637 @cindex nntp
8638
8639 Subscribing to a foreign group from an @sc{nntp} server is rather easy.
8640 You just specify @code{nntp} as method and the address of the @sc{nntp}
8641 server as the, uhm, address.
8642
8643 If the @sc{nntp} server is located at a non-standard port, setting the
8644 third element of the select method to this port number should allow you
8645 to connect to the right port. You'll have to edit the group info for
8646 that (@pxref{Foreign Groups}).
8647
8648 The name of the foreign group can be the same as a native group. In
8649 fact, you can subscribe to the same group from as many different servers
8650 you feel like. There will be no name collisions.
8651
8652 The following variables can be used to create a virtual @code{nntp}
8653 server:
8654
8655 @table @code
8656
8657 @item nntp-server-opened-hook
8658 @vindex nntp-server-opened-hook
8659 @cindex @sc{mode reader}
8660 @cindex authinfo
8661 @cindex authentification
8662 @cindex nntp authentification
8663 @findex nntp-send-authinfo
8664 @findex nntp-send-mode-reader
8665 is run after a connection has been made. It can be used to send
8666 commands to the @sc{nntp} server after it has been contacted. By
8667 default it sends the command @code{MODE READER} to the server with the
8668 @code{nntp-send-mode-reader} function. This function should always be
8669 present in this hook.
8670
8671 @item nntp-authinfo-function
8672 @vindex nntp-authinfo-function
8673 @findex nntp-send-authinfo
8674 @vindex nntp-authinfo-file
8675 This function will be used to send @samp{AUTHINFO} to the @sc{nntp}
8676 server. The default function is @code{nntp-send-authinfo}, which looks
8677 through your @file{~/.authinfo} (or whatever you've set the
8678 @code{nntp-authinfo-file} variable to) for applicable entries. If none
8679 are found, it will prompt you for a login name and a password. The
8680 format of the @file{~/.authinfo} file is (almost) the same as the
8681 @code{ftp} @file{~/.netrc} file, which is defined in the @code{ftp}
8682 manual page, but here are the salient facts:
8683
8684 @enumerate
8685 @item
8686 The file contains one or more line, each of which define one server.
8687
8688 @item
8689 Each line may contain an arbitrary number of token/value pairs. The
8690 valid tokens include @samp{machine}, @samp{login}, @samp{password},
8691 @samp{default} and @samp{force}. (The latter is not a valid
8692 @file{.netrc}/@code{ftp} token, which is the only way the
8693 @file{.authinfo} file format deviates from the @file{.netrc} file
8694 format.)
8695
8696 @end enumerate
8697
8698 Here's an example file:
8699
8700 @example
8701 machine news.uio.no login larsi password geheimnis
8702 machine nntp.ifi.uio.no login larsi force yes
8703 @end example
8704
8705 The token/value pairs may appear in any order; @samp{machine} doesn't
8706 have to be first, for instance.
8707
8708 In this example, both login name and password have been supplied for the
8709 former server, while the latter has only the login name listed, and the
8710 user will be prompted for the password. The latter also has the
8711 @samp{force} tag, which means that the authinfo will be sent to the
8712 @var{nntp} server upon connection; the default (i.e., when there is not
8713 @samp{force} tag) is to not send authinfo to the @var{nntp} server
8714 until the @var{nntp} server asks for it.
8715
8716 You can also add @samp{default} lines that will apply to all servers
8717 that don't have matching @samp{machine} lines.
8718
8719 @example
8720 default force yes
8721 @end example
8722
8723 This will force sending @samp{AUTHINFO} commands to all servers not
8724 previously mentioned.
8725
8726 Remember to not leave the @file{~/.authinfo} file world-readable.
8727
8728 @item nntp-server-action-alist
8729 @vindex nntp-server-action-alist
8730 This is a list of regexps to match on server types and actions to be
8731 taken when matches are made. For instance, if you want Gnus to beep
8732 every time you connect to innd, you could say something like:
8733
8734 @lisp
8735 (setq nntp-server-action-alist
8736 '(("innd" (ding))))
8737 @end lisp
8738
8739 You probably don't want to do that, though.
8740
8741 The default value is
8742
8743 @lisp
8744 '(("nntpd 1\\.5\\.11t"
8745 (remove-hook 'nntp-server-opened-hook 'nntp-send-mode-reader)))
8746 @end lisp
8747
8748 This ensures that Gnus doesn't send the @code{MODE READER} command to
8749 nntpd 1.5.11t, since that command chokes that server, I've been told.
8750
8751 @item nntp-maximum-request
8752 @vindex nntp-maximum-request
8753 If the @sc{nntp} server doesn't support @sc{nov} headers, this backend
8754 will collect headers by sending a series of @code{head} commands. To
8755 speed things up, the backend sends lots of these commands without
8756 waiting for reply, and then reads all the replies. This is controlled
8757 by the @code{nntp-maximum-request} variable, and is 400 by default. If
8758 your network is buggy, you should set this to 1.
8759
8760 @item nntp-connection-timeout
8761 @vindex nntp-connection-timeout
8762 If you have lots of foreign @code{nntp} groups that you connect to
8763 regularly, you're sure to have problems with @sc{nntp} servers not
8764 responding properly, or being too loaded to reply within reasonable
8765 time. This is can lead to awkward problems, which can be helped
8766 somewhat by setting @code{nntp-connection-timeout}. This is an integer
8767 that says how many seconds the @code{nntp} backend should wait for a
8768 connection before giving up. If it is @code{nil}, which is the default,
8769 no timeouts are done.
8770
8771 @c @item nntp-command-timeout
8772 @c @vindex nntp-command-timeout
8773 @c @cindex PPP connections
8774 @c @cindex dynamic IP addresses
8775 @c If you're running Gnus on a machine that has a dynamically assigned
8776 @c address, Gnus may become confused. If the address of your machine
8777 @c changes after connecting to the @sc{nntp} server, Gnus will simply sit
8778 @c waiting forever for replies from the server. To help with this
8779 @c unfortunate problem, you can set this command to a number. Gnus will
8780 @c then, if it sits waiting for a reply from the server longer than that
8781 @c number of seconds, shut down the connection, start a new one, and resend
8782 @c the command. This should hopefully be transparent to the user. A
8783 @c likely number is 30 seconds.
8784 @c
8785 @c @item nntp-retry-on-break
8786 @c @vindex nntp-retry-on-break
8787 @c If this variable is non-@code{nil}, you can also @kbd{C-g} if Gnus
8788 @c hangs. This will have much the same effect as the command timeout
8789 @c described above.
8790
8791 @item nntp-server-hook
8792 @vindex nntp-server-hook
8793 This hook is run as the last step when connecting to an @sc{nntp}
8794 server.
8795
8796 @findex nntp-open-rlogin
8797 @findex nntp-open-telnet
8798 @findex nntp-open-network-stream
8799 @item nntp-open-connection-function
8800 @vindex nntp-open-connection-function
8801 This function is used to connect to the remote system. Four pre-made
8802 functions are supplied:
8803
8804 @table @code
8805 @item nntp-open-network-stream
8806 This is the default, and simply connects to some port or other on the
8807 remote system.
8808
8809 @item nntp-open-rlogin
8810 Does an @samp{rlogin} on the
8811 remote system, and then does a @samp{telnet} to the @sc{nntp} server
8812 available there.
8813
8814 @code{nntp-open-rlogin}-related variables:
8815
8816 @table @code
8817
8818 @item nntp-rlogin-program
8819 @vindex nntp-rlogin-program
8820 Program used to log in on remote machines. The default is @samp{rsh},
8821 but @samp{ssh} is a popular alternative.
8822
8823 @item nntp-rlogin-parameters
8824 @vindex nntp-rlogin-parameters
8825 This list will be used as the parameter list given to @code{rsh}.
8826
8827 @item nntp-rlogin-user-name
8828 @vindex nntp-rlogin-user-name
8829 User name on the remote system.
8830
8831 @end table
8832
8833 @item nntp-open-telnet
8834 Does a @samp{telnet} to the remote system and then another @samp{telnet}
8835 to get to the @sc{nntp} server.
8836
8837 @code{nntp-open-telnet}-related variables:
8838
8839 @table @code
8840 @item nntp-telnet-command
8841 @vindex nntp-telnet-command
8842 Command used to start @code{telnet}.
8843
8844 @item nntp-telnet-switches
8845 @vindex nntp-telnet-switches
8846 List of strings to be used as the switches to the @code{telnet} command.
8847
8848 @item nntp-telnet-user-name
8849 @vindex nntp-telnet-user-name
8850 User name for log in on the remote system.
8851
8852 @item nntp-telnet-passwd
8853 @vindex nntp-telnet-passwd
8854 Password to use when logging in.
8855
8856 @item nntp-telnet-parameters
8857 @vindex nntp-telnet-parameters
8858 A list of strings executed as a command after logging in
8859 via @code{telnet}.
8860
8861 @item nntp-telnet-shell-prompt
8862 @vindex nntp-telnet-shell-prompt
8863 Regexp matching the shell prompt on the remote machine. The default is
8864 @samp{bash\\|\$ *\r?$\\|> *\r?}.
8865
8866 @item nntp-open-telnet-envuser
8867 @vindex nntp-open-telnet-envuser
8868 If non-@code{nil}, the @code{telnet} session (client and server both)
8869 will support the @code{ENVIRON} option and not prompt for login name.
8870 This works for Solaris @code{telnet}, for instance.
8871
8872 @end table
8873
8874 @findex nntp-open-ssl-stream
8875 @item nntp-open-ssl-stream
8876 Opens a connection to a server over a @dfn{secure} channel. To use this
8877 you must have SSLay installed
8878 (@file{ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL}, and you also need
8879 @file{ssl.el} (from the W3 distributeion, for instance). You then
8880 define a server as follows:
8881
8882 @lisp
8883 ;; Type `C-c C-c' after you've finished editing.
8884 ;;
8885 ;; "snews" is port 563 and is predefined in our /etc/services
8886 ;;
8887 (nntp "snews.bar.com"
8888 (nntp-open-connection-function nntp-open-ssl-stream)
8889 (nntp-port-number "snews")
8890 (nntp-address "snews.bar.com"))
8891 @end lisp
8892
8893 @end table
8894
8895 @item nntp-end-of-line
8896 @vindex nntp-end-of-line
8897 String to use as end-of-line marker when talking to the @sc{nntp}
8898 server. This is @samp{\r\n} by default, but should be @samp{\n} when
8899 using @code{rlogin} to talk to the server.
8900
8901 @item nntp-rlogin-user-name
8902 @vindex nntp-rlogin-user-name
8903 User name on the remote system when using the @code{rlogin} connect
8904 function.
8905
8906 @item nntp-address
8907 @vindex nntp-address
8908 The address of the remote system running the @sc{nntp} server.
8909
8910 @item nntp-port-number
8911 @vindex nntp-port-number
8912 Port number to connect to when using the @code{nntp-open-network-stream}
8913 connect function.
8914
8915 @item nntp-buggy-select
8916 @vindex nntp-buggy-select
8917 Set this to non-@code{nil} if your select routine is buggy.
8918
8919 @item nntp-nov-is-evil
8920 @vindex nntp-nov-is-evil
8921 If the @sc{nntp} server does not support @sc{nov}, you could set this
8922 variable to @code{t}, but @code{nntp} usually checks automatically whether @sc{nov}
8923 can be used.
8924
8925 @item nntp-xover-commands
8926 @vindex nntp-xover-commands
8927 @cindex nov
8928 @cindex XOVER
8929 List of strings used as commands to fetch @sc{nov} lines from a
8930 server. The default value of this variable is @code{("XOVER"
8931 "XOVERVIEW")}.
8932
8933 @item nntp-nov-gap
8934 @vindex nntp-nov-gap
8935 @code{nntp} normally sends just one big request for @sc{nov} lines to
8936 the server. The server responds with one huge list of lines. However,
8937 if you have read articles 2-5000 in the group, and only want to read
8938 article 1 and 5001, that means that @code{nntp} will fetch 4999 @sc{nov}
8939 lines that you will not need. This variable says how
8940 big a gap between two consecutive articles is allowed to be before the
8941 @code{XOVER} request is split into several request. Note that if your
8942 network is fast, setting this variable to a really small number means
8943 that fetching will probably be slower. If this variable is @code{nil},
8944 @code{nntp} will never split requests. The default is 5.
8945
8946 @item nntp-prepare-server-hook
8947 @vindex nntp-prepare-server-hook
8948 A hook run before attempting to connect to an @sc{nntp} server.
8949
8950 @item nntp-warn-about-losing-connection
8951 @vindex nntp-warn-about-losing-connection
8952 If this variable is non-@code{nil}, some noise will be made when a
8953 server closes connection.
8954
8955 @item nntp-record-commands
8956 @vindex nntp-record-commands
8957 If non-@code{nil}, @code{nntp} will log all commands it sends to the
8958 @sc{nntp} server (along with a timestep) in the @samp{*nntp-log*}
8959 buffer. This is useful if you are debugging a Gnus/@sc{nntp} connection
8960 that doesn't seem to work.
8961
8962 @end table
8963
8964
8965 @node News Spool
8966 @subsection News Spool
8967 @cindex nnspool
8968 @cindex news spool
8969
8970 Subscribing to a foreign group from the local spool is extremely easy,
8971 and might be useful, for instance, to speed up reading groups that
8972 contain very big articles---@samp{alt.binaries.pictures.furniture}, for
8973 instance.
8974
8975 Anyways, you just specify @code{nnspool} as the method and @code{""} (or
8976 anything else) as the address.
8977
8978 If you have access to a local spool, you should probably use that as the
8979 native select method (@pxref{Finding the News}). It is normally faster
8980 than using an @code{nntp} select method, but might not be. It depends.
8981 You just have to try to find out what's best at your site.
8982
8983 @table @code
8984
8985 @item nnspool-inews-program
8986 @vindex nnspool-inews-program
8987 Program used to post an article.
8988
8989 @item nnspool-inews-switches
8990 @vindex nnspool-inews-switches
8991 Parameters given to the inews program when posting an article.
8992
8993 @item nnspool-spool-directory
8994 @vindex nnspool-spool-directory
8995 Where @code{nnspool} looks for the articles. This is normally
8996 @file{/usr/spool/news/}.
8997
8998 @item nnspool-nov-directory
8999 @vindex nnspool-nov-directory
9000 Where @code{nnspool} will look for @sc{nov} files. This is normally
9001 @file{/usr/spool/news/over.view/}.
9002
9003 @item nnspool-lib-dir
9004 @vindex nnspool-lib-dir
9005 Where the news lib dir is (@file{/usr/lib/news/} by default).
9006
9007 @item nnspool-active-file
9008 @vindex nnspool-active-file
9009 The path to the active file.
9010
9011 @item nnspool-newsgroups-file
9012 @vindex nnspool-newsgroups-file
9013 The path to the group descriptions file.
9014
9015 @item nnspool-history-file
9016 @vindex nnspool-history-file
9017 The path to the news history file.
9018
9019 @item nnspool-active-times-file
9020 @vindex nnspool-active-times-file
9021 The path to the active date file.
9022
9023 @item nnspool-nov-is-evil
9024 @vindex nnspool-nov-is-evil
9025 If non-@code{nil}, @code{nnspool} won't try to use any @sc{nov} files
9026 that it finds.
9027
9028 @item nnspool-sift-nov-with-sed
9029 @vindex nnspool-sift-nov-with-sed
9030 @cindex sed
9031 If non-@code{nil}, which is the default, use @code{sed} to get the
9032 relevant portion from the overview file. If nil, @code{nnspool} will
9033 load the entire file into a buffer and process it there.
9034
9035 @end table
9036
9037
9038 @node Getting Mail
9039 @section Getting Mail
9040 @cindex reading mail
9041 @cindex mail
9042
9043 Reading mail with a newsreader---isn't that just plain WeIrD? But of
9044 course.
9045
9046 @menu
9047 * Getting Started Reading Mail:: A simple cookbook example.
9048 * Splitting Mail:: How to create mail groups.
9049 * Mail Backend Variables:: Variables for customizing mail handling.
9050 * Fancy Mail Splitting:: Gnus can do hairy splitting of incoming mail.
9051 * Mail and Procmail:: Reading mail groups that procmail create.
9052 * Incorporating Old Mail:: What about the old mail you have?
9053 * Expiring Mail:: Getting rid of unwanted mail.
9054 * Washing Mail:: Removing gruft from the mail you get.
9055 * Duplicates:: Dealing with duplicated mail.
9056 * Not Reading Mail:: Using mail backends for reading other files.
9057 * Choosing a Mail Backend:: Gnus can read a variety of mail formats.
9058 @end menu
9059
9060
9061 @node Getting Started Reading Mail
9062 @subsection Getting Started Reading Mail
9063
9064 It's quite easy to use Gnus to read your new mail. You just plonk the
9065 mail backend of your choice into @code{gnus-secondary-select-methods},
9066 and things will happen automatically.
9067
9068 For instance, if you want to use @code{nnml} (which is a "one file per
9069 mail" backend), you could put the following in your @file{.gnus} file:
9070
9071 @lisp
9072 (setq gnus-secondary-select-methods
9073 '((nnml "private")))
9074 @end lisp
9075
9076 Now, the next time you start Gnus, this backend will be queried for new
9077 articles, and it will move all the messages in your spool file to its
9078 directory, which is @code{~/Mail/} by default. The new group that will
9079 be created (@samp{mail.misc}) will be subscribed, and you can read it
9080 like any other group.
9081
9082 You will probably want to split the mail into several groups, though:
9083
9084 @lisp
9085 (setq nnmail-split-methods
9086 '(("junk" "^From:.*Lars Ingebrigtsen")
9087 ("crazy" "^Subject:.*die\\|^Organization:.*flabby")
9088 ("other" "")))
9089 @end lisp
9090
9091 This will result in three new @code{nnml} mail groups being created:
9092 @samp{nnml:junk}, @samp{nnml:crazy}, and @samp{nnml:other}. All the
9093 mail that doesn't fit into the first two groups will be placed in the
9094 last group.
9095
9096 This should be sufficient for reading mail with Gnus. You might want to
9097 give the other sections in this part of the manual a perusal, though.
9098 Especially @pxref{Choosing a Mail Backend} and @pxref{Expiring Mail}.
9099
9100
9101 @node Splitting Mail
9102 @subsection Splitting Mail
9103 @cindex splitting mail
9104 @cindex mail splitting
9105
9106 @vindex nnmail-split-methods
9107 The @code{nnmail-split-methods} variable says how the incoming mail is
9108 to be split into groups.
9109
9110 @lisp
9111 (setq nnmail-split-methods
9112 '(("mail.junk" "^From:.*Lars Ingebrigtsen")
9113 ("mail.crazy" "^Subject:.*die\\|^Organization:.*flabby")
9114 ("mail.other" "")))
9115 @end lisp
9116
9117 This variable is a list of lists, where the first element of each of
9118 these lists is the name of the mail group (they do not have to be called
9119 something beginning with @samp{mail}, by the way), and the second
9120 element is a regular expression used on the header of each mail to
9121 determine if it belongs in this mail group. The first string may
9122 contain @samp{\\1} forms, like the ones used by @code{replace-match} to
9123 insert sub-expressions from the matched text. For instance:
9124
9125 @lisp
9126 ("list.\\1" "From:.*\\(.*\\)-list@@majordomo.com")
9127 @end lisp
9128
9129 The second element can also be a function. In that case, it will be
9130 called narrowed to the headers with the first element of the rule as the
9131 argument. It should return a non-@code{nil} value if it thinks that the
9132 mail belongs in that group.
9133
9134 The last of these groups should always be a general one, and the regular
9135 expression should @emph{always} be @samp{} so that it matches any mails
9136 that haven't been matched by any of the other regexps. (These rules are
9137 processed from the beginning of the alist toward the end. The first
9138 rule to make a match will "win", unless you have crossposting enabled.
9139 In that case, all matching rules will "win".)
9140
9141 If you like to tinker with this yourself, you can set this variable to a
9142 function of your choice. This function will be called without any
9143 arguments in a buffer narrowed to the headers of an incoming mail
9144 message. The function should return a list of group names that it
9145 thinks should carry this mail message.
9146
9147 Note that the mail backends are free to maul the poor, innocent,
9148 incoming headers all they want to. They all add @code{Lines} headers;
9149 some add @code{X-Gnus-Group} headers; most rename the Unix mbox
9150 @code{From<SPACE>} line to something else.
9151
9152 @vindex nnmail-crosspost
9153 The mail backends all support cross-posting. If several regexps match,
9154 the mail will be ``cross-posted'' to all those groups.
9155 @code{nnmail-crosspost} says whether to use this mechanism or not. Note
9156 that no articles are crossposted to the general (@samp{}) group.
9157
9158 @vindex nnmail-crosspost-link-function
9159 @cindex crosspost
9160 @cindex links
9161 @code{nnmh} and @code{nnml} makes crossposts by creating hard links to
9162 the crossposted articles. However, not all file systems support hard
9163 links. If that's the case for you, set
9164 @code{nnmail-crosspost-link-function} to @code{copy-file}. (This
9165 variable is @code{add-name-to-file} by default.)
9166
9167 @kindex M-x nnmail-split-history
9168 @kindex nnmail-split-history
9169 If you wish to see where the previous mail split put the messages, you
9170 can use the @kbd{M-x nnmail-split-history} command.
9171
9172 Gnus gives you all the opportunity you could possibly want for shooting
9173 yourself in the foot. Let's say you create a group that will contain
9174 all the mail you get from your boss. And then you accidentally
9175 unsubscribe from the group. Gnus will still put all the mail from your
9176 boss in the unsubscribed group, and so, when your boss mails you ``Have
9177 that report ready by Monday or you're fired!'', you'll never see it and,
9178 come Tuesday, you'll still believe that you're gainfully employed while
9179 you really should be out collecting empty bottles to save up for next
9180 month's rent money.
9181
9182
9183 @node Mail Backend Variables
9184 @subsection Mail Backend Variables
9185
9186 These variables are (for the most part) pertinent to all the various
9187 mail backends.
9188
9189 @table @code
9190 @vindex nnmail-read-incoming-hook
9191 @item nnmail-read-incoming-hook
9192 The mail backends all call this hook after reading new mail. You can
9193 use this hook to notify any mail watch programs, if you want to.
9194
9195 @vindex nnmail-spool-file
9196 @item nnmail-spool-file
9197 @cindex POP mail
9198 @cindex MAILHOST
9199 @cindex movemail
9200 @vindex nnmail-pop-password
9201 @vindex nnmail-pop-password-required
9202 The backends will look for new mail in this file. If this variable is
9203 @code{nil}, the mail backends will never attempt to fetch mail by
9204 themselves. If you are using a POP mail server and your name is
9205 @samp{larsi}, you should set this variable to @samp{po:larsi}. If
9206 your name is not @samp{larsi}, you should probably modify that
9207 slightly, but you may have guessed that already, you smart & handsome
9208 devil! You can also set this variable to @code{pop}, and Gnus will try
9209 to figure out the POP mail string by itself. In any case, Gnus will
9210 call @code{movemail} which will contact the POP server named in the
9211 @code{MAILHOST} environment variable. If the POP server needs a
9212 password, you can either set @code{nnmail-pop-password-required} to
9213 @code{t} and be prompted for the password, or set
9214 @code{nnmail-pop-password} to the password itself.
9215
9216 @code{nnmail-spool-file} can also be a list of mailboxes.
9217
9218 Your Emacs has to have been configured with @samp{--with-pop} before
9219 compilation. This is the default, but some installations have it
9220 switched off.
9221
9222 When you use a mail backend, Gnus will slurp all your mail from your
9223 inbox and plonk it down in your home directory. Gnus doesn't move any
9224 mail if you're not using a mail backend---you have to do a lot of magic
9225 invocations first. At the time when you have finished drawing the
9226 pentagram, lightened the candles, and sacrificed the goat, you really
9227 shouldn't be too surprised when Gnus moves your mail.
9228
9229 @vindex nnmail-use-procmail
9230 @vindex nnmail-procmail-suffix
9231 @item nnmail-use-procmail
9232 If non-@code{nil}, the mail backends will look in
9233 @code{nnmail-procmail-directory} for incoming mail. All the files in
9234 that directory that have names ending in @code{nnmail-procmail-suffix}
9235 will be considered incoming mailboxes, and will be searched for new
9236 mail.
9237
9238 @vindex nnmail-crash-box
9239 @item nnmail-crash-box
9240 When a mail backend reads a spool file, mail is first moved to this
9241 file, which is @file{~/.gnus-crash-box} by default. If this file
9242 already exists, it will always be read (and incorporated) before any
9243 other spool files.
9244
9245 @vindex nnmail-prepare-incoming-hook
9246 @item nnmail-prepare-incoming-hook
9247 This is run in a buffer that holds all the new incoming mail, and can be
9248 used for, well, anything, really.
9249
9250 @vindex nnmail-split-hook
9251 @item nnmail-split-hook
9252 @findex article-decode-rfc1522
9253 @findex RFC1522 decoding
9254 Hook run in the buffer where the mail headers of each message is kept
9255 just before the splitting based on these headers is done. The hook is
9256 free to modify the buffer contents in any way it sees fit---the buffer
9257 is discarded after the splitting has been done, and no changes performed
9258 in the buffer will show up in any files. @code{gnus-article-decode-rfc1522}
9259 is one likely function to add to this hook.
9260
9261 @vindex nnmail-pre-get-new-mail-hook
9262 @vindex nnmail-post-get-new-mail-hook
9263 @item nnmail-pre-get-new-mail-hook
9264 @itemx nnmail-post-get-new-mail-hook
9265 These are two useful hooks executed when treating new incoming
9266 mail---@code{nnmail-pre-get-new-mail-hook} (is called just before
9267 starting to handle the new mail) and
9268 @code{nnmail-post-get-new-mail-hook} (is called when the mail handling
9269 is done). Here's and example of using these two hooks to change the
9270 default file modes the new mail files get:
9271
9272 @lisp
9273 (add-hook 'gnus-pre-get-new-mail-hook
9274 (lambda () (set-default-file-modes 511)))
9275
9276 (add-hook 'gnus-post-get-new-mail-hook
9277 (lambda () (set-default-file-modes 551)))
9278 @end lisp
9279
9280 @item nnmail-tmp-directory
9281 @vindex nnmail-tmp-directory
9282 This variable says where to move incoming mail to -- while processing
9283 it. This is usually done in the same directory that the mail backend
9284 inhabits (e.g., @file{~/Mail/}), but if this variable is non-@code{nil},
9285 it will be used instead.
9286
9287 @item nnmail-movemail-program
9288 @vindex nnmail-movemail-program
9289 This program is executed to move mail from the user's inbox to her home
9290 directory. The default is @samp{movemail}.
9291
9292 This can also be a function. In that case, the function will be called
9293 with two parameters -- the name of the inbox, and the file to be moved
9294 to.
9295
9296 @item nnmail-delete-incoming
9297 @vindex nnmail-delete-incoming
9298 @cindex incoming mail files
9299 @cindex deleting incoming files
9300 If non-@code{nil}, the mail backends will delete the temporary incoming
9301 file after splitting mail into the proper groups. This is @code{t} by
9302 default.
9303
9304 @c This is @code{nil} by
9305 @c default for reasons of security.
9306
9307 @c Since Red Gnus is an alpha release, it is to be expected to lose mail.
9308 (No Gnus release since (ding) Gnus 0.10 (or something like that) have
9309 lost mail, I think, but that's not the point. (Except certain versions
9310 of Red Gnus.)) By not deleting the Incoming* files, one can be sure not
9311 to lose mail -- if Gnus totally whacks out, one can always recover what
9312 was lost.
9313
9314 You may delete the @file{Incoming*} files at will.
9315
9316 @item nnmail-use-long-file-names
9317 @vindex nnmail-use-long-file-names
9318 If non-@code{nil}, the mail backends will use long file and directory
9319 names. Groups like @samp{mail.misc} will end up in directories
9320 (assuming use of @code{nnml} backend) or files (assuming use of
9321 @code{nnfolder} backend) like @file{mail.misc}. If it is @code{nil},
9322 the same group will end up in @file{mail/misc}.
9323
9324 @item nnmail-delete-file-function
9325 @vindex nnmail-delete-file-function
9326 @findex delete-file
9327 Function called to delete files. It is @code{delete-file} by default.
9328
9329 @item nnmail-cache-accepted-message-ids
9330 @vindex nnmail-cache-accepted-message-ids
9331 If non-@code{nil}, put the @code{Message-ID}s of articles imported into
9332 the backend (via @code{Gcc}, for instance) into the mail duplication
9333 discovery cache. The default is @code{nil}.
9334
9335 @end table
9336
9337
9338 @node Fancy Mail Splitting
9339 @subsection Fancy Mail Splitting
9340 @cindex mail splitting
9341 @cindex fancy mail splitting
9342
9343 @vindex nnmail-split-fancy
9344 @findex nnmail-split-fancy
9345 If the rather simple, standard method for specifying how to split mail
9346 doesn't allow you to do what you want, you can set
9347 @code{nnmail-split-methods} to @code{nnmail-split-fancy}. Then you can
9348 play with the @code{nnmail-split-fancy} variable.
9349
9350 Let's look at an example value of this variable first:
9351
9352 @lisp
9353 ;; Messages from the mailer daemon are not crossposted to any of
9354 ;; the ordinary groups. Warnings are put in a separate group
9355 ;; from real errors.
9356 (| ("from" mail (| ("subject" "warn.*" "mail.warning")
9357 "mail.misc"))
9358 ;; Non-error messages are crossposted to all relevant
9359 ;; groups, but we don't crosspost between the group for the
9360 ;; (ding) list and the group for other (ding) related mail.
9361 (& (| (any "ding@@ifi\\.uio\\.no" "ding.list")
9362 ("subject" "ding" "ding.misc"))
9363 ;; Other mailing lists...
9364 (any "procmail@@informatik\\.rwth-aachen\\.de" "procmail.list")
9365 (any "SmartList@@informatik\\.rwth-aachen\\.de" "SmartList.list")
9366 ;; People...
9367 (any "larsi@@ifi\\.uio\\.no" "people.Lars_Magne_Ingebrigtsen"))
9368 ;; Unmatched mail goes to the catch all group.
9369 "misc.misc")
9370 @end lisp
9371
9372 This variable has the format of a @dfn{split}. A split is a (possibly)
9373 recursive structure where each split may contain other splits. Here are
9374 the five possible split syntaxes:
9375
9376 @enumerate
9377
9378 @item
9379 @samp{group}: If the split is a string, that will be taken as a group
9380 name. Normal regexp match expansion will be done. See below for
9381 examples.
9382
9383 @item
9384 @var{(FIELD VALUE SPLIT)}: If the split is a list, the first element of
9385 which is a string, then store the message as specified by SPLIT, if
9386 header FIELD (a regexp) contains VALUE (also a regexp).
9387
9388 @item
9389 @var{(| SPLIT...)}: If the split is a list, and the first element is
9390 @code{|} (vertical bar), then process each SPLIT until one of them
9391 matches. A SPLIT is said to match if it will cause the mail message to
9392 be stored in one or more groups.
9393
9394 @item
9395 @var{(& SPLIT...)}: If the split is a list, and the first element is
9396 @code{&}, then process all SPLITs in the list.
9397
9398 @item
9399 @code{junk}: If the split is the symbol @code{junk}, then don't save
9400 this message. Use with extreme caution.
9401
9402 @item
9403 @var{(: function arg1 arg2 ...)}: If the split is a list, and the first
9404 element is @code{:}, then the second element will be called as a
9405 function with @var{args} given as arguments. The function should return
9406 a SPLIT.
9407
9408 @item
9409 @code{nil}: If the split is @code{nil}, it is ignored.
9410
9411 @end enumerate
9412
9413 In these splits, @var{FIELD} must match a complete field name.
9414 @var{VALUE} must match a complete word according to the fundamental mode
9415 syntax table. You can use @code{.*} in the regexps to match partial
9416 field names or words. In other words, all @var{VALUE}'s are wrapped in
9417 @samp{\<} and @samp{\>} pairs.
9418
9419 @vindex nnmail-split-abbrev-alist
9420 @var{FIELD} and @var{VALUE} can also be lisp symbols, in that case they
9421 are expanded as specified by the variable
9422 @code{nnmail-split-abbrev-alist}. This is an alist of cons cells, where
9423 the @code{car} of a cell contains the key, and the @code{cdr} contains the associated
9424 value.
9425
9426 @vindex nnmail-split-fancy-syntax-table
9427 @code{nnmail-split-fancy-syntax-table} is the syntax table in effect
9428 when all this splitting is performed.
9429
9430 If you want to have Gnus create groups dynamically based on some
9431 information in the headers (i.e., do @code{replace-match}-like
9432 substitutions in the group names), you can say things like:
9433
9434 @example
9435 (any "debian-\\b\\(\\w+\\)@@lists.debian.org" "mail.debian.\\1")
9436 @end example
9437
9438 If the string contains the element @samp{\&}, then the previously
9439 matched string will be substituted. Similarly, the elements @samp{\\1}
9440 up to @samp{\\9} will be substituted with the text matched by the
9441 groupings 1 through 9.
9442
9443
9444 @node Mail and Procmail
9445 @subsection Mail and Procmail
9446 @cindex procmail
9447
9448 @cindex slocal
9449 @cindex elm
9450 Many people use @code{procmail} (or some other mail filter program or
9451 external delivery agent---@code{slocal}, @code{elm}, etc) to split
9452 incoming mail into groups. If you do that, you should set
9453 @code{nnmail-spool-file} to @code{procmail} to ensure that the mail
9454 backends never ever try to fetch mail by themselves.
9455
9456 If you have a combined @code{procmail}/POP/mailbox setup, you can do
9457 something like the following:
9458
9459 @vindex nnmail-use-procmail
9460 @lisp
9461 (setq nnmail-use-procmail t)
9462 (setq nnmail-spool-file
9463 '("/usr/spool/mail/my-name" "po:my-name"))
9464 @end lisp
9465
9466 This also means that you probably don't want to set
9467 @code{nnmail-split-methods} either, which has some, perhaps, unexpected
9468 side effects.
9469
9470 When a mail backend is queried for what groups it carries, it replies
9471 with the contents of that variable, along with any groups it has figured
9472 out that it carries by other means. None of the backends, except
9473 @code{nnmh}, actually go out to the disk and check what groups actually
9474 exist. (It's not trivial to distinguish between what the user thinks is
9475 a basis for a newsgroup and what is just a plain old file or directory.)
9476
9477 This means that you have to tell Gnus (and the backends) by hand what
9478 groups exist.
9479
9480 Let's take the @code{nnmh} backend as an example:
9481
9482 The folders are located in @code{nnmh-directory}, say, @file{~/Mail/}.
9483 There are three folders, @file{foo}, @file{bar} and @file{mail.baz}.
9484
9485 Go to the group buffer and type @kbd{G m}. When prompted, answer
9486 @samp{foo} for the name and @samp{nnmh} for the method. Repeat
9487 twice for the two other groups, @samp{bar} and @samp{mail.baz}. Be sure
9488 to include all your mail groups.
9489
9490 That's it. You are now set to read your mail. An active file for this
9491 method will be created automatically.
9492
9493 @vindex nnmail-procmail-suffix
9494 @vindex nnmail-procmail-directory
9495 If you use @code{nnfolder} or any other backend that store more than a
9496 single article in each file, you should never have procmail add mails to
9497 the file that Gnus sees. Instead, procmail should put all incoming mail
9498 in @code{nnmail-procmail-directory}. To arrive at the file name to put
9499 the incoming mail in, append @code{nnmail-procmail-suffix} to the group
9500 name. The mail backends will read the mail from these files.
9501
9502 @vindex nnmail-resplit-incoming
9503 When Gnus reads a file called @file{mail.misc.spool}, this mail will be
9504 put in the @code{mail.misc}, as one would expect. However, if you want
9505 Gnus to split the mail the normal way, you could set
9506 @code{nnmail-resplit-incoming} to @code{t}.
9507
9508 @vindex nnmail-keep-last-article
9509 If you use @code{procmail} to split things directly into an @code{nnmh}
9510 directory (which you shouldn't do), you should set
9511 @code{nnmail-keep-last-article} to non-@code{nil} to prevent Gnus from
9512 ever expiring the final article (i.e., the article with the highest
9513 article number) in a mail newsgroup. This is quite, quite important.
9514
9515 Here's an example setup: The incoming spools are located in
9516 @file{~/incoming/} and have @samp{""} as suffixes (i.e., the incoming
9517 spool files have the same names as the equivalent groups). The
9518 @code{nnfolder} backend is to be used as the mail interface, and the
9519 @code{nnfolder} directory is @file{~/fMail/}.
9520
9521 @lisp
9522 (setq nnfolder-directory "~/fMail/")
9523 (setq nnmail-spool-file 'procmail)
9524 (setq nnmail-procmail-directory "~/incoming/")
9525 (setq gnus-secondary-select-methods '((nnfolder "")))
9526 (setq nnmail-procmail-suffix "")
9527 @end lisp
9528
9529
9530 @node Incorporating Old Mail
9531 @subsection Incorporating Old Mail
9532
9533 Most people have lots of old mail stored in various file formats. If
9534 you have set up Gnus to read mail using one of the spiffy Gnus mail
9535 backends, you'll probably wish to have that old mail incorporated into
9536 your mail groups.
9537
9538 Doing so can be quite easy.
9539
9540 To take an example: You're reading mail using @code{nnml}
9541 (@pxref{Mail Spool}), and have set @code{nnmail-split-methods} to a
9542 satisfactory value (@pxref{Splitting Mail}). You have an old Unix mbox
9543 file filled with important, but old, mail. You want to move it into
9544 your @code{nnml} groups.
9545
9546 Here's how:
9547
9548 @enumerate
9549 @item
9550 Go to the group buffer.
9551
9552 @item
9553 Type `G f' and give the path to the mbox file when prompted to create an
9554 @code{nndoc} group from the mbox file (@pxref{Foreign Groups}).
9555
9556 @item
9557 Type `SPACE' to enter the newly created group.
9558
9559 @item
9560 Type `M P b' to process-mark all articles in this group's buffer
9561 (@pxref{Setting Process Marks}).
9562
9563 @item
9564 Type `B r' to respool all the process-marked articles, and answer
9565 @samp{nnml} when prompted (@pxref{Mail Group Commands}).
9566 @end enumerate
9567
9568 All the mail messages in the mbox file will now also be spread out over
9569 all your @code{nnml} groups. Try entering them and check whether things
9570 have gone without a glitch. If things look ok, you may consider
9571 deleting the mbox file, but I wouldn't do that unless I was absolutely
9572 sure that all the mail has ended up where it should be.
9573
9574 Respooling is also a handy thing to do if you're switching from one mail
9575 backend to another. Just respool all the mail in the old mail groups
9576 using the new mail backend.
9577
9578
9579 @node Expiring Mail
9580 @subsection Expiring Mail
9581 @cindex article expiry
9582
9583 Traditional mail readers have a tendency to remove mail articles when
9584 you mark them as read, in some way. Gnus takes a fundamentally
9585 different approach to mail reading.
9586
9587 Gnus basically considers mail just to be news that has been received in
9588 a rather peculiar manner. It does not think that it has the power to
9589 actually change the mail, or delete any mail messages. If you enter a
9590 mail group, and mark articles as ``read'', or kill them in some other
9591 fashion, the mail articles will still exist on the system. I repeat:
9592 Gnus will not delete your old, read mail. Unless you ask it to, of
9593 course.
9594
9595 To make Gnus get rid of your unwanted mail, you have to mark the
9596 articles as @dfn{expirable}. This does not mean that the articles will
9597 disappear right away, however. In general, a mail article will be
9598 deleted from your system if, 1) it is marked as expirable, AND 2) it is
9599 more than one week old. If you do not mark an article as expirable, it
9600 will remain on your system until hell freezes over. This bears
9601 repeating one more time, with some spurious capitalizations: IF you do
9602 NOT mark articles as EXPIRABLE, Gnus will NEVER delete those ARTICLES.
9603
9604 @vindex gnus-auto-expirable-newsgroups
9605 You do not have to mark articles as expirable by hand. Groups that
9606 match the regular expression @code{gnus-auto-expirable-newsgroups} will
9607 have all articles that you read marked as expirable automatically. All
9608 articles marked as expirable have an @samp{E} in the first
9609 column in the summary buffer.
9610
9611 By default, if you have auto expiry switched on, Gnus will mark all the
9612 articles you read as expirable, no matter if they were read or unread
9613 before. To avoid having articles marked as read marked as expirable
9614 automatically, you can put something like the following in your
9615 @file{.gnus} file:
9616
9617 @vindex gnus-mark-article-hook
9618 @lisp
9619 (remove-hook 'gnus-mark-article-hook
9620 'gnus-summary-mark-read-and-unread-as-read)
9621 (add-hook 'gnus-mark-article-hook 'gnus-summary-mark-unread-as-read)
9622 @end lisp
9623
9624 Note that making a group auto-expirable doesn't mean that all read
9625 articles are expired---only the articles marked as expirable
9626 will be expired. Also note that using the @kbd{d} command won't make
9627 groups expirable---only semi-automatic marking of articles as read will
9628 mark the articles as expirable in auto-expirable groups.
9629
9630 Let's say you subscribe to a couple of mailing lists, and you want the
9631 articles you have read to disappear after a while:
9632
9633 @lisp
9634 (setq gnus-auto-expirable-newsgroups
9635 "mail.nonsense-list\\|mail.nice-list")
9636 @end lisp
9637
9638 Another way to have auto-expiry happen is to have the element
9639 @code{auto-expire} in the group parameters of the group.
9640
9641 If you use adaptive scoring (@pxref{Adaptive Scoring}) and
9642 auto-expiring, you'll have problems. Auto-expiring and adaptive scoring
9643 don't really mix very well.
9644
9645 @vindex nnmail-expiry-wait
9646 The @code{nnmail-expiry-wait} variable supplies the default time an
9647 expirable article has to live. Gnus starts counting days from when the
9648 message @emph{arrived}, not from when it was sent. The default is seven
9649 days.
9650
9651 Gnus also supplies a function that lets you fine-tune how long articles
9652 are to live, based on what group they are in. Let's say you want to
9653 have one month expiry period in the @samp{mail.private} group, a one day
9654 expiry period in the @samp{mail.junk} group, and a six day expiry period
9655 everywhere else:
9656
9657 @vindex nnmail-expiry-wait-function
9658 @lisp
9659 (setq nnmail-expiry-wait-function
9660 (lambda (group)
9661 (cond ((string= group "mail.private")
9662 31)
9663 ((string= group "mail.junk")
9664 1)
9665 ((string= group "important")
9666 'never)
9667 (t
9668 6))))
9669 @end lisp
9670
9671 The group names this function is fed are ``unadorned'' group
9672 names---no @samp{nnml:} prefixes and the like.
9673
9674 The @code{nnmail-expiry-wait} variable and
9675 @code{nnmail-expiry-wait-function} function can either be a number (not
9676 necessarily an integer) or one of the symbols @code{immediate} or
9677 @code{never}.
9678
9679 You can also use the @code{expiry-wait} group parameter to selectively
9680 change the expiry period (@pxref{Group Parameters}).
9681
9682 @vindex nnmail-keep-last-article
9683 If @code{nnmail-keep-last-article} is non-@code{nil}, Gnus will never
9684 expire the final article in a mail newsgroup. This is to make life
9685 easier for procmail users.
9686
9687 @vindex gnus-total-expirable-newsgroups
9688 By the way: That line up there, about Gnus never expiring non-expirable
9689 articles, is a lie. If you put @code{total-expire} in the group
9690 parameters, articles will not be marked as expirable, but all read
9691 articles will be put through the expiry process. Use with extreme
9692 caution. Even more dangerous is the
9693 @code{gnus-total-expirable-newsgroups} variable. All groups that match
9694 this regexp will have all read articles put through the expiry process,
9695 which means that @emph{all} old mail articles in the groups in question
9696 will be deleted after a while. Use with extreme caution, and don't come
9697 crying to me when you discover that the regexp you used matched the
9698 wrong group and all your important mail has disappeared. Be a
9699 @emph{man}! Or a @emph{woman}! Whatever you feel more comfortable
9700 with! So there!
9701
9702 Most people make most of their mail groups total-expirable, though.
9703
9704
9705 @node Washing Mail
9706 @subsection Washing Mail
9707 @cindex mail washing
9708 @cindex list server brain damage
9709 @cindex incoming mail treatment
9710
9711 Mailers and list servers are notorious for doing all sorts of really,
9712 really stupid things with mail. ``Hey, RFC822 doesn't explicitly
9713 prohibit us from adding the string @code{wE aRe ElItE!!!!!1!!} to the
9714 end of all lines passing through our server, so let's do that!!!!1!''
9715 Yes, but RFC822 wasn't designed to be read by morons. Things that were
9716 considered to be self-evident were not discussed. So. Here we are.
9717
9718 Case in point: The German version of Microsoft Exchange adds @samp{AW:
9719 } to the subjects of replies instead of @samp{Re: }. I could pretend to
9720 be shocked and dismayed by this, but I haven't got the energy. It is to
9721 laugh.
9722
9723 Gnus provides a plethora of functions for washing articles while
9724 displaying them, but it might be nicer to do the filtering before
9725 storing the mail to disc. For that purpose, we have three hooks and
9726 various functions that can be put in these hooks.
9727
9728 @table @code
9729 @item nnmail-prepare-incoming-hook
9730 @vindex nnmail-prepare-incoming-hook
9731 This hook is called before doing anything with the mail and is meant for
9732 grand, sweeping gestures. Functions to be used include:
9733
9734 @table @code
9735 @item nnheader-ms-strip-cr
9736 @findex nnheader-ms-strip-cr
9737 Remove trailing carriage returns from each line. This is default on
9738 Emacs running on MS machines.
9739
9740 @end table
9741
9742 @item nnmail-prepare-incoming-header-hook
9743 @vindex nnmail-prepare-incoming-header-hook
9744 This hook is called narrowed to each header. It can be used when
9745 cleaning up the headers. Functions that can be used include:
9746
9747 @table @code
9748 @item nnmail-remove-leading-whitespace
9749 @findex nnmail-remove-leading-whitespace
9750 Clear leading white space that ``helpful'' listservs have added to the
9751 headers to make them look nice. Aaah.
9752
9753 @item nnmail-remove-list-identifiers
9754 @findex nnmail-remove-list-identifiers
9755 Some list servers add an identifier---for example, @samp{(idm)}---to the
9756 beginning of all @code{Subject} headers. I'm sure that's nice for
9757 people who use stone age mail readers. This function will remove
9758 strings that match the @code{nnmail-list-identifiers} regexp, which can
9759 also be a list of regexp.
9760
9761 For instance, if you want to remove the @samp{(idm)} and the
9762 @samp{nagnagnag} identifiers:
9763
9764 @lisp
9765 (setq nnmail-list-identifiers
9766 '("(idm)" "nagnagnag"))
9767 @end lisp
9768
9769 @item nnmail-remove-tabs
9770 @findex nnmail-remove-tabs
9771 Translate all @samp{TAB} characters into @samp{SPACE} characters.
9772
9773 @end table
9774
9775 @item nnmail-prepare-incoming-message-hook
9776 @vindex nnmail-prepare-incoming-message-hook
9777 This hook is called narrowed to each message. Functions to be used
9778 include:
9779
9780 @table @code
9781 @item article-de-quoted-unreadable
9782 @findex article-de-quoted-unreadable
9783 Decode Quoted Readable encoding.
9784
9785 @end table
9786 @end table
9787
9788
9789 @node Duplicates
9790 @subsection Duplicates
9791
9792 @vindex nnmail-treat-duplicates
9793 @vindex nnmail-message-id-cache-length
9794 @vindex nnmail-message-id-cache-file
9795 @cindex duplicate mails
9796 If you are a member of a couple of mailing lists, you will sometimes
9797 receive two copies of the same mail. This can be quite annoying, so
9798 @code{nnmail} checks for and treats any duplicates it might find. To do
9799 this, it keeps a cache of old @code{Message-ID}s---
9800 @code{nnmail-message-id-cache-file}, which is @file{~/.nnmail-cache} by
9801 default. The approximate maximum number of @code{Message-ID}s stored
9802 there is controlled by the @code{nnmail-message-id-cache-length}
9803 variable, which is 1000 by default. (So 1000 @code{Message-ID}s will be
9804 stored.) If all this sounds scary to you, you can set
9805 @code{nnmail-treat-duplicates} to @code{warn} (which is what it is by
9806 default), and @code{nnmail} won't delete duplicate mails. Instead it
9807 will insert a warning into the head of the mail saying that it thinks
9808 that this is a duplicate of a different message.
9809
9810 This variable can also be a function. If that's the case, the function
9811 will be called from a buffer narrowed to the message in question with
9812 the @code{Message-ID} as a parameter. The function must return either
9813 @code{nil}, @code{warn}, or @code{delete}.
9814
9815 You can turn this feature off completely by setting the variable to
9816 @code{nil}.
9817
9818 If you want all the duplicate mails to be put into a special
9819 @dfn{duplicates} group, you could do that using the normal mail split
9820 methods:
9821
9822 @lisp
9823 (setq nnmail-split-fancy
9824 '(| ;; Messages duplicates go to a separate group.
9825 ("gnus-warning" "duplication of message" "duplicate")
9826 ;; Message from daemons, postmaster, and the like to another.
9827 (any mail "mail.misc")
9828 ;; Other rules.
9829 [ ... ] ))
9830 @end lisp
9831
9832 Or something like:
9833 @lisp
9834 (setq nnmail-split-methods
9835 '(("duplicates" "^Gnus-Warning:")
9836 ;; Other rules.
9837 [...]))
9838 @end lisp
9839
9840 Here's a neat feature: If you know that the recipient reads her mail
9841 with Gnus, and that she has @code{nnmail-treat-duplicates} set to
9842 @code{delete}, you can send her as many insults as you like, just by
9843 using a @code{Message-ID} of a mail that you know that she's already
9844 received. Think of all the fun! She'll never see any of it! Whee!
9845
9846
9847 @node Not Reading Mail
9848 @subsection Not Reading Mail
9849
9850 If you start using any of the mail backends, they have the annoying
9851 habit of assuming that you want to read mail with them. This might not
9852 be unreasonable, but it might not be what you want.
9853
9854 If you set @code{nnmail-spool-file} to @code{nil}, none of the backends
9855 will ever attempt to read incoming mail, which should help.
9856
9857 @vindex nnbabyl-get-new-mail
9858 @vindex nnmbox-get-new-mail
9859 @vindex nnml-get-new-mail
9860 @vindex nnmh-get-new-mail
9861 @vindex nnfolder-get-new-mail
9862 This might be too much, if, for instance, you are reading mail quite
9863 happily with @code{nnml} and just want to peek at some old @sc{rmail}
9864 file you have stashed away with @code{nnbabyl}. All backends have
9865 variables called backend-@code{get-new-mail}. If you want to disable
9866 the @code{nnbabyl} mail reading, you edit the virtual server for the
9867 group to have a setting where @code{nnbabyl-get-new-mail} to @code{nil}.
9868
9869 All the mail backends will call @code{nn}*@code{-prepare-save-mail-hook}
9870 narrowed to the article to be saved before saving it when reading
9871 incoming mail.
9872
9873
9874 @node Choosing a Mail Backend
9875 @subsection Choosing a Mail Backend
9876
9877 Gnus will read the mail spool when you activate a mail group. The mail
9878 file is first copied to your home directory. What happens after that
9879 depends on what format you want to store your mail in.
9880
9881 @menu
9882 * Unix Mail Box:: Using the (quite) standard Un*x mbox.
9883 * Rmail Babyl:: Emacs programs use the rmail babyl format.
9884 * Mail Spool:: Store your mail in a private spool?
9885 * MH Spool:: An mhspool-like backend.
9886 * Mail Folders:: Having one file for each group.
9887 @end menu
9888
9889
9890 @node Unix Mail Box
9891 @subsubsection Unix Mail Box
9892 @cindex nnmbox
9893 @cindex unix mail box
9894
9895 @vindex nnmbox-active-file
9896 @vindex nnmbox-mbox-file
9897 The @dfn{nnmbox} backend will use the standard Un*x mbox file to store
9898 mail. @code{nnmbox} will add extra headers to each mail article to say
9899 which group it belongs in.
9900
9901 Virtual server settings:
9902
9903 @table @code
9904 @item nnmbox-mbox-file
9905 @vindex nnmbox-mbox-file
9906 The name of the mail box in the user's home directory.
9907
9908 @item nnmbox-active-file
9909 @vindex nnmbox-active-file
9910 The name of the active file for the mail box.
9911
9912 @item nnmbox-get-new-mail
9913 @vindex nnmbox-get-new-mail
9914 If non-@code{nil}, @code{nnmbox} will read incoming mail and split it
9915 into groups.
9916 @end table
9917
9918
9919 @node Rmail Babyl
9920 @subsubsection Rmail Babyl
9921 @cindex nnbabyl
9922 @cindex rmail mbox
9923
9924 @vindex nnbabyl-active-file
9925 @vindex nnbabyl-mbox-file
9926 The @dfn{nnbabyl} backend will use a babyl mail box (aka. @dfn{rmail
9927 mbox}) to store mail. @code{nnbabyl} will add extra headers to each mail
9928 article to say which group it belongs in.
9929
9930 Virtual server settings:
9931
9932 @table @code
9933 @item nnbabyl-mbox-file
9934 @vindex nnbabyl-mbox-file
9935 The name of the rmail mbox file.
9936
9937 @item nnbabyl-active-file
9938 @vindex nnbabyl-active-file
9939 The name of the active file for the rmail box.
9940
9941 @item nnbabyl-get-new-mail
9942 @vindex nnbabyl-get-new-mail
9943 If non-@code{nil}, @code{nnbabyl} will read incoming mail.
9944 @end table
9945
9946
9947 @node Mail Spool
9948 @subsubsection Mail Spool
9949 @cindex nnml
9950 @cindex mail @sc{nov} spool
9951
9952 The @dfn{nnml} spool mail format isn't compatible with any other known
9953 format. It should be used with some caution.
9954
9955 @vindex nnml-directory
9956 If you use this backend, Gnus will split all incoming mail into files,
9957 one file for each mail, and put the articles into the corresponding
9958 directories under the directory specified by the @code{nnml-directory}
9959 variable. The default value is @file{~/Mail/}.
9960
9961 You do not have to create any directories beforehand; Gnus will take
9962 care of all that.
9963
9964 If you have a strict limit as to how many files you are allowed to store
9965 in your account, you should not use this backend. As each mail gets its
9966 own file, you might very well occupy thousands of inodes within a few
9967 weeks. If this is no problem for you, and it isn't a problem for you
9968 having your friendly systems administrator walking around, madly,
9969 shouting ``Who is eating all my inodes?! Who? Who!?!'', then you should
9970 know that this is probably the fastest format to use. You do not have
9971 to trudge through a big mbox file just to read your new mail.
9972
9973 @code{nnml} is probably the slowest backend when it comes to article
9974 splitting. It has to create lots of files, and it also generates
9975 @sc{nov} databases for the incoming mails. This makes it the fastest
9976 backend when it comes to reading mail.
9977
9978 Virtual server settings:
9979
9980 @table @code
9981 @item nnml-directory
9982 @vindex nnml-directory
9983 All @code{nnml} directories will be placed under this directory.
9984
9985 @item nnml-active-file
9986 @vindex nnml-active-file
9987 The active file for the @code{nnml} server.
9988
9989 @item nnml-newsgroups-file
9990 @vindex nnml-newsgroups-file
9991 The @code{nnml} group descriptions file. @xref{Newsgroups File
9992 Format}.
9993
9994 @item nnml-get-new-mail
9995 @vindex nnml-get-new-mail
9996 If non-@code{nil}, @code{nnml} will read incoming mail.
9997
9998 @item nnml-nov-is-evil
9999 @vindex nnml-nov-is-evil
10000 If non-@code{nil}, this backend will ignore any @sc{nov} files.
10001
10002 @item nnml-nov-file-name
10003 @vindex nnml-nov-file-name
10004 The name of the @sc{nov} files. The default is @file{.overview}.
10005
10006 @item nnml-prepare-save-mail-hook
10007 @vindex nnml-prepare-save-mail-hook
10008 Hook run narrowed to an article before saving.
10009
10010 @end table
10011
10012 @findex nnml-generate-nov-databases
10013 If your @code{nnml} groups and @sc{nov} files get totally out of whack,
10014 you can do a complete update by typing @kbd{M-x
10015 nnml-generate-nov-databases}. This command will trawl through the
10016 entire @code{nnml} hierarchy, looking at each and every article, so it
10017 might take a while to complete. A better interface to this
10018 functionality can be found in the server buffer (@pxref{Server
10019 Commands}).
10020
10021
10022 @node MH Spool
10023 @subsubsection MH Spool
10024 @cindex nnmh
10025 @cindex mh-e mail spool
10026
10027 @code{nnmh} is just like @code{nnml}, except that is doesn't generate
10028 @sc{nov} databases and it doesn't keep an active file. This makes
10029 @code{nnmh} a @emph{much} slower backend than @code{nnml}, but it also
10030 makes it easier to write procmail scripts for.
10031
10032 Virtual server settings:
10033
10034 @table @code
10035 @item nnmh-directory
10036 @vindex nnmh-directory
10037 All @code{nnmh} directories will be located under this directory.
10038
10039 @item nnmh-get-new-mail
10040 @vindex nnmh-get-new-mail
10041 If non-@code{nil}, @code{nnmh} will read incoming mail.
10042
10043 @item nnmh-be-safe
10044 @vindex nnmh-be-safe
10045 If non-@code{nil}, @code{nnmh} will go to ridiculous lengths to make
10046 sure that the articles in the folder are actually what Gnus thinks they
10047 are. It will check date stamps and stat everything in sight, so
10048 setting this to @code{t} will mean a serious slow-down. If you never
10049 use anything but Gnus to read the @code{nnmh} articles, you do not have
10050 to set this variable to @code{t}.
10051 @end table
10052
10053
10054 @node Mail Folders
10055 @subsubsection Mail Folders
10056 @cindex nnfolder
10057 @cindex mbox folders
10058 @cindex mail folders
10059
10060 @code{nnfolder} is a backend for storing each mail group in a separate
10061 file. Each file is in the standard Un*x mbox format. @code{nnfolder}
10062 will add extra headers to keep track of article numbers and arrival
10063 dates.
10064
10065 Virtual server settings:
10066
10067 @table @code
10068 @item nnfolder-directory
10069 @vindex nnfolder-directory
10070 All the @code{nnfolder} mail boxes will be stored under this directory.
10071
10072 @item nnfolder-active-file
10073 @vindex nnfolder-active-file
10074 The name of the active file.
10075
10076 @item nnfolder-newsgroups-file
10077 @vindex nnfolder-newsgroups-file
10078 The name of the group descriptions file. @xref{Newsgroups File Format}.
10079
10080 @item nnfolder-get-new-mail
10081 @vindex nnfolder-get-new-mail
10082 If non-@code{nil}, @code{nnfolder} will read incoming mail.
10083
10084 @item nnfolder-save-buffer-hook
10085 @vindex nnfolder-save-buffer-hook
10086 @cindex backup files
10087 Hook run before saving the folders. Note that Emacs does the normal
10088 backup renaming of files even with the @code{nnfolder} buffers. If you
10089 wish to switch this off, you could say something like the following in
10090 your @file{.emacs} file:
10091
10092 @lisp
10093 (defun turn-off-backup ()
10094 (set (make-local-variable 'backup-inhibited) t))
10095
10096 (add-hook 'nnfolder-save-buffer-hook 'turn-off-backup)
10097 @end lisp
10098
10099 @end table
10100
10101
10102 @findex nnfolder-generate-active-file
10103 @kindex M-x nnfolder-generate-active-file
10104 If you have lots of @code{nnfolder}-like files you'd like to read with
10105 @code{nnfolder}, you can use the @kbd{M-x nnfolder-generate-active-file}
10106 command to make @code{nnfolder} aware of all likely files in
10107 @code{nnfolder-directory}.
10108
10109
10110 @node Other Sources
10111 @section Other Sources
10112
10113 Gnus can do more than just read news or mail. The methods described
10114 below allow Gnus to view directories and files as if they were
10115 newsgroups.
10116
10117 @menu
10118 * Directory Groups:: You can read a directory as if it was a newsgroup.
10119 * Anything Groups:: Dired? Who needs dired?
10120 * Document Groups:: Single files can be the basis of a group.
10121 * SOUP:: Reading @sc{SOUP} packets ``offline''.
10122 * Web Searches:: Creating groups from articles that match a string.
10123 * Mail-To-News Gateways:: Posting articles via mail-to-news gateways.
10124 @end menu
10125
10126
10127 @node Directory Groups
10128 @subsection Directory Groups
10129 @cindex nndir
10130 @cindex directory groups
10131
10132 If you have a directory that has lots of articles in separate files in
10133 it, you might treat it as a newsgroup. The files have to have numerical
10134 names, of course.
10135
10136 This might be an opportune moment to mention @code{ange-ftp} (and its
10137 successor @code{efs}), that most wonderful of all wonderful Emacs
10138 packages. When I wrote @code{nndir}, I didn't think much about it---a
10139 backend to read directories. Big deal.
10140
10141 @code{ange-ftp} changes that picture dramatically. For instance, if you
10142 enter the @code{ange-ftp} file name
10143 @file{/ftp.hpc.uh.edu:/pub/emacs/ding-list/} as the directory name,
10144 @code{ange-ftp} or @code{efs} will actually allow you to read this
10145 directory over at @samp{sina} as a newsgroup. Distributed news ahoy!
10146
10147 @code{nndir} will use @sc{nov} files if they are present.
10148
10149 @code{nndir} is a ``read-only'' backend---you can't delete or expire
10150 articles with this method. You can use @code{nnmh} or @code{nnml} for
10151 whatever you use @code{nndir} for, so you could switch to any of those
10152 methods if you feel the need to have a non-read-only @code{nndir}.
10153
10154
10155 @node Anything Groups
10156 @subsection Anything Groups
10157 @cindex nneething
10158
10159 From the @code{nndir} backend (which reads a single spool-like
10160 directory), it's just a hop and a skip to @code{nneething}, which
10161 pretends that any arbitrary directory is a newsgroup. Strange, but
10162 true.
10163
10164 When @code{nneething} is presented with a directory, it will scan this
10165 directory and assign article numbers to each file. When you enter such
10166 a group, @code{nneething} must create ``headers'' that Gnus can use.
10167 After all, Gnus is a newsreader, in case you're
10168 forgetting. @code{nneething} does this in a two-step process. First, it
10169 snoops each file in question. If the file looks like an article (i.e.,
10170 the first few lines look like headers), it will use this as the head.
10171 If this is just some arbitrary file without a head (e.g. a C source
10172 file), @code{nneething} will cobble up a header out of thin air. It
10173 will use file ownership, name and date and do whatever it can with these
10174 elements.
10175
10176 All this should happen automatically for you, and you will be presented
10177 with something that looks very much like a newsgroup. Totally like a
10178 newsgroup, to be precise. If you select an article, it will be displayed
10179 in the article buffer, just as usual.
10180
10181 If you select a line that represents a directory, Gnus will pop you into
10182 a new summary buffer for this @code{nneething} group. And so on. You can
10183 traverse the entire disk this way, if you feel like, but remember that
10184 Gnus is not dired, really, and does not intend to be, either.
10185
10186 There are two overall modes to this action---ephemeral or solid. When
10187 doing the ephemeral thing (i.e., @kbd{G D} from the group buffer), Gnus
10188 will not store information on what files you have read, and what files
10189 are new, and so on. If you create a solid @code{nneething} group the
10190 normal way with @kbd{G m}, Gnus will store a mapping table between
10191 article numbers and file names, and you can treat this group like any
10192 other groups. When you activate a solid @code{nneething} group, you will
10193 be told how many unread articles it contains, etc., etc.
10194
10195 Some variables:
10196
10197 @table @code
10198 @item nneething-map-file-directory
10199 @vindex nneething-map-file-directory
10200 All the mapping files for solid @code{nneething} groups will be stored
10201 in this directory, which defaults to @file{~/.nneething/}.
10202
10203 @item nneething-exclude-files
10204 @vindex nneething-exclude-files
10205 All files that match this regexp will be ignored. Nice to use to exclude
10206 auto-save files and the like, which is what it does by default.
10207
10208 @item nneething-map-file
10209 @vindex nneething-map-file
10210 Name of the map files.
10211 @end table
10212
10213
10214 @node Document Groups
10215 @subsection Document Groups
10216 @cindex nndoc
10217 @cindex documentation group
10218 @cindex help group
10219
10220 @code{nndoc} is a cute little thing that will let you read a single file
10221 as a newsgroup. Several files types are supported:
10222
10223 @table @code
10224 @cindex babyl
10225 @cindex rmail mbox
10226
10227 @item babyl
10228 The babyl (rmail) mail box.
10229 @cindex mbox
10230 @cindex Unix mbox
10231
10232 @item mbox
10233 The standard Unix mbox file.
10234
10235 @cindex MMDF mail box
10236 @item mmdf
10237 The MMDF mail box format.
10238
10239 @item news
10240 Several news articles appended into a file.
10241
10242 @item rnews
10243 @cindex rnews batch files
10244 The rnews batch transport format.
10245 @cindex forwarded messages
10246
10247 @item forward
10248 Forwarded articles.
10249
10250 @item mime-parts
10251 MIME multipart messages, besides digests.
10252
10253 @item mime-digest
10254 @cindex digest
10255 @cindex MIME digest
10256 @cindex 1153 digest
10257 @cindex RFC 1153 digest
10258 @cindex RFC 341 digest
10259 MIME (RFC 1341) digest format.
10260
10261 @item standard-digest
10262 The standard (RFC 1153) digest format.
10263
10264 @item slack-digest
10265 Non-standard digest format---matches most things, but does it badly.
10266 @end table
10267
10268 You can also use the special ``file type'' @code{guess}, which means
10269 that @code{nndoc} will try to guess what file type it is looking at.
10270 @code{digest} means that @code{nndoc} should guess what digest type the
10271 file is.
10272
10273 @code{nndoc} will not try to change the file or insert any extra headers into
10274 it---it will simply, like, let you use the file as the basis for a
10275 group. And that's it.
10276
10277 If you have some old archived articles that you want to insert into your
10278 new & spiffy Gnus mail backend, @code{nndoc} can probably help you with
10279 that. Say you have an old @file{RMAIL} file with mail that you now want
10280 to split into your new @code{nnml} groups. You look at that file using
10281 @code{nndoc} (using the @kbd{G f} command in the group buffer
10282 (@pxref{Foreign Groups})), set the process mark on all the articles in
10283 the buffer (@kbd{M P b}, for instance), and then re-spool (@kbd{B r})
10284 using @code{nnml}. If all goes well, all the mail in the @file{RMAIL}
10285 file is now also stored in lots of @code{nnml} directories, and you can
10286 delete that pesky @file{RMAIL} file. If you have the guts!
10287
10288 Virtual server variables:
10289
10290 @table @code
10291 @item nndoc-article-type
10292 @vindex nndoc-article-type
10293 This should be one of @code{mbox}, @code{babyl}, @code{digest},
10294 @code{news}, @code{rnews}, @code{mmdf}, @code{forward}, @code{rfc934},
10295 @code{rfc822-forward}, @code{mime-parts}, @code{mime-digest},
10296 @code{standard-digest}, @code{slack-digest}, @code{clari-briefs} or
10297 @code{guess}.
10298
10299 @item nndoc-post-type
10300 @vindex nndoc-post-type
10301 This variable says whether Gnus is to consider the group a news group or
10302 a mail group. There are two valid values: @code{mail} (the default)
10303 and @code{news}.
10304 @end table
10305
10306 @menu
10307 * Document Server Internals:: How to add your own document types.
10308 @end menu
10309
10310
10311 @node Document Server Internals
10312 @subsubsection Document Server Internals
10313
10314 Adding new document types to be recognized by @code{nndoc} isn't
10315 difficult. You just have to whip up a definition of what the document
10316 looks like, write a predicate function to recognize that document type,
10317 and then hook into @code{nndoc}.
10318
10319 First, here's an example document type definition:
10320
10321 @example
10322 (mmdf
10323 (article-begin . "^\^A\^A\^A\^A\n")
10324 (body-end . "^\^A\^A\^A\^A\n"))
10325 @end example
10326
10327 The definition is simply a unique @dfn{name} followed by a series of
10328 regexp pseudo-variable settings. Below are the possible
10329 variables---don't be daunted by the number of variables; most document
10330 types can be defined with very few settings:
10331
10332 @table @code
10333 @item first-article
10334 If present, @code{nndoc} will skip past all text until it finds
10335 something that match this regexp. All text before this will be
10336 totally ignored.
10337
10338 @item article-begin
10339 This setting has to be present in all document type definitions. It
10340 says what the beginning of each article looks like.
10341
10342 @item head-begin-function
10343 If present, this should be a function that moves point to the head of
10344 the article.
10345
10346 @item nndoc-head-begin
10347 If present, this should be a regexp that matches the head of the
10348 article.
10349
10350 @item nndoc-head-end
10351 This should match the end of the head of the article. It defaults to
10352 @samp{^$}---the empty line.
10353
10354 @item body-begin-function
10355 If present, this function should move point to the beginning of the body
10356 of the article.
10357
10358 @item body-begin
10359 This should match the beginning of the body of the article. It defaults
10360 to @samp{^\n}.
10361
10362 @item body-end-function
10363 If present, this function should move point to the end of the body of
10364 the article.
10365
10366 @item body-end
10367 If present, this should match the end of the body of the article.
10368
10369 @item file-end
10370 If present, this should match the end of the file. All text after this
10371 regexp will be totally ignored.
10372
10373 @end table
10374
10375 So, using these variables @code{nndoc} is able to dissect a document
10376 file into a series of articles, each with a head and a body. However, a
10377 few more variables are needed since not all document types are all that
10378 news-like---variables needed to transform the head or the body into
10379 something that's palatable for Gnus:
10380
10381 @table @code
10382 @item prepare-body-function
10383 If present, this function will be called when requesting an article. It
10384 will be called with point at the start of the body, and is useful if the
10385 document has encoded some parts of its contents.
10386
10387 @item article-transform-function
10388 If present, this function is called when requesting an article. It's
10389 meant to be used for more wide-ranging transformation of both head and
10390 body of the article.
10391
10392 @item generate-head-function
10393 If present, this function is called to generate a head that Gnus can
10394 understand. It is called with the article number as a parameter, and is
10395 expected to generate a nice head for the article in question. It is
10396 called when requesting the headers of all articles.
10397
10398 @end table
10399
10400 Let's look at the most complicated example I can come up with---standard
10401 digests:
10402
10403 @example
10404 (standard-digest
10405 (first-article . ,(concat "^" (make-string 70 ?-) "\n\n+"))
10406 (article-begin . ,(concat "\n\n" (make-string 30 ?-) "\n\n+"))
10407 (prepare-body-function . nndoc-unquote-dashes)
10408 (body-end-function . nndoc-digest-body-end)
10409 (head-end . "^ ?$")
10410 (body-begin . "^ ?\n")
10411 (file-end . "^End of .*digest.*[0-9].*\n\\*\\*\\|^End of.*Digest *$")
10412 (subtype digest guess))
10413 @end example
10414
10415 We see that all text before a 70-width line of dashes is ignored; all
10416 text after a line that starts with that @samp{^End of} is also ignored;
10417 each article begins with a 30-width line of dashes; the line separating
10418 the head from the body may contain a single space; and that the body is
10419 run through @code{nndoc-unquote-dashes} before being delivered.
10420
10421 To hook your own document definition into @code{nndoc}, use the
10422 @code{nndoc-add-type} function. It takes two parameters---the first is
10423 the definition itself and the second (optional) parameter says where in
10424 the document type definition alist to put this definition. The alist is
10425 traversed sequentially, and @code{nndoc-TYPE-type-p} is called for a given type @code{TYPE}. So @code{nndoc-mmdf-type-p} is called to see whether a document
10426 is of @code{mmdf} type, and so on. These type predicates should return
10427 @code{nil} if the document is not of the correct type; @code{t} if it is
10428 of the correct type; and a number if the document might be of the
10429 correct type. A high number means high probability; a low number means
10430 low probability with @samp{0} being the lowest valid number.
10431
10432
10433 @node SOUP
10434 @subsection SOUP
10435 @cindex SOUP
10436 @cindex offline
10437
10438 In the PC world people often talk about ``offline'' newsreaders. These
10439 are thingies that are combined reader/news transport monstrosities.
10440 With built-in modem programs. Yecchh!
10441
10442 Of course, us Unix Weenie types of human beans use things like
10443 @code{uucp} and, like, @code{nntpd} and set up proper news and mail
10444 transport things like Ghod intended. And then we just use normal
10445 newsreaders.
10446
10447 However, it can sometimes be convenient to do something a that's a bit
10448 easier on the brain if you have a very slow modem, and you're not really
10449 that interested in doing things properly.
10450
10451 A file format called @sc{soup} has been developed for transporting news
10452 and mail from servers to home machines and back again. It can be a bit
10453 fiddly.
10454
10455 First some terminology:
10456
10457 @table @dfn
10458
10459 @item server
10460 This is the machine that is connected to the outside world and where you
10461 get news and/or mail from.
10462
10463 @item home machine
10464 This is the machine that you want to do the actual reading and responding
10465 on. It is typically not connected to the rest of the world in any way.
10466
10467 @item packet
10468 Something that contains messages and/or commands. There are two kinds
10469 of packets:
10470
10471 @table @dfn
10472 @item message packets
10473 These are packets made at the server, and typically contain lots of
10474 messages for you to read. These are called @file{SoupoutX.tgz} by
10475 default, where @var{X} is a number.
10476
10477 @item response packets
10478 These are packets made at the home machine, and typically contains
10479 replies that you've written. These are called @file{SoupinX.tgz} by
10480 default, where @var{X} is a number.
10481
10482 @end table
10483
10484 @end table
10485
10486
10487 @enumerate
10488
10489 @item
10490 You log in on the server and create a @sc{soup} packet. You can either
10491 use a dedicated @sc{soup} thingie (like the @code{awk} program), or you
10492 can use Gnus to create the packet with its @sc{soup} commands (@kbd{O
10493 s} and/or @kbd{G s b}; and then @kbd{G s p}) (@pxref{SOUP Commands}).
10494
10495 @item
10496 You transfer the packet home. Rail, boat, car or modem will do fine.
10497
10498 @item
10499 You put the packet in your home directory.
10500
10501 @item
10502 You fire up Gnus on your home machine using the @code{nnsoup} backend as
10503 the native or secondary server.
10504
10505 @item
10506 You read articles and mail and answer and followup to the things you
10507 want (@pxref{SOUP Replies}).
10508
10509 @item
10510 You do the @kbd{G s r} command to pack these replies into a @sc{soup}
10511 packet.
10512
10513 @item
10514 You transfer this packet to the server.
10515
10516 @item
10517 You use Gnus to mail this packet out with the @kbd{G s s} command.
10518
10519 @item
10520 You then repeat until you die.
10521
10522 @end enumerate
10523
10524 So you basically have a bipartite system---you use @code{nnsoup} for
10525 reading and Gnus for packing/sending these @sc{soup} packets.
10526
10527 @menu
10528 * SOUP Commands:: Commands for creating and sending @sc{soup} packets
10529 * SOUP Groups:: A backend for reading @sc{soup} packets.
10530 * SOUP Replies:: How to enable @code{nnsoup} to take over mail and news.
10531 @end menu
10532
10533
10534 @node SOUP Commands
10535 @subsubsection SOUP Commands
10536
10537 These are commands for creating and manipulating @sc{soup} packets.
10538
10539 @table @kbd
10540 @item G s b
10541 @kindex G s b (Group)
10542 @findex gnus-group-brew-soup
10543 Pack all unread articles in the current group
10544 (@code{gnus-group-brew-soup}). This command understands the
10545 process/prefix convention.
10546
10547 @item G s w
10548 @kindex G s w (Group)
10549 @findex gnus-soup-save-areas
10550 Save all @sc{soup} data files (@code{gnus-soup-save-areas}).
10551
10552 @item G s s
10553 @kindex G s s (Group)
10554 @findex gnus-soup-send-replies
10555 Send all replies from the replies packet
10556 (@code{gnus-soup-send-replies}).
10557
10558 @item G s p
10559 @kindex G s p (Group)
10560 @findex gnus-soup-pack-packet
10561 Pack all files into a @sc{soup} packet (@code{gnus-soup-pack-packet}).
10562
10563 @item G s r
10564 @kindex G s r (Group)
10565 @findex nnsoup-pack-replies
10566 Pack all replies into a replies packet (@code{nnsoup-pack-replies}).
10567
10568 @item O s
10569 @kindex O s (Summary)
10570 @findex gnus-soup-add-article
10571 This summary-mode command adds the current article to a @sc{soup} packet
10572 (@code{gnus-soup-add-article}). It understands the process/prefix
10573 convention (@pxref{Process/Prefix}).
10574
10575 @end table
10576
10577
10578 There are a few variables to customize where Gnus will put all these
10579 thingies:
10580
10581 @table @code
10582
10583 @item gnus-soup-directory
10584 @vindex gnus-soup-directory
10585 Directory where Gnus will save intermediate files while composing
10586 @sc{soup} packets. The default is @file{~/SoupBrew/}.
10587
10588 @item gnus-soup-replies-directory
10589 @vindex gnus-soup-replies-directory
10590 This is what Gnus will use as a temporary directory while sending our
10591 reply packets. @file{~/SoupBrew/SoupReplies/} is the default.
10592
10593 @item gnus-soup-prefix-file
10594 @vindex gnus-soup-prefix-file
10595 Name of the file where Gnus stores the last used prefix. The default is
10596 @samp{gnus-prefix}.
10597
10598 @item gnus-soup-packer
10599 @vindex gnus-soup-packer
10600 A format string command for packing a @sc{soup} packet. The default is
10601 @samp{tar cf - %s | gzip > $HOME/Soupout%d.tgz}.
10602
10603 @item gnus-soup-unpacker
10604 @vindex gnus-soup-unpacker
10605 Format string command for unpacking a @sc{soup} packet. The default is
10606 @samp{gunzip -c %s | tar xvf -}.
10607
10608 @item gnus-soup-packet-directory
10609 @vindex gnus-soup-packet-directory
10610 Where Gnus will look for reply packets. The default is @file{~/}.
10611
10612 @item gnus-soup-packet-regexp
10613 @vindex gnus-soup-packet-regexp
10614 Regular expression matching @sc{soup} reply packets in
10615 @code{gnus-soup-packet-directory}.
10616
10617 @end table
10618
10619
10620 @node SOUP Groups
10621 @subsubsection @sc{soup} Groups
10622 @cindex nnsoup
10623
10624 @code{nnsoup} is the backend for reading @sc{soup} packets. It will
10625 read incoming packets, unpack them, and put them in a directory where
10626 you can read them at leisure.
10627
10628 These are the variables you can use to customize its behavior:
10629
10630 @table @code
10631
10632 @item nnsoup-tmp-directory
10633 @vindex nnsoup-tmp-directory
10634 When @code{nnsoup} unpacks a @sc{soup} packet, it does it in this
10635 directory. (@file{/tmp/} by default.)
10636
10637 @item nnsoup-directory
10638 @vindex nnsoup-directory
10639 @code{nnsoup} then moves each message and index file to this directory.
10640 The default is @file{~/SOUP/}.
10641
10642 @item nnsoup-replies-directory
10643 @vindex nnsoup-replies-directory
10644 All replies will be stored in this directory before being packed into a
10645 reply packet. The default is @file{~/SOUP/replies/"}.
10646
10647 @item nnsoup-replies-format-type
10648 @vindex nnsoup-replies-format-type
10649 The @sc{soup} format of the replies packets. The default is @samp{?n}
10650 (rnews), and I don't think you should touch that variable. I probably
10651 shouldn't even have documented it. Drats! Too late!
10652
10653 @item nnsoup-replies-index-type
10654 @vindex nnsoup-replies-index-type
10655 The index type of the replies packet. The default is @samp{?n}, which
10656 means ``none''. Don't fiddle with this one either!
10657
10658 @item nnsoup-active-file
10659 @vindex nnsoup-active-file
10660 Where @code{nnsoup} stores lots of information. This is not an ``active
10661 file'' in the @code{nntp} sense; it's an Emacs Lisp file. If you lose
10662 this file or mess it up in any way, you're dead. The default is
10663 @file{~/SOUP/active}.
10664
10665 @item nnsoup-packer
10666 @vindex nnsoup-packer
10667 Format string command for packing a reply @sc{soup} packet. The default
10668 is @samp{tar cf - %s | gzip > $HOME/Soupin%d.tgz}.
10669
10670 @item nnsoup-unpacker
10671 @vindex nnsoup-unpacker
10672 Format string command for unpacking incoming @sc{soup} packets. The
10673 default is @samp{gunzip -c %s | tar xvf -}.
10674
10675 @item nnsoup-packet-directory
10676 @vindex nnsoup-packet-directory
10677 Where @code{nnsoup} will look for incoming packets. The default is
10678 @file{~/}.
10679
10680 @item nnsoup-packet-regexp
10681 @vindex nnsoup-packet-regexp
10682 Regular expression matching incoming @sc{soup} packets. The default is
10683 @samp{Soupout}.
10684
10685 @item nnsoup-always-save
10686 @vindex nnsoup-always-save
10687 If non-@code{nil}, save the replies buffer after each posted message.
10688
10689 @end table
10690
10691
10692 @node SOUP Replies
10693 @subsubsection SOUP Replies
10694
10695 Just using @code{nnsoup} won't mean that your postings and mailings end
10696 up in @sc{soup} reply packets automagically. You have to work a bit
10697 more for that to happen.
10698
10699 @findex nnsoup-set-variables
10700 The @code{nnsoup-set-variables} command will set the appropriate
10701 variables to ensure that all your followups and replies end up in the
10702 @sc{soup} system.
10703
10704 In specific, this is what it does:
10705
10706 @lisp
10707 (setq message-send-news-function 'nnsoup-request-post)
10708 (setq message-send-mail-function 'nnsoup-request-mail)
10709 @end lisp
10710
10711 And that's it, really. If you only want news to go into the @sc{soup}
10712 system you just use the first line. If you only want mail to be
10713 @sc{soup}ed you use the second.
10714
10715
10716 @node Web Searches
10717 @subsection Web Searches
10718 @cindex nnweb
10719 @cindex DejaNews
10720 @cindex Alta Vista
10721 @cindex InReference
10722 @cindex Usenet searches
10723 @cindex searching the Usenet
10724
10725 It's, like, too neat to search the Usenet for articles that match a
10726 string, but it, like, totally @emph{sucks}, like, totally, to use one of
10727 those, like, Web browsers, and you, like, have to, rilly, like, look at
10728 the commercials, so, like, with Gnus you can do @emph{rad}, rilly,
10729 searches without having to use a browser.
10730
10731 The @code{nnweb} backend allows an easy interface to the mighty search
10732 engine. You create an @code{nnweb} group, enter a search pattern, and
10733 then enter the group and read the articles like you would any normal
10734 group. The @kbd{G w} command in the group buffer (@pxref{Foreign
10735 Groups}) will do this in an easy-to-use fashion.
10736
10737 @code{nnweb} groups don't really lend themselves to being solid
10738 groups---they have a very fleeting idea of article numbers. In fact,
10739 each time you enter an @code{nnweb} group (not even changing the search
10740 pattern), you are likely to get the articles ordered in a different
10741 manner. Not even using duplicate suppression (@pxref{Duplicate
10742 Suppression}) will help, since @code{nnweb} doesn't even know the
10743 @code{Message-ID} of the articles before reading them using some search
10744 engines (DejaNews, for instance). The only possible way to keep track
10745 of which articles you've read is by scoring on the @code{Date}
10746 header---mark all articles posted before the last date you read the
10747 group as read.
10748
10749 If the search engine changes its output substantially, @code{nnweb}
10750 won't be able to parse it and will fail. One could hardly fault the Web
10751 providers if they were to do this---their @emph{raison d'être} is to
10752 make money off of advertisements, not to provide services to the
10753 community. Since @code{nnweb} washes the ads off all the articles, one
10754 might think that the providers might be somewhat miffed. We'll see.
10755
10756 You must have the @code{url} and @code{w3} package installed to be able
10757 to use @code{nnweb}.
10758
10759 Virtual server variables:
10760
10761 @table @code
10762 @item nnweb-type
10763 @vindex nnweb-type
10764 What search engine type is being used. The currently supported types
10765 are @code{dejanews}, @code{dejanewsold}, @code{altavista} and
10766 @code{reference}.
10767
10768 @item nnweb-search
10769 @vindex nnweb-search
10770 The search string to feed to the search engine.
10771
10772 @item nnweb-max-hits
10773 @vindex nnweb-max-hits
10774 Advisory maximum number of hits per search to display. The default is
10775 100.
10776
10777 @item nnweb-type-definition
10778 @vindex nnweb-type-definition
10779 Type-to-definition alist. This alist says what @code{nnweb} should do
10780 with the various search engine types. The following elements must be
10781 present:
10782
10783 @table @code
10784 @item article
10785 Function to decode the article and provide something that Gnus
10786 understands.
10787
10788 @item map
10789 Function to create an article number to message header and URL alist.
10790
10791 @item search
10792 Function to send the search string to the search engine.
10793
10794 @item address
10795 The address the aforementioned function should send the search string
10796 to.
10797
10798 @item id
10799 Format string URL to fetch an article by @code{Message-ID}.
10800 @end table
10801
10802 @end table
10803
10804
10805
10806 @node Mail-To-News Gateways
10807 @subsection Mail-To-News Gateways
10808 @cindex mail-to-news gateways
10809 @cindex gateways
10810
10811 If your local @code{nntp} server doesn't allow posting, for some reason
10812 or other, you can post using one of the numerous mail-to-news gateways.
10813 The @code{nngateway} backend provides the interface.
10814
10815 Note that you can't read anything from this backend---it can only be
10816 used to post with.
10817
10818 Server variables:
10819
10820 @table @code
10821 @item nngateway-address
10822 @vindex nngateway-address
10823 This is the address of the mail-to-news gateway.
10824
10825 @item nngateway-header-transformation
10826 @vindex nngateway-header-transformation
10827 News headers often have to be transformed in some odd way or other
10828 for the mail-to-news gateway to accept it. This variable says what
10829 transformation should be called, and defaults to
10830 @code{nngateway-simple-header-transformation}. The function is called
10831 narrowed to the headers to be transformed and with one parameter---the
10832 gateway address.
10833
10834 This default function just inserts a new @code{To} header based on the
10835 @code{Newsgroups} header and the gateway address.
10836 For instance, an article with this @code{Newsgroups} header:
10837
10838 @example
10839 Newsgroups: alt.religion.emacs
10840 @end example
10841
10842 will get this @code{From} header inserted:
10843
10844 @example
10845 To: alt-religion-emacs@@GATEWAY
10846 @end example
10847
10848 The following pre-defined functions exist:
10849
10850 @findex nngateway-simple-header-transformation
10851 @table @code
10852
10853 @item nngateway-simple-header-transformation
10854 Creates a @code{To} header that looks like
10855 @var{newsgroup}@@@code{nngateway-address}.
10856
10857 @findex nngateway-mail2news-header-transformation
10858
10859 @item nngateway-mail2news-header-transformation
10860 Creates a @code{To} header that looks like
10861 @code{nngateway-address}.
10862
10863 Here's an example:
10864
10865 @lisp
10866 (setq gnus-post-method
10867 '(nngateway "mail2news@@replay.com"
10868 (nngateway-header-transformation
10869 nngateway-mail2news-header-transformation)))
10870 @end lisp
10871
10872 @end table
10873
10874
10875 @end table
10876
10877 So, to use this, simply say something like:
10878
10879 @lisp
10880 (setq gnus-post-method '(nngateway "GATEWAY.ADDRESS"))
10881 @end lisp
10882
10883
10884 @node Combined Groups
10885 @section Combined Groups
10886
10887 Gnus allows combining a mixture of all the other group types into bigger
10888 groups.
10889
10890 @menu
10891 * Virtual Groups:: Combining articles from many groups.
10892 * Kibozed Groups:: Looking through parts of the newsfeed for articles.
10893 @end menu
10894
10895
10896 @node Virtual Groups
10897 @subsection Virtual Groups
10898 @cindex nnvirtual
10899 @cindex virtual groups
10900 @cindex merging groups
10901
10902 An @dfn{nnvirtual group} is really nothing more than a collection of
10903 other groups.
10904
10905 For instance, if you are tired of reading many small groups, you can
10906 put them all in one big group, and then grow tired of reading one
10907 big, unwieldy group. The joys of computing!
10908
10909 You specify @code{nnvirtual} as the method. The address should be a
10910 regexp to match component groups.
10911
10912 All marks in the virtual group will stick to the articles in the
10913 component groups. So if you tick an article in a virtual group, the
10914 article will also be ticked in the component group from whence it came.
10915 (And vice versa---marks from the component groups will also be shown in
10916 the virtual group.)
10917
10918 Here's an example @code{nnvirtual} method that collects all Andrea Dworkin
10919 newsgroups into one, big, happy newsgroup:
10920
10921 @lisp
10922 (nnvirtual "^alt\\.fan\\.andrea-dworkin$\\|^rec\\.dworkin.*")
10923 @end lisp
10924
10925 The component groups can be native or foreign; everything should work
10926 smoothly, but if your computer explodes, it was probably my fault.
10927
10928 Collecting the same group from several servers might actually be a good
10929 idea if users have set the Distribution header to limit distribution.
10930 If you would like to read @samp{soc.motss} both from a server in Japan
10931 and a server in Norway, you could use the following as the group regexp:
10932
10933 @example
10934 "^nntp\\+server\\.jp:soc\\.motss$\\|^nntp\\+server\\.no:soc\\.motss$"
10935 @end example
10936
10937 (Remember, though, that if you're creating the group with @kbd{G m}, you
10938 shouldn't double the backslashes, and you should leave off the quote
10939 characters at the beginning and the end of the string.)
10940
10941 This should work kinda smoothly---all articles from both groups should
10942 end up in this one, and there should be no duplicates. Threading (and
10943 the rest) will still work as usual, but there might be problems with the
10944 sequence of articles. Sorting on date might be an option here
10945 (@pxref{Selecting a Group}).
10946
10947 One limitation, however---all groups included in a virtual
10948 group have to be alive (i.e., subscribed or unsubscribed). Killed or
10949 zombie groups can't be component groups for @code{nnvirtual} groups.
10950
10951 @vindex nnvirtual-always-rescan
10952 If the @code{nnvirtual-always-rescan} is non-@code{nil},
10953 @code{nnvirtual} will always scan groups for unread articles when
10954 entering a virtual group. If this variable is @code{nil} (which is the
10955 default) and you read articles in a component group after the virtual
10956 group has been activated, the read articles from the component group
10957 will show up when you enter the virtual group. You'll also see this
10958 effect if you have two virtual groups that have a component group in
10959 common. If that's the case, you should set this variable to @code{t}.
10960 Or you can just tap @code{M-g} on the virtual group every time before
10961 you enter it---it'll have much the same effect.
10962
10963 @code{nnvirtual} can have both mail and news groups as component groups.
10964 When responding to articles in @code{nnvirtual} groups, @code{nnvirtual}
10965 has to ask the backend of the component group the article comes from
10966 whether it is a news or mail backend. However, when you do a @kbd{^},
10967 there is typically no sure way for the component backend to know this,
10968 and in that case @code{nnvirtual} tells Gnus that the article came from a
10969 not-news backend. (Just to be on the safe side.)
10970
10971 @kbd{C-c C-t} in the message buffer will insert the @code{Newsgroups}
10972 line from the article you respond to in these cases.
10973
10974
10975
10976 @node Kibozed Groups
10977 @subsection Kibozed Groups
10978 @cindex nnkiboze
10979 @cindex kibozing
10980
10981 @dfn{Kibozing} is defined by @sc{oed} as ``grepping through (parts of)
10982 the news feed''. @code{nnkiboze} is a backend that will do this for
10983 you. Oh joy! Now you can grind any @sc{nntp} server down to a halt
10984 with useless requests! Oh happiness!
10985
10986 @kindex G k (Group)
10987 To create a kibozed group, use the @kbd{G k} command in the group
10988 buffer.
10989
10990 The address field of the @code{nnkiboze} method is, as with
10991 @code{nnvirtual}, a regexp to match groups to be ``included'' in the
10992 @code{nnkiboze} group. That's where most similarities between @code{nnkiboze}
10993 and @code{nnvirtual} end.
10994
10995 In addition to this regexp detailing component groups, an @code{nnkiboze} group
10996 must have a score file to say what articles are to be included in
10997 the group (@pxref{Scoring}).
10998
10999 @kindex M-x nnkiboze-generate-groups
11000 @findex nnkiboze-generate-groups
11001 You must run @kbd{M-x nnkiboze-generate-groups} after creating the
11002 @code{nnkiboze} groups you want to have. This command will take time. Lots of
11003 time. Oodles and oodles of time. Gnus has to fetch the headers from
11004 all the articles in all the component groups and run them through the
11005 scoring process to determine if there are any articles in the groups
11006 that are to be part of the @code{nnkiboze} groups.
11007
11008 Please limit the number of component groups by using restrictive
11009 regexps. Otherwise your sysadmin may become annoyed with you, and the
11010 @sc{nntp} site may throw you off and never let you back in again.
11011 Stranger things have happened.
11012
11013 @code{nnkiboze} component groups do not have to be alive---they can be dead,
11014 and they can be foreign. No restrictions.
11015
11016 @vindex nnkiboze-directory
11017 The generation of an @code{nnkiboze} group means writing two files in
11018 @code{nnkiboze-directory}, which is @file{~/News/} by default. One
11019 contains the @sc{nov} header lines for all the articles in the group,
11020 and the other is an additional @file{.newsrc} file to store information
11021 on what groups have been searched through to find component articles.
11022
11023 Articles marked as read in the @code{nnkiboze} group will have
11024 their @sc{nov} lines removed from the @sc{nov} file.
11025
11026
11027 @node Gnus Unplugged
11028 @section Gnus Unplugged
11029 @cindex offline
11030 @cindex unplugged
11031 @cindex Agent
11032 @cindex Gnus Agent
11033 @cindex Gnus Unplugged
11034
11035 In olden times (ca. February '88), people used to run their newsreaders
11036 on big machines with permanent connections to the net. News transport
11037 was dealt with by news servers, and all the newsreaders had to do was to
11038 read news. Believe it or not.
11039
11040 Nowadays most people read news and mail at home, and use some sort of
11041 modem to connect to the net. To avoid running up huge phone bills, it
11042 would be nice to have a way to slurp down all the news and mail, hang up
11043 the phone, read for several hours, and then upload any responses you
11044 have to make. And then you repeat the procedure.
11045
11046 Of course, you can use news servers for doing this as well. I've used
11047 @code{inn} together with @code{slurp}, @code{pop} and @code{sendmail}
11048 for some years, but doing that's a bore. Moving the news server
11049 functionality up to the newsreader makes sense if you're the only person
11050 reading news on a machine.
11051
11052 Using Gnus as an ``offline'' newsreader is quite simple.
11053
11054 @itemize @bullet
11055 @item
11056 First, set up Gnus as you would do if you were running it on a machine
11057 that has full connection to the net. Go ahead. I'll still be waiting
11058 here.
11059
11060 @item
11061 Then, put the following magical incantation at the end of your
11062 @file{.gnus.el} file:
11063
11064 @lisp
11065 (gnus-agentize)
11066 @end lisp
11067 @end itemize
11068
11069 That's it. Gnus is now an ``offline'' newsreader.
11070
11071 Of course, to use it as such, you have to learn a few new commands.
11072
11073 @menu
11074 * Agent Basics:: How it all is supposed to work.
11075 * Agent Categories:: How to tell the Gnus Agent what to download.
11076 * Agent Commands:: New commands for all the buffers.
11077 * Agent Expiry:: How to make old articles go away.
11078 * Outgoing Messages:: What happens when you post/mail something?
11079 * Agent Variables:: Customizing is fun.
11080 * Example Setup:: An example @file{.gnus.el} file for offline people.
11081 * Batching Agents:: How to fetch news from a @code{cron} job.
11082 @end menu
11083
11084
11085 @node Agent Basics
11086 @subsection Agent Basics
11087
11088 First, let's get some terminology out of the way.
11089
11090 The Gnus Agent is said to be @dfn{unplugged} when you have severed the
11091 connection to the net (and notified the Agent that this is the case).
11092 When the connection to the net is up again (and Gnus knows this), the
11093 Agent is @dfn{plugged}.
11094
11095 The @dfn{local} machine is the one you're running on, and which isn't
11096 connected to the net continuously.
11097
11098 @dfn{Downloading} means fetching things from the net to your local
11099 machine. @dfn{Uploading} is doing the opposite.
11100
11101 Let's take a typical Gnus session using the Agent.
11102
11103 @itemize @bullet
11104
11105 @item
11106 You start Gnus with @code{gnus-unplugged}. This brings up the Gnus
11107 Agent in a disconnected state. You can read all the news that you have
11108 already fetched while in this mode.
11109
11110 @item
11111 You then decide to see whether any new news has arrived. You connect
11112 your machine to the net (using PPP or whatever), and then hit @kbd{J j}
11113 to make Gnus become @dfn{plugged}.
11114
11115 @item
11116 You can then read the new news immediately, or you can download the news
11117 onto your local machine. If you want to do the latter, you press @kbd{J
11118 s} to fetch all the eligible articles in all the groups. (To let Gnus
11119 know which articles you want to download, @pxref{Agent Categories}.)
11120
11121 @item
11122 After fetching the articles, you press @kbd{J j} to make Gnus become
11123 unplugged again, and you shut down the PPP thing (or whatever). And
11124 then you read the news offline.
11125
11126 @item
11127 And then you go to step 2.
11128 @end itemize
11129
11130 Here are some things you should do the first time (or so) that you use
11131 the Agent.
11132
11133 @itemize @bullet
11134
11135 @item
11136 Decide which servers should be covered by the Agent. If you have a mail
11137 backend, it would probably be nonsensical to have it covered by the
11138 Agent. Go to the server buffer (@kbd{^} in the group buffer) and press
11139 @kbd{J a} the server (or servers) that you wish to have covered by the
11140 Agent (@pxref{Server Agent Commands}). This will typically be only the
11141 primary select method, which is listed on the bottom in the buffer.
11142
11143 @item
11144 Decide on download policy. @xref{Agent Categories}.
11145
11146 @item
11147 Uhm... that's it.
11148 @end itemize
11149
11150
11151 @node Agent Categories
11152 @subsection Agent Categories
11153
11154 One of the main reasons to integrate the news transport layer into the
11155 newsreader is to allow greater control over what articles to download.
11156 There's not much point in downloading huge amounts of articles, just to
11157 find out that you're not interested in reading any of them. It's better
11158 to be somewhat more conservative in choosing what to download, and then
11159 mark the articles for downloading manually if it should turn out that
11160 you're interested in the articles anyway.
11161
11162 The main way to control what is to be downloaded is to create a
11163 @dfn{category} and then assign some (or all) groups to this category.
11164 Gnus has its own buffer for creating and managing categories.
11165
11166 @menu
11167 * Category Syntax:: What a category looks like.
11168 * The Category Buffer:: A buffer for maintaining categories.
11169 * Category Variables:: Customize'r'Us.
11170 @end menu
11171
11172
11173 @node Category Syntax
11174 @subsubsection Category Syntax
11175
11176 A category consists of two things.
11177
11178 @enumerate
11179 @item
11180 A predicate which (generally) gives a rough outline of which articles
11181 are eligible for downloading; and
11182
11183 @item
11184 a score rule which (generally) gives you a finer granularity when
11185 deciding what articles to download. (Note that this @dfn{download
11186 score} is wholly unrelated to normal scores.)
11187 @end enumerate
11188
11189 A predicate consists of predicates with logical operators sprinkled in
11190 between.
11191
11192 Perhaps some examples are in order.
11193
11194 Here's a simple predicate. (It's the default predicate, in fact, used
11195 for all groups that don't belong to any other category.)
11196
11197 @lisp
11198 short
11199 @end lisp
11200
11201 Quite simple, eh? This predicate is true if and only if the article is
11202 short (for some value of ``short'').
11203
11204 Here's a more complex predicate:
11205
11206 @lisp
11207 (or high
11208 (and
11209 (not low)
11210 (not long)))
11211 @end lisp
11212
11213 This means that an article should be downloaded if it has a high score,
11214 or if the score is not low and the article is not long. You get the
11215 drift.
11216
11217 The available logical operators are @code{or}, @code{and} and
11218 @code{not}. (If you prefer, you can use the more ``C''-ish operators
11219 @samp{|}, @code{&} and @code{!} instead.)
11220
11221 The following predicates are pre-defined, but if none of these fit what
11222 you want to do, you can write your own.
11223
11224 @table @code
11225 @item short
11226 True iff the article is shorter than @code{gnus-agent-short-article}
11227 lines; default 100.
11228
11229 @item long
11230 True iff the article is longer than @code{gnus-agent-long-article}
11231 lines; default 200.
11232
11233 @item low
11234 True iff the article has a download score less than
11235 @code{gnus-agent-low-score}; default 0.
11236
11237 @item high
11238 True iff the article has a download score greater than
11239 @code{gnus-agent-high-score}; default 0.
11240
11241 @item spam
11242 True iff the Gnus Agent guesses that the article is spam. The
11243 heuristics may change over time, but at present it just computes a
11244 checksum and sees whether articles match.
11245
11246 @item true
11247 Always true.
11248
11249 @item false
11250 Always false.
11251 @end table
11252
11253 If you want to create your own predicate function, here's what you have
11254 to know: The functions are called with no parameters, but the
11255 @code{gnus-headers} and @code{gnus-score} dynamic variables are bound to
11256 useful values.
11257
11258 Now, the syntax of the download score is the same as the syntax of
11259 normal score files, except that all elements that require actually
11260 seeing the article itself are verboten. This means that only the
11261 following headers can be scored on: @code{From}, @code{Subject},
11262 @code{Date}, @code{Xref}, @code{Lines}, @code{Chars}, @code{Message-ID},
11263 and @code{References}.
11264
11265
11266 @node The Category Buffer
11267 @subsubsection The Category Buffer
11268
11269 You'd normally do all category maintenance from the category buffer.
11270 When you enter it for the first time (with the @kbd{J c} command from
11271 the group buffer), you'll only see the @code{default} category.
11272
11273 The following commands are available in this buffer:
11274
11275 @table @kbd
11276 @item q
11277 @kindex q (Category)
11278 @findex gnus-category-exit
11279 Return to the group buffer (@code{gnus-category-exit}).
11280
11281 @item k
11282 @kindex k (Category)
11283 @findex gnus-category-kill
11284 Kill the current category (@code{gnus-category-kill}).
11285
11286 @item c
11287 @kindex c (Category)
11288 @findex gnus-category-copy
11289 Copy the current category (@code{gnus-category-copy}).
11290
11291 @item a
11292 @kindex a (Category)
11293 @findex gnus-category-add
11294 Add a new category (@code{gnus-category-add}).
11295
11296 @item p
11297 @kindex p (Category)
11298 @findex gnus-category-edit-predicate
11299 Edit the predicate of the current category
11300 (@code{gnus-category-edit-predicate}).
11301
11302 @item g
11303 @kindex g (Category)
11304 @findex gnus-category-edit-groups
11305 Edit the list of groups belonging to the current category
11306 (@code{gnus-category-edit-groups}).
11307
11308 @item s
11309 @kindex s (Category)
11310 @findex gnus-category-edit-score
11311 Edit the download score rule of the current category
11312 (@code{gnus-category-edit-score}).
11313
11314 @item l
11315 @kindex l (Category)
11316 @findex gnus-category-list
11317 List all the categories (@code{gnus-category-list}).
11318 @end table
11319
11320
11321 @node Category Variables
11322 @subsubsection Category Variables
11323
11324 @table @code
11325 @item gnus-category-mode-hook
11326 @vindex gnus-category-mode-hook
11327 Hook run in category buffers.
11328
11329 @item gnus-category-line-format
11330 @vindex gnus-category-line-format
11331 Format of the lines in the category buffer (@pxref{Formatting
11332 Variables}). Valid elements are:
11333
11334 @table @samp
11335 @item c
11336 The name of the category.
11337
11338 @item g
11339 The number of groups in the category.
11340 @end table
11341
11342 @item gnus-category-mode-line-format
11343 @vindex gnus-category-mode-line-format
11344 Format of the category mode line (@pxref{Mode Line Formatting}).
11345
11346 @item gnus-agent-short-article
11347 @vindex gnus-agent-short-article
11348 Articles that have fewer lines than this are short. Default 100.
11349
11350 @item gnus-agent-long-article
11351 @vindex gnus-agent-long-article
11352 Articles that have more lines than this are long. Default 200.
11353
11354 @item gnus-agent-low-score
11355 @vindex gnus-agent-low-score
11356 Articles that have a score lower than this have a low score. Default
11357 0.
11358
11359 @item gnus-agent-high-score
11360 @vindex gnus-agent-high-score
11361 Articles that have a score higher than this have a high score. Default
11362 0.
11363
11364 @end table
11365
11366
11367 @node Agent Commands
11368 @subsection Agent Commands
11369
11370 All the Gnus Agent commands are on the @kbd{J} submap. The @kbd{J j}
11371 (@code{gnus-agent-toggle-plugged} command works in all modes, and
11372 toggles the plugged/unplugged state of the Gnus Agent.
11373
11374
11375 @menu
11376 * Group Agent Commands::
11377 * Summary Agent Commands::
11378 * Server Agent Commands::
11379 @end menu
11380
11381 You can run a complete batch fetch from the command line with the
11382 following incantation:
11383
11384 @cindex gnus-agent-batch-fetch
11385 @example
11386 $ emacs -batch -l ~/.gnus.el -f gnus-agent-batch-fetch
11387 @end example
11388
11389
11390
11391 @node Group Agent Commands
11392 @subsubsection Group Agent Commands
11393
11394 @table @kbd
11395 @item J u
11396 @kindex J u (Agent Group)
11397 @findex gnus-agent-fetch-groups
11398 Fetch all eligible articles in the current group
11399 (@code{gnus-agent-fetch-groups}).
11400
11401 @item J c
11402 @kindex J c (Agent Group)
11403 @findex gnus-enter-category-buffer
11404 Enter the Agent category buffer (@code{gnus-enter-category-buffer}).
11405
11406 @item J s
11407 @kindex J s (Agent Group)
11408 @findex gnus-agent-fetch-session
11409 Fetch all eligible articles in all groups
11410 (@code{gnus-agent-fetch-session}).
11411
11412 @item J S
11413 @kindex J S (Agent Group)
11414 @findex gnus-group-send-drafts
11415 Send all sendable messages in the draft group
11416 (@code{gnus-agent-fetch-session}). @xref{Drafts}.
11417
11418 @item J a
11419 @kindex J a (Agent Group)
11420 @findex gnus-agent-add-group
11421 Add the current group to an Agent category
11422 (@code{gnus-agent-add-group}).
11423
11424 @end table
11425
11426
11427 @node Summary Agent Commands
11428 @subsubsection Summary Agent Commands
11429
11430 @table @kbd
11431 @item J #
11432 @kindex J # (Agent Summary)
11433 @findex gnus-agent-mark-article
11434 Mark the article for downloading (@code{gnus-agent-mark-article}).
11435
11436 @item J M-#
11437 @kindex J M-# (Agent Summary)
11438 @findex gnus-agent-unmark-article
11439 Remove the downloading mark from the article
11440 (@code{gnus-agent-unmark-article}).
11441
11442 @item @@
11443 @kindex @@ (Agent Summary)
11444 @findex gnus-agent-toggle-mark
11445 Toggle whether to download the article (@code{gnus-agent-toggle-mark}).
11446
11447 @item J c
11448 @kindex J c (Agent Summary)
11449 @findex gnus-agent-catchup
11450 Mark all undownloaded articles as read (@code{gnus-agent-catchup}).
11451
11452 @end table
11453
11454
11455 @node Server Agent Commands
11456 @subsubsection Server Agent Commands
11457
11458 @table @kbd
11459 @item J a
11460 @kindex J a (Agent Server)
11461 @findex gnus-agent-add-server
11462 Add the current server to the list of servers covered by the Gnus Agent
11463 (@code{gnus-agent-add-server}).
11464
11465 @item J r
11466 @kindex J r (Agent Server)
11467 @findex gnus-agent-remove-server
11468 Remove the current server from the list of servers covered by the Gnus
11469 Agent (@code{gnus-agent-remove-server}).
11470
11471 @end table
11472
11473
11474 @node Agent Expiry
11475 @subsection Agent Expiry
11476
11477 @vindex gnus-agent-expire-days
11478 @findex gnus-agent-expire
11479 @kindex M-x gnus-agent-expire
11480 @cindex Agent expire
11481 @cindex Gnus Agent expire
11482 @cindex expiry
11483
11484 @code{nnagent} doesn't handle expiry. Instead, there's a special
11485 @code{gnus-agent-expire} command that will expire all read articles that
11486 are older than @code{gnus-agent-expire-days} days. It can be run
11487 whenever you feel that you're running out of space. It's not
11488 particularly fast or efficient, and it's not a particularly good idea to
11489 interrupt it (with @kbd{C-g} or anything else) once you've started it.
11490
11491 @vindex gnus-agent-expire-all
11492 if @code{gnus-agent-expire-all} is non-@code{nil}, this command will
11493 expire all articles---unread, read, ticked and dormant. If @code{nil}
11494 (which is the default), only read articles are eligible for expiry, and
11495 unread, ticked and dormant articles will be kept indefinitely.
11496
11497
11498 @node Outgoing Messages
11499 @subsection Outgoing Messages
11500
11501 When Gnus is unplugged, all outgoing messages (both mail and news) are
11502 stored in the draft groups (@pxref{Drafts}). You can view them there
11503 after posting, and edit them at will.
11504
11505 When Gnus is plugged again, you can send the messages either from the
11506 draft group with the special commands available there, or you can use
11507 the @kbd{J S} command in the group buffer to send all the sendable
11508 messages in the draft group.
11509
11510
11511
11512 @node Agent Variables
11513 @subsection Agent Variables
11514
11515 @table @code
11516 @item gnus-agent-directory
11517 @vindex gnus-agent-directory
11518 Where the Gnus Agent will store its files. The default is
11519 @file{~/News/agent/}.
11520
11521 @item gnus-agent-handle-level
11522 @vindex gnus-agent-handle-level
11523 Groups on levels (@pxref{Group Levels}) higher than this variable will
11524 be ignored by the Agent. The default is @code{gnus-level-subscribed},
11525 which means that only subscribed group will be considered by the Agent
11526 by default.
11527
11528 @item gnus-agent-plugged-hook
11529 @vindex gnus-agent-plugged-hook
11530 Hook run when connecting to the network.
11531
11532 @item gnus-agent-unplugged-hook
11533 @vindex gnus-agent-unplugged-hook
11534 Hook run when disconnecting from the network.
11535
11536 @end table
11537
11538
11539 @node Example Setup
11540 @subsection Example Setup
11541
11542 If you don't want to read this manual, and you have a fairly standard
11543 setup, you may be able to use something like the following as your
11544 @file{.gnus.el} file to get started.
11545
11546 @lisp
11547 ;;; Define how Gnus is to fetch news. We do this over NNTP
11548 ;;; from your ISP's server.
11549 (setq gnus-select-method '(nntp "nntp.your-isp.com"))
11550
11551 ;;; Define how Gnus is to read your mail. We read mail from
11552 ;;; your ISP's POP server.
11553 (setenv "MAILHOST" "pop.your-isp.com")
11554 (setq nnmail-spool-file "po:username")
11555
11556 ;;; Say how Gnus is to store the mail. We use nnml groups.
11557 (setq gnus-secondary-select-methods '((nnml "")))
11558
11559 ;;; Make Gnus into an offline newsreader.
11560 (gnus-agentize)
11561 @end lisp
11562
11563 That should be it, basically. Put that in your @file{~/.gnus.el} file,
11564 edit to suit your needs, start up PPP (or whatever), and type @kbd{M-x
11565 gnus}.
11566
11567 If this is the first time you've run Gnus, you will be subscribed
11568 automatically to a few default newsgroups. You'll probably want to
11569 subscribe to more groups, and to do that, you have to query the
11570 @sc{nntp} server for a complete list of groups with the @kbd{A A}
11571 command. This usually takes quite a while, but you only have to do it
11572 once.
11573
11574 After reading and parsing a while, you'll be presented with a list of
11575 groups. Subscribe to the ones you want to read with the @kbd{u}
11576 command. @kbd{l} to make all the killed groups disappear after you've
11577 subscribe to all the groups you want to read. (@kbd{A k} will bring
11578 back all the killed groups.)
11579
11580 You can now read the groups at once, or you can download the articles
11581 with the @kbd{J s} command. And then read the rest of this manual to
11582 find out which of the other gazillion things you want to customize.
11583
11584
11585 @node Batching Agents
11586 @subsection Batching Agents
11587
11588 Having the Gnus Agent fetch articles (and post whatever messages you've
11589 written) is quite easy once you've gotten things set up properly. The
11590 following shell script will do everything that is necessary:
11591
11592 @example
11593 #!/bin/sh
11594 emacs -batch -l ~/.emacs -f gnus-agent-batch >/dev/null
11595 @end example
11596
11597
11598
11599 @node Scoring
11600 @chapter Scoring
11601 @cindex scoring
11602
11603 Other people use @dfn{kill files}, but we here at Gnus Towers like
11604 scoring better than killing, so we'd rather switch than fight. They do
11605 something completely different as well, so sit up straight and pay
11606 attention!
11607
11608 @vindex gnus-summary-mark-below
11609 All articles have a default score (@code{gnus-summary-default-score}),
11610 which is 0 by default. This score may be raised or lowered either
11611 interactively or by score files. Articles that have a score lower than
11612 @code{gnus-summary-mark-below} are marked as read.
11613
11614 Gnus will read any @dfn{score files} that apply to the current group
11615 before generating the summary buffer.
11616
11617 There are several commands in the summary buffer that insert score
11618 entries based on the current article. You can, for instance, ask Gnus to
11619 lower or increase the score of all articles with a certain subject.
11620
11621 There are two sorts of scoring entries: Permanent and temporary.
11622 Temporary score entries are self-expiring entries. Any entries that are
11623 temporary and have not been used for, say, a week, will be removed
11624 silently to help keep the sizes of the score files down.
11625
11626 @menu
11627 * Summary Score Commands:: Adding score entries for the current group.
11628 * Group Score Commands:: General score commands.
11629 * Score Variables:: Customize your scoring. (My, what terminology).
11630 * Score File Format:: What a score file may contain.
11631 * Score File Editing:: You can edit score files by hand as well.
11632 * Adaptive Scoring:: Big Sister Gnus knows what you read.
11633 * Home Score File:: How to say where new score entries are to go.
11634 * Followups To Yourself:: Having Gnus notice when people answer you.
11635 * Scoring Tips:: How to score effectively.
11636 * Reverse Scoring:: That problem child of old is not problem.
11637 * Global Score Files:: Earth-spanning, ear-splitting score files.
11638 * Kill Files:: They are still here, but they can be ignored.
11639 * Converting Kill Files:: Translating kill files to score files.
11640 * GroupLens:: Getting predictions on what you like to read.
11641 * Advanced Scoring:: Using logical expressions to build score rules.
11642 * Score Decays:: It can be useful to let scores wither away.
11643 @end menu
11644
11645
11646 @node Summary Score Commands
11647 @section Summary Score Commands
11648 @cindex score commands
11649
11650 The score commands that alter score entries do not actually modify real
11651 score files. That would be too inefficient. Gnus maintains a cache of
11652 previously loaded score files, one of which is considered the
11653 @dfn{current score file alist}. The score commands simply insert
11654 entries into this list, and upon group exit, this list is saved.
11655
11656 The current score file is by default the group's local score file, even
11657 if no such score file actually exists. To insert score commands into
11658 some other score file (e.g. @file{all.SCORE}), you must first make this
11659 score file the current one.
11660
11661 General score commands that don't actually change the score file:
11662
11663 @table @kbd
11664
11665 @item V s
11666 @kindex V s (Summary)
11667 @findex gnus-summary-set-score
11668 Set the score of the current article (@code{gnus-summary-set-score}).
11669
11670 @item V S
11671 @kindex V S (Summary)
11672 @findex gnus-summary-current-score
11673 Display the score of the current article
11674 (@code{gnus-summary-current-score}).
11675
11676 @item V t
11677 @kindex V t (Summary)
11678 @findex gnus-score-find-trace
11679 Display all score rules that have been used on the current article
11680 (@code{gnus-score-find-trace}).
11681
11682 @item V R
11683 @kindex V R (Summary)
11684 @findex gnus-summary-rescore
11685 Run the current summary through the scoring process
11686 (@code{gnus-summary-rescore}). This might be useful if you're playing
11687 around with your score files behind Gnus' back and want to see the
11688 effect you're having.
11689
11690 @item V c
11691 @kindex V c (Summary)
11692 @findex gnus-score-change-score-file
11693 Make a different score file the current
11694 (@code{gnus-score-change-score-file}).
11695
11696 @item V e
11697 @kindex V e (Summary)
11698 @findex gnus-score-edit-current-scores
11699 Edit the current score file (@code{gnus-score-edit-current-scores}).
11700 You will be popped into a @code{gnus-score-mode} buffer (@pxref{Score
11701 File Editing}).
11702
11703 @item V f
11704 @kindex V f (Summary)
11705 @findex gnus-score-edit-file
11706 Edit a score file and make this score file the current one
11707 (@code{gnus-score-edit-file}).
11708
11709 @item V F
11710 @kindex V F (Summary)
11711 @findex gnus-score-flush-cache
11712 Flush the score cache (@code{gnus-score-flush-cache}). This is useful
11713 after editing score files.
11714
11715 @item V C
11716 @kindex V C (Summary)
11717 @findex gnus-score-customize
11718 Customize a score file in a visually pleasing manner
11719 (@code{gnus-score-customize}).
11720
11721 @end table
11722
11723 The rest of these commands modify the local score file.
11724
11725 @table @kbd
11726
11727 @item V m
11728 @kindex V m (Summary)
11729 @findex gnus-score-set-mark-below
11730 Prompt for a score, and mark all articles with a score below this as
11731 read (@code{gnus-score-set-mark-below}).
11732
11733 @item V x
11734 @kindex V x (Summary)
11735 @findex gnus-score-set-expunge-below
11736 Prompt for a score, and add a score rule to the current score file to
11737 expunge all articles below this score
11738 (@code{gnus-score-set-expunge-below}).
11739 @end table
11740
11741 The keystrokes for actually making score entries follow a very regular
11742 pattern, so there's no need to list all the commands. (Hundreds of
11743 them.)
11744
11745 @findex gnus-summary-increase-score
11746 @findex gnus-summary-lower-score
11747
11748 @enumerate
11749 @item
11750 The first key is either @kbd{I} (upper case i) for increasing the score
11751 or @kbd{L} for lowering the score.
11752 @item
11753 The second key says what header you want to score on. The following
11754 keys are available:
11755 @table @kbd
11756
11757 @item a
11758 Score on the author name.
11759
11760 @item s
11761 Score on the subject line.
11762
11763 @item x
11764 Score on the Xref line---i.e., the cross-posting line.
11765
11766 @item r
11767 Score on the References line.
11768
11769 @item d
11770 Score on the date.
11771
11772 @item l
11773 Score on the number of lines.
11774
11775 @item i
11776 Score on the Message-ID.
11777
11778 @item f
11779 Score on followups.
11780
11781 @item b
11782 Score on the body.
11783
11784 @item h
11785 Score on the head.
11786
11787 @item t
11788 Score on thead.
11789
11790 @end table
11791
11792 @item
11793 The third key is the match type. Which match types are valid depends on
11794 what headers you are scoring on.
11795
11796 @table @code
11797
11798 @item strings
11799
11800 @table @kbd
11801
11802 @item e
11803 Exact matching.
11804
11805 @item s
11806 Substring matching.
11807
11808 @item f
11809 Fuzzy matching (@pxref{Fuzzy Matching}).
11810
11811 @item r
11812 Regexp matching
11813 @end table
11814
11815 @item date
11816 @table @kbd
11817
11818 @item b
11819 Before date.
11820
11821 @item a
11822 After date.
11823
11824 @item n
11825 This date.
11826 @end table
11827
11828 @item number
11829 @table @kbd
11830
11831 @item <
11832 Less than number.
11833
11834 @item =
11835 Equal to number.
11836
11837 @item >
11838 Greater than number.
11839 @end table
11840 @end table
11841
11842 @item
11843 The fourth and final key says whether this is a temporary (i.e., expiring)
11844 score entry, or a permanent (i.e., non-expiring) score entry, or whether
11845 it is to be done immediately, without adding to the score file.
11846 @table @kbd
11847
11848 @item t
11849 Temporary score entry.
11850
11851 @item p
11852 Permanent score entry.
11853
11854 @item i
11855 Immediately scoring.
11856 @end table
11857
11858 @end enumerate
11859
11860 So, let's say you want to increase the score on the current author with
11861 exact matching permanently: @kbd{I a e p}. If you want to lower the
11862 score based on the subject line, using substring matching, and make a
11863 temporary score entry: @kbd{L s s t}. Pretty easy.
11864
11865 To make things a bit more complicated, there are shortcuts. If you use
11866 a capital letter on either the second or third keys, Gnus will use
11867 defaults for the remaining one or two keystrokes. The defaults are
11868 ``substring'' and ``temporary''. So @kbd{I A} is the same as @kbd{I a s
11869 t}, and @kbd{I a R} is the same as @kbd{I a r t}.
11870
11871 These functions take both the numerical prefix and the symbolic prefix
11872 (@pxref{Symbolic Prefixes}). A numerical prefix says how much to lower
11873 (or increase) the score of the article. A symbolic prefix of @code{a}
11874 says to use the @file{all.SCORE} file for the command instead of the
11875 current score file.
11876
11877 @vindex gnus-score-mimic-keymap
11878 The @code{gnus-score-mimic-keymap} says whether these commands will
11879 pretend they are keymaps or not.
11880
11881
11882 @node Group Score Commands
11883 @section Group Score Commands
11884 @cindex group score commands
11885
11886 There aren't many of these as yet, I'm afraid.
11887
11888 @table @kbd
11889
11890 @item W f
11891 @kindex W f (Group)
11892 @findex gnus-score-flush-cache
11893 Gnus maintains a cache of score alists to avoid having to reload them
11894 all the time. This command will flush the cache
11895 (@code{gnus-score-flush-cache}).
11896
11897 @end table
11898
11899 You can do scoring from the command line by saying something like:
11900
11901 @findex gnus-batch-score
11902 @cindex batch scoring
11903 @example
11904 $ emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score
11905 @end example
11906
11907
11908 @node Score Variables
11909 @section Score Variables
11910 @cindex score variables
11911
11912 @table @code
11913
11914 @item gnus-use-scoring
11915 @vindex gnus-use-scoring
11916 If @code{nil}, Gnus will not check for score files, and will not, in
11917 general, do any score-related work. This is @code{t} by default.
11918
11919 @item gnus-kill-killed
11920 @vindex gnus-kill-killed
11921 If this variable is @code{nil}, Gnus will never apply score files to
11922 articles that have already been through the kill process. While this
11923 may save you lots of time, it also means that if you apply a kill file
11924 to a group, and then change the kill file and want to run it over you
11925 group again to kill more articles, it won't work. You have to set this
11926 variable to @code{t} to do that. (It is @code{t} by default.)
11927
11928 @item gnus-kill-files-directory
11929 @vindex gnus-kill-files-directory
11930 All kill and score files will be stored in this directory, which is
11931 initialized from the @code{SAVEDIR} environment variable by default.
11932 This is @file{~/News/} by default.
11933
11934 @item gnus-score-file-suffix
11935 @vindex gnus-score-file-suffix
11936 Suffix to add to the group name to arrive at the score file name
11937 (@samp{SCORE} by default.)
11938
11939 @item gnus-score-uncacheable-files
11940 @vindex gnus-score-uncacheable-files
11941 @cindex score cache
11942 All score files are normally cached to avoid excessive re-loading of
11943 score files. However, if this might make you Emacs grow big and
11944 bloated, so this regexp can be used to weed out score files unlikely to be needed again. It would be a bad idea to deny caching of
11945 @file{all.SCORE}, while it might be a good idea to not cache
11946 @file{comp.infosystems.www.authoring.misc.ADAPT}. In fact, this
11947 variable is @samp{ADAPT$} by default, so no adaptive score files will
11948 be cached.
11949
11950 @item gnus-save-score
11951 @vindex gnus-save-score
11952 If you have really complicated score files, and do lots of batch
11953 scoring, then you might set this variable to @code{t}. This will make
11954 Gnus save the scores into the @file{.newsrc.eld} file.
11955
11956 @item gnus-score-interactive-default-score
11957 @vindex gnus-score-interactive-default-score
11958 Score used by all the interactive raise/lower commands to raise/lower
11959 score with. Default is 1000, which may seem excessive, but this is to
11960 ensure that the adaptive scoring scheme gets enough room to play with.
11961 We don't want the small changes from the adaptive scoring to overwrite
11962 manually entered data.
11963
11964 @item gnus-summary-default-score
11965 @vindex gnus-summary-default-score
11966 Default score of an article, which is 0 by default.
11967
11968 @item gnus-summary-expunge-below
11969 @vindex gnus-summary-expunge-below
11970 Don't display the summary lines of articles that have scores lower than
11971 this variable. This is @code{nil} by default, which means that no
11972 articles will be hidden. This variable is local to the summary buffers,
11973 and has to be set from @code{gnus-summary-mode-hook}.
11974
11975 @item gnus-score-over-mark
11976 @vindex gnus-score-over-mark
11977 Mark (in the third column) used for articles with a score over the
11978 default. Default is @samp{+}.
11979
11980 @item gnus-score-below-mark
11981 @vindex gnus-score-below-mark
11982 Mark (in the third column) used for articles with a score below the
11983 default. Default is @samp{-}.
11984
11985 @item gnus-score-find-score-files-function
11986 @vindex gnus-score-find-score-files-function
11987 Function used to find score files for the current group. This function
11988 is called with the name of the group as the argument.
11989
11990 Predefined functions available are:
11991 @table @code
11992
11993 @item gnus-score-find-single
11994 @findex gnus-score-find-single
11995 Only apply the group's own score file.
11996
11997 @item gnus-score-find-bnews
11998 @findex gnus-score-find-bnews
11999 Apply all score files that match, using bnews syntax. This is the
12000 default. If the current group is @samp{gnu.emacs.gnus}, for instance,
12001 @file{all.emacs.all.SCORE}, @file{not.alt.all.SCORE} and
12002 @file{gnu.all.SCORE} would all apply. In short, the instances of
12003 @samp{all} in the score file names are translated into @samp{.*}, and
12004 then a regexp match is done.
12005
12006 This means that if you have some score entries that you want to apply to
12007 all groups, then you put those entries in the @file{all.SCORE} file.
12008
12009 The score files are applied in a semi-random order, although Gnus will
12010 try to apply the more general score files before the more specific score
12011 files. It does this by looking at the number of elements in the score
12012 file names---discarding the @samp{all} elements.
12013
12014 @item gnus-score-find-hierarchical
12015 @findex gnus-score-find-hierarchical
12016 Apply all score files from all the parent groups. This means that you
12017 can't have score files like @file{all.SCORE}, but you can have
12018 @file{SCORE}, @file{comp.SCORE} and @file{comp.emacs.SCORE}.
12019
12020 @end table
12021 This variable can also be a list of functions. In that case, all these
12022 functions will be called, and all the returned lists of score files will
12023 be applied. These functions can also return lists of score alists
12024 directly. In that case, the functions that return these non-file score
12025 alists should probably be placed before the ``real'' score file
12026 functions, to ensure that the last score file returned is the local
12027 score file. Phu.
12028
12029 @item gnus-score-expiry-days
12030 @vindex gnus-score-expiry-days
12031 This variable says how many days should pass before an unused score file
12032 entry is expired. If this variable is @code{nil}, no score file entries
12033 are expired. It's 7 by default.
12034
12035 @item gnus-update-score-entry-dates
12036 @vindex gnus-update-score-entry-dates
12037 If this variable is non-@code{nil}, matching score entries will have
12038 their dates updated. (This is how Gnus controls expiry---all
12039 non-matching entries will become too old while matching entries will
12040 stay fresh and young.) However, if you set this variable to @code{nil},
12041 even matching entries will grow old and will have to face that oh-so
12042 grim reaper.
12043
12044 @item gnus-score-after-write-file-function
12045 @vindex gnus-score-after-write-file-function
12046 Function called with the name of the score file just written.
12047
12048 @item gnus-score-thread-simplify
12049 @vindex gnus-score-thread-simplify
12050 If this variable is non-@code{nil}, article subjects will be simplified
12051 for subject scoring purposes in the same manner as with
12052 threading---according to the current value of
12053 gnus-simplify-subject-functions. If the scoring entry uses
12054 @code{substring} or @code{exact} matching, the match will also be
12055 simplified in this manner.
12056
12057 @end table
12058
12059
12060 @node Score File Format
12061 @section Score File Format
12062 @cindex score file format
12063
12064 A score file is an @code{emacs-lisp} file that normally contains just a
12065 single form. Casual users are not expected to edit these files;
12066 everything can be changed from the summary buffer.
12067
12068 Anyway, if you'd like to dig into it yourself, here's an example:
12069
12070 @lisp
12071 (("from"
12072 ("Lars Ingebrigtsen" -10000)
12073 ("Per Abrahamsen")
12074 ("larsi\\|lmi" -50000 nil R))
12075 ("subject"
12076 ("Ding is Badd" nil 728373))
12077 ("xref"
12078 ("alt.politics" -1000 728372 s))
12079 ("lines"
12080 (2 -100 nil <))
12081 (mark 0)
12082 (expunge -1000)
12083 (mark-and-expunge -10)
12084 (read-only nil)
12085 (orphan -10)
12086 (adapt t)
12087 (files "/hom/larsi/News/gnu.SCORE")
12088 (exclude-files "all.SCORE")
12089 (local (gnus-newsgroup-auto-expire t)
12090 (gnus-summary-make-false-root empty))
12091 (eval (ding)))
12092 @end lisp
12093
12094 This example demonstrates most score file elements. For a different
12095 approach, see @pxref{Advanced Scoring}.
12096
12097 Even though this looks much like lisp code, nothing here is actually
12098 @code{eval}ed. The lisp reader is used to read this form, though, so it
12099 has to be valid syntactically, if not semantically.
12100
12101 Six keys are supported by this alist:
12102
12103 @table @code
12104
12105 @item STRING
12106 If the key is a string, it is the name of the header to perform the
12107 match on. Scoring can only be performed on these eight headers:
12108 @code{From}, @code{Subject}, @code{References}, @code{Message-ID},
12109 @code{Xref}, @code{Lines}, @code{Chars} and @code{Date}. In addition to
12110 these headers, there are three strings to tell Gnus to fetch the entire
12111 article and do the match on larger parts of the article: @code{Body}
12112 will perform the match on the body of the article, @code{Head} will
12113 perform the match on the head of the article, and @code{All} will
12114 perform the match on the entire article. Note that using any of these
12115 last three keys will slow down group entry @emph{considerably}. The
12116 final ``header'' you can score on is @code{Followup}. These score
12117 entries will result in new score entries being added for all follow-ups
12118 to articles that matches these score entries.
12119
12120 Following this key is a arbitrary number of score entries, where each
12121 score entry has one to four elements.
12122 @enumerate
12123
12124 @item
12125 The first element is the @dfn{match element}. On most headers this will
12126 be a string, but on the Lines and Chars headers, this must be an
12127 integer.
12128
12129 @item
12130 If the second element is present, it should be a number---the @dfn{score
12131 element}. This number should be an integer in the neginf to posinf
12132 interval. This number is added to the score of the article if the match
12133 is successful. If this element is not present, the
12134 @code{gnus-score-interactive-default-score} number will be used
12135 instead. This is 1000 by default.
12136
12137 @item
12138 If the third element is present, it should be a number---the @dfn{date
12139 element}. This date says when the last time this score entry matched,
12140 which provides a mechanism for expiring the score entries. It this
12141 element is not present, the score entry is permanent. The date is
12142 represented by the number of days since December 31, 1 BCE.
12143
12144 @item
12145 If the fourth element is present, it should be a symbol---the @dfn{type
12146 element}. This element specifies what function should be used to see
12147 whether this score entry matches the article. What match types that can
12148 be used depends on what header you wish to perform the match on.
12149 @table @dfn
12150
12151 @item From, Subject, References, Xref, Message-ID
12152 For most header types, there are the @code{r} and @code{R} (regexp), as
12153 well as @code{s} and @code{S} (substring) types, and @code{e} and
12154 @code{E} (exact match), and @code{w} (word match) types. If this
12155 element is not present, Gnus will assume that substring matching should
12156 be used. @code{R}, @code{S}, and @code{E} differ from the others in
12157 that the matches will be done in a case-sensitive manner. All these
12158 one-letter types are really just abbreviations for the @code{regexp},
12159 @code{string}, @code{exact}, and @code{word} types, which you can use
12160 instead, if you feel like.
12161
12162 @item Lines, Chars
12163 These two headers use different match types: @code{<}, @code{>},
12164 @code{=}, @code{>=} and @code{<=}.
12165
12166 These predicates are true if
12167
12168 @example
12169 (PREDICATE HEADER MATCH)
12170 @end example
12171
12172 evaluates to non-@code{nil}. For instance, the advanced match
12173 @code{("lines" 4 <)} (@pxref{Advanced Scoring}) will result in the
12174 following form:
12175
12176 @lisp
12177 (< header-value 4)
12178 @end lisp
12179
12180 Or to put it another way: When using @code{<} on @code{Lines} with 4 as
12181 the match, we get the score added if the article has less than 4 lines.
12182 (It's easy to get confused and think it's the other way around. But
12183 it's not. I think.)
12184
12185 When matching on @code{Lines}, be careful because some backends (like
12186 @code{nndir}) do not generate @code{Lines} header, so every article ends
12187 up being marked as having 0 lines. This can lead to strange results if
12188 you happen to lower score of the articles with few lines.
12189
12190 @item Date
12191 For the Date header we have three kinda silly match types:
12192 @code{before}, @code{at} and @code{after}. I can't really imagine this
12193 ever being useful, but, like, it would feel kinda silly not to provide
12194 this function. Just in case. You never know. Better safe than sorry.
12195 Once burnt, twice shy. Don't judge a book by its cover. Never not have
12196 sex on a first date. (I have been told that at least one person, and I
12197 quote, ``found this function indispensable'', however.)
12198
12199 @cindex ISO8601
12200 @cindex date
12201 A more useful match type is @code{regexp}. With it, you can match the
12202 date string using a regular expression. The date is normalized to
12203 ISO8601 compact format first---@var{YYYYMMDD}@code{T}@var{HHMMSS}. If
12204 you want to match all articles that have been posted on April 1st in
12205 every year, you could use @samp{....0401.........} as a match string,
12206 for instance. (Note that the date is kept in its original time zone, so
12207 this will match articles that were posted when it was April 1st where
12208 the article was posted from. Time zones are such wholesome fun for the
12209 whole family, eh?)
12210
12211 @item Head, Body, All
12212 These three match keys use the same match types as the @code{From} (etc)
12213 header uses.
12214
12215 @item Followup
12216 This match key is somewhat special, in that it will match the
12217 @code{From} header, and affect the score of not only the matching
12218 articles, but also all followups to the matching articles. This allows
12219 you e.g. increase the score of followups to your own articles, or
12220 decrease the score of followups to the articles of some known
12221 trouble-maker. Uses the same match types as the @code{From} header
12222 uses. (Using this match key will lead to creation of @file{ADAPT}
12223 files.)
12224
12225 @item Thread
12226 This match key works along the same lines as the @code{Followup} match
12227 key. If you say that you want to score on a (sub-)thread started by an article with a @code{Message-ID} @var{X}, then you add a
12228 @samp{thread} match. This will add a new @samp{thread} match for each
12229 article that has @var{X} in its @code{References} header. (These new
12230 @samp{thread} matches will use the @code{Message-ID}s of these matching
12231 articles.) This will ensure that you can raise/lower the score of an
12232 entire thread, even though some articles in the thread may not have
12233 complete @code{References} headers. Note that using this may lead to
12234 undeterministic scores of the articles in the thread. (Using this match
12235 key will lead to creation of @file{ADAPT} files.)
12236 @end table
12237 @end enumerate
12238
12239 @cindex Score File Atoms
12240 @item mark
12241 The value of this entry should be a number. Any articles with a score
12242 lower than this number will be marked as read.
12243
12244 @item expunge
12245 The value of this entry should be a number. Any articles with a score
12246 lower than this number will be removed from the summary buffer.
12247
12248 @item mark-and-expunge
12249 The value of this entry should be a number. Any articles with a score
12250 lower than this number will be marked as read and removed from the
12251 summary buffer.
12252
12253 @item thread-mark-and-expunge
12254 The value of this entry should be a number. All articles that belong to
12255 a thread that has a total score below this number will be marked as read
12256 and removed from the summary buffer. @code{gnus-thread-score-function}
12257 says how to compute the total score for a thread.
12258
12259 @item files
12260 The value of this entry should be any number of file names. These files
12261 are assumed to be score files as well, and will be loaded the same way
12262 this one was.
12263
12264 @item exclude-files
12265 The clue of this entry should be any number of files. These files will
12266 not be loaded, even though they would normally be so, for some reason or
12267 other.
12268
12269 @item eval
12270 The value of this entry will be @code{eval}el. This element will be
12271 ignored when handling global score files.
12272
12273 @item read-only
12274 Read-only score files will not be updated or saved. Global score files
12275 should feature this atom (@pxref{Global Score Files}). (Note:
12276 @dfn{Global} here really means @dfn{global}; not your personal
12277 apply-to-all-groups score files.)
12278
12279 @item orphan
12280 The value of this entry should be a number. Articles that do not have
12281 parents will get this number added to their scores. Imagine you follow
12282 some high-volume newsgroup, like @samp{comp.lang.c}. Most likely you
12283 will only follow a few of the threads, also want to see any new threads.
12284
12285 You can do this with the following two score file entries:
12286
12287 @example
12288 (orphan -500)
12289 (mark-and-expunge -100)
12290 @end example
12291
12292 When you enter the group the first time, you will only see the new
12293 threads. You then raise the score of the threads that you find
12294 interesting (with @kbd{I T} or @kbd{I S}), and ignore (@kbd{C y}) the
12295 rest. Next time you enter the group, you will see new articles in the
12296 interesting threads, plus any new threads.
12297
12298 I.e.---the orphan score atom is for high-volume groups where there
12299 exist a few interesting threads which can't be found automatically by
12300 ordinary scoring rules.
12301
12302 @item adapt
12303 This entry controls the adaptive scoring. If it is @code{t}, the
12304 default adaptive scoring rules will be used. If it is @code{ignore}, no
12305 adaptive scoring will be performed on this group. If it is a list, this
12306 list will be used as the adaptive scoring rules. If it isn't present,
12307 or is something other than @code{t} or @code{ignore}, the default
12308 adaptive scoring rules will be used. If you want to use adaptive
12309 scoring on most groups, you'd set @code{gnus-use-adaptive-scoring} to
12310 @code{t}, and insert an @code{(adapt ignore)} in the groups where you do
12311 not want adaptive scoring. If you only want adaptive scoring in a few
12312 groups, you'd set @code{gnus-use-adaptive-scoring} to @code{nil}, and
12313 insert @code{(adapt t)} in the score files of the groups where you want
12314 it.
12315
12316 @item adapt-file
12317 All adaptive score entries will go to the file named by this entry. It
12318 will also be applied when entering the group. This atom might be handy
12319 if you want to adapt on several groups at once, using the same adaptive
12320 file for a number of groups.
12321
12322 @item local
12323 @cindex local variables
12324 The value of this entry should be a list of @code{(VAR VALUE)} pairs.
12325 Each @var{var} will be made buffer-local to the current summary buffer,
12326 and set to the value specified. This is a convenient, if somewhat
12327 strange, way of setting variables in some groups if you don't like hooks
12328 much. Note that the @var{value} won't be evaluated.
12329 @end table
12330
12331
12332 @node Score File Editing
12333 @section Score File Editing
12334
12335 You normally enter all scoring commands from the summary buffer, but you
12336 might feel the urge to edit them by hand as well, so we've supplied you
12337 with a mode for that.
12338
12339 It's simply a slightly customized @code{emacs-lisp} mode, with these
12340 additional commands:
12341
12342 @table @kbd
12343
12344 @item C-c C-c
12345 @kindex C-c C-c (Score)
12346 @findex gnus-score-edit-done
12347 Save the changes you have made and return to the summary buffer
12348 (@code{gnus-score-edit-done}).
12349
12350 @item C-c C-d
12351 @kindex C-c C-d (Score)
12352 @findex gnus-score-edit-insert-date
12353 Insert the current date in numerical format
12354 (@code{gnus-score-edit-insert-date}). This is really the day number, if
12355 you were wondering.
12356
12357 @item C-c C-p
12358 @kindex C-c C-p (Score)
12359 @findex gnus-score-pretty-print
12360 The adaptive score files are saved in an unformatted fashion. If you
12361 intend to read one of these files, you want to @dfn{pretty print} it
12362 first. This command (@code{gnus-score-pretty-print}) does that for
12363 you.
12364
12365 @end table
12366
12367 Type @kbd{M-x gnus-score-mode} to use this mode.
12368
12369 @vindex gnus-score-mode-hook
12370 @code{gnus-score-menu-hook} is run in score mode buffers.
12371
12372 In the summary buffer you can use commands like @kbd{V f} and @kbd{V
12373 e} to begin editing score files.
12374
12375
12376 @node Adaptive Scoring
12377 @section Adaptive Scoring
12378 @cindex adaptive scoring
12379
12380 If all this scoring is getting you down, Gnus has a way of making it all
12381 happen automatically---as if by magic. Or rather, as if by artificial
12382 stupidity, to be precise.
12383
12384 @vindex gnus-use-adaptive-scoring
12385 When you read an article, or mark an article as read, or kill an
12386 article, you leave marks behind. On exit from the group, Gnus can sniff
12387 these marks and add score elements depending on what marks it finds.
12388 You turn on this ability by setting @code{gnus-use-adaptive-scoring} to
12389 @code{t} or @code{(line)}. If you want score adaptively on separate
12390 words appearing in the subjects, you should set this variable to
12391 @code{(word)}. If you want to use both adaptive methods, set this
12392 variable to @code{(word line)}.
12393
12394 @vindex gnus-default-adaptive-score-alist
12395 To give you complete control over the scoring process, you can customize
12396 the @code{gnus-default-adaptive-score-alist} variable. For instance, it
12397 might look something like this:
12398
12399 @lisp
12400 (defvar gnus-default-adaptive-score-alist
12401 '((gnus-unread-mark)
12402 (gnus-ticked-mark (from 4))
12403 (gnus-dormant-mark (from 5))
12404 (gnus-del-mark (from -4) (subject -1))
12405 (gnus-read-mark (from 4) (subject 2))
12406 (gnus-expirable-mark (from -1) (subject -1))
12407 (gnus-killed-mark (from -1) (subject -3))
12408 (gnus-kill-file-mark)
12409 (gnus-ancient-mark)
12410 (gnus-low-score-mark)
12411 (gnus-catchup-mark (from -1) (subject -1))))
12412 @end lisp
12413
12414 As you see, each element in this alist has a mark as a key (either a
12415 variable name or a ``real'' mark---a character). Following this key is
12416 a arbitrary number of header/score pairs. If there are no header/score
12417 pairs following the key, no adaptive scoring will be done on articles
12418 that have that key as the article mark. For instance, articles with
12419 @code{gnus-unread-mark} in the example above will not get adaptive score
12420 entries.
12421
12422 Each article can have only one mark, so just a single of these rules
12423 will be applied to each article.
12424
12425 To take @code{gnus-del-mark} as an example---this alist says that all
12426 articles that have that mark (i.e., are marked with @samp{D}) will have a
12427 score entry added to lower based on the @code{From} header by -4, and
12428 lowered by @code{Subject} by -1. Change this to fit your prejudices.
12429
12430 If you have marked 10 articles with the same subject with
12431 @code{gnus-del-mark}, the rule for that mark will be applied ten times.
12432 That means that that subject will get a score of ten times -1, which
12433 should be, unless I'm much mistaken, -10.
12434
12435 If you have auto-expirable (mail) groups (@pxref{Expiring Mail}), all
12436 the read articles will be marked with the @samp{E} mark. This'll
12437 probably make adaptive scoring slightly impossible, so auto-expiring and
12438 adaptive scoring doesn't really mix very well.
12439
12440 The headers you can score on are @code{from}, @code{subject},
12441 @code{message-id}, @code{references}, @code{xref}, @code{lines},
12442 @code{chars} and @code{date}. In addition, you can score on
12443 @code{followup}, which will create an adaptive score entry that matches
12444 on the @code{References} header using the @code{Message-ID} of the
12445 current article, thereby matching the following thread.
12446
12447 You can also score on @code{thread}, which will try to score all
12448 articles that appear in a thread. @code{thread} matches uses a
12449 @code{Message-ID} to match on the @code{References} header of the
12450 article. If the match is made, the @code{Message-ID} of the article is
12451 added to the @code{thread} rule. (Think about it. I'd recommend two
12452 aspirins afterwards.)
12453
12454 If you use this scheme, you should set the score file atom @code{mark}
12455 to something small---like -300, perhaps, to avoid having small random
12456 changes result in articles getting marked as read.
12457
12458 After using adaptive scoring for a week or so, Gnus should start to
12459 become properly trained and enhance the authors you like best, and kill
12460 the authors you like least, without you having to say so explicitly.
12461
12462 You can control what groups the adaptive scoring is to be performed on
12463 by using the score files (@pxref{Score File Format}). This will also
12464 let you use different rules in different groups.
12465
12466 @vindex gnus-adaptive-file-suffix
12467 The adaptive score entries will be put into a file where the name is the
12468 group name with @code{gnus-adaptive-file-suffix} appended. The default
12469 is @samp{ADAPT}.
12470
12471 @vindex gnus-score-exact-adapt-limit
12472 When doing adaptive scoring, substring or fuzzy matching would probably
12473 give you the best results in most cases. However, if the header one
12474 matches is short, the possibility for false positives is great, so if
12475 the length of the match is less than
12476 @code{gnus-score-exact-adapt-limit}, exact matching will be used. If
12477 this variable is @code{nil}, exact matching will always be used to avoid
12478 this problem.
12479
12480 @vindex gnus-default-adaptive-word-score-alist
12481 As mentioned above, you can adapt either on individual words or entire
12482 headers. If you adapt on words, the
12483 @code{gnus-default-adaptive-word-score-alist} variable says what score
12484 each instance of a word should add given a mark.
12485
12486 @lisp
12487 (setq gnus-default-adaptive-word-score-alist
12488 `((,gnus-read-mark . 30)
12489 (,gnus-catchup-mark . -10)
12490 (,gnus-killed-mark . -20)
12491 (,gnus-del-mark . -15)))
12492 @end lisp
12493
12494 This is the default value. If you have adaption on words enabled, every
12495 word that appears in subjects of articles marked with
12496 @code{gnus-read-mark} will result in a score rule that increase the
12497 score with 30 points.
12498
12499 @vindex gnus-default-ignored-adaptive-words
12500 @vindex gnus-ignored-adaptive-words
12501 Words that appear in the @code{gnus-default-ignored-adaptive-words} list
12502 will be ignored. If you wish to add more words to be ignored, use the
12503 @code{gnus-ignored-adaptive-words} list instead.
12504
12505 @vindex gnus-adaptive-word-syntax-table
12506 When the scoring is done, @code{gnus-adaptive-word-syntax-table} is the
12507 syntax table in effect. It is similar to the standard syntax table, but
12508 it considers numbers to be non-word-constituent characters.
12509
12510 @vindex gnus-adaptive-word-minimum
12511 If @code{gnus-adaptive-word-minimum} is set to a number, the adaptive
12512 word scoring process will never bring down the score of an article to
12513 below this number. The default is @code{nil}.
12514
12515 After using this scheme for a while, it might be nice to write a
12516 @code{gnus-psychoanalyze-user} command to go through the rules and see
12517 what words you like and what words you don't like. Or perhaps not.
12518
12519 Note that the adaptive word scoring thing is highly experimental and is
12520 likely to change in the future. Initial impressions seem to indicate
12521 that it's totally useless as it stands. Some more work (involving more
12522 rigorous statistical methods) will have to be done to make this useful.
12523
12524
12525 @node Home Score File
12526 @section Home Score File
12527
12528 The score file where new score file entries will go is called the
12529 @dfn{home score file}. This is normally (and by default) the score file
12530 for the group itself. For instance, the home score file for
12531 @samp{gnu.emacs.gnus} is @file{gnu.emacs.gnus.SCORE}.
12532
12533 However, this may not be what you want. It is often convenient to share
12534 a common home score file among many groups---all @samp{emacs} groups
12535 could perhaps use the same home score file.
12536
12537 @vindex gnus-home-score-file
12538 The variable that controls this is @code{gnus-home-score-file}. It can
12539 be:
12540
12541 @enumerate
12542 @item
12543 A string. Then this file will be used as the home score file for all
12544 groups.
12545
12546 @item
12547 A function. The result of this function will be used as the home score
12548 file. The function will be called with the name of the group as the
12549 parameter.
12550
12551 @item
12552 A list. The elements in this list can be:
12553
12554 @enumerate
12555 @item
12556 @var{(regexp file-name)}. If the @var{regexp} matches the group name,
12557 the @var{file-name} will will be used as the home score file.
12558
12559 @item
12560 A function. If the function returns non-nil, the result will be used as
12561 the home score file.
12562
12563 @item
12564 A string. Use the string as the home score file.
12565 @end enumerate
12566
12567 The list will be traversed from the beginning towards the end looking
12568 for matches.
12569
12570 @end enumerate
12571
12572 So, if you want to use just a single score file, you could say:
12573
12574 @lisp
12575 (setq gnus-home-score-file
12576 "my-total-score-file.SCORE")
12577 @end lisp
12578
12579 If you want to use @file{gnu.SCORE} for all @samp{gnu} groups and
12580 @file{rec.SCORE} for all @samp{rec} groups (and so on), you can say:
12581
12582 @findex gnus-hierarchial-home-score-file
12583 @lisp
12584 (setq gnus-home-score-file
12585 'gnus-hierarchial-home-score-file)
12586 @end lisp
12587
12588 This is a ready-made function provided for your convenience.
12589 Other functions include
12590
12591 @table @code
12592 @item gnus-current-home-score-file
12593 @findex gnus-current-home-score-file
12594 Return the ``current'' regular score file. This will make scoring
12595 commands add entry to the ``innermost'' matching score file.
12596
12597 @end table
12598
12599 If you want to have one score file for the @samp{emacs} groups and
12600 another for the @samp{comp} groups, while letting all other groups use
12601 their own home score files:
12602
12603 @lisp
12604 (setq gnus-home-score-file
12605 ;; All groups that match the regexp "\\.emacs"
12606 '(("\\.emacs" "emacs.SCORE")
12607 ;; All the comp groups in one score file
12608 ("^comp" "comp.SCORE")))
12609 @end lisp
12610
12611 @vindex gnus-home-adapt-file
12612 @code{gnus-home-adapt-file} works exactly the same way as
12613 @code{gnus-home-score-file}, but says what the home adaptive score file
12614 is instead. All new adaptive file entries will go into the file
12615 specified by this variable, and the same syntax is allowed.
12616
12617 In addition to using @code{gnus-home-score-file} and
12618 @code{gnus-home-adapt-file}, you can also use group parameters
12619 (@pxref{Group Parameters}) and topic parameters (@pxref{Topic
12620 Parameters}) to achieve much the same. Group and topic parameters take
12621 precedence over this variable.
12622
12623
12624 @node Followups To Yourself
12625 @section Followups To Yourself
12626
12627 Gnus offers two commands for picking out the @code{Message-ID} header in
12628 the current buffer. Gnus will then add a score rule that scores using
12629 this @code{Message-ID} on the @code{References} header of other
12630 articles. This will, in effect, increase the score of all articles that
12631 respond to the article in the current buffer. Quite useful if you want
12632 to easily note when people answer what you've said.
12633
12634 @table @code
12635
12636 @item gnus-score-followup-article
12637 @findex gnus-score-followup-article
12638 This will add a score to articles that directly follow up your own
12639 article.
12640
12641 @item gnus-score-followup-thread
12642 @findex gnus-score-followup-thread
12643 This will add a score to all articles that appear in a thread ``below''
12644 your own article.
12645 @end table
12646
12647 @vindex message-sent-hook
12648 These two functions are both primarily meant to be used in hooks like
12649 @code{message-sent-hook}.
12650
12651 If you look closely at your own @code{Message-ID}, you'll notice that
12652 the first two or three characters are always the same. Here's two of
12653 mine:
12654
12655 @example
12656 <x6u3u47icf.fsf@@eyesore.no>
12657 <x6sp9o7ibw.fsf@@eyesore.no>
12658 @end example
12659
12660 So ``my'' ident on this machine is @samp{x6}. This can be
12661 exploited---the following rule will raise the score on all followups to
12662 myself:
12663
12664 @lisp
12665 ("references"
12666 ("<x6[0-9a-z]+\\.fsf\\(_-_\\)?@@.*eyesore.no>"
12667 1000 nil r))
12668 @end lisp
12669
12670 Whether it's the first two or first three characters that are ``yours''
12671 is system-dependent.
12672
12673
12674 @node Scoring Tips
12675 @section Scoring Tips
12676 @cindex scoring tips
12677
12678 @table @dfn
12679
12680 @item Crossposts
12681 @cindex crossposts
12682 @cindex scoring crossposts
12683 If you want to lower the score of crossposts, the line to match on is
12684 the @code{Xref} header.
12685 @lisp
12686 ("xref" (" talk.politics.misc:" -1000))
12687 @end lisp
12688
12689 @item Multiple crossposts
12690 If you want to lower the score of articles that have been crossposted to
12691 more than, say, 3 groups:
12692 @lisp
12693 ("xref" ("[^:\n]+:[0-9]+ +[^:\n]+:[0-9]+ +[^:\n]+:[0-9]+" -1000 nil r))
12694 @end lisp
12695
12696 @item Matching on the body
12697 This is generally not a very good idea---it takes a very long time.
12698 Gnus actually has to fetch each individual article from the server. But
12699 you might want to anyway, I guess. Even though there are three match
12700 keys (@code{Head}, @code{Body} and @code{All}), you should choose one
12701 and stick with it in each score file. If you use any two, each article
12702 will be fetched @emph{twice}. If you want to match a bit on the
12703 @code{Head} and a bit on the @code{Body}, just use @code{All} for all
12704 the matches.
12705
12706 @item Marking as read
12707 You will probably want to mark articles that has a score below a certain
12708 number as read. This is most easily achieved by putting the following
12709 in your @file{all.SCORE} file:
12710 @lisp
12711 ((mark -100))
12712 @end lisp
12713 You may also consider doing something similar with @code{expunge}.
12714
12715 @item Negated character classes
12716 If you say stuff like @code{[^abcd]*}, you may get unexpected results.
12717 That will match newlines, which might lead to, well, The Unknown. Say
12718 @code{[^abcd\n]*} instead.
12719 @end table
12720
12721
12722 @node Reverse Scoring
12723 @section Reverse Scoring
12724 @cindex reverse scoring
12725
12726 If you want to keep just articles that have @samp{Sex with Emacs} in the
12727 subject header, and expunge all other articles, you could put something
12728 like this in your score file:
12729
12730 @lisp
12731 (("subject"
12732 ("Sex with Emacs" 2))
12733 (mark 1)
12734 (expunge 1))
12735 @end lisp
12736
12737 So, you raise all articles that match @samp{Sex with Emacs} and mark the
12738 rest as read, and expunge them to boot.
12739
12740
12741 @node Global Score Files
12742 @section Global Score Files
12743 @cindex global score files
12744
12745 Sure, other newsreaders have ``global kill files''. These are usually
12746 nothing more than a single kill file that applies to all groups, stored
12747 in the user's home directory. Bah! Puny, weak newsreaders!
12748
12749 What I'm talking about here are Global Score Files. Score files from
12750 all over the world, from users everywhere, uniting all nations in one
12751 big, happy score file union! Ange-score! New and untested!
12752
12753 @vindex gnus-global-score-files
12754 All you have to do to use other people's score files is to set the
12755 @code{gnus-global-score-files} variable. One entry for each score file,
12756 or each score file directory. Gnus will decide by itself what score
12757 files are applicable to which group.
12758
12759 Say you want to use the score file
12760 @file{/ftp@@ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE} and
12761 all score files in the @file{/ftp@@ftp.some-where:/pub/score} directory:
12762
12763 @lisp
12764 (setq gnus-global-score-files
12765 '("/ftp@@ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE"
12766 "/ftp@@ftp.some-where:/pub/score/"))
12767 @end lisp
12768
12769 @findex gnus-score-search-global-directories
12770 Simple, eh? Directory names must end with a @samp{/}. These
12771 directories are typically scanned only once during each Gnus session.
12772 If you feel the need to manually re-scan the remote directories, you can
12773 use the @code{gnus-score-search-global-directories} command.
12774
12775 Note that, at present, using this option will slow down group entry
12776 somewhat. (That is---a lot.)
12777
12778 If you want to start maintaining score files for other people to use,
12779 just put your score file up for anonymous ftp and announce it to the
12780 world. Become a retro-moderator! Participate in the retro-moderator
12781 wars sure to ensue, where retro-moderators battle it out for the
12782 sympathy of the people, luring them to use their score files on false
12783 premises! Yay! The net is saved!
12784
12785 Here are some tips for the would-be retro-moderator, off the top of my
12786 head:
12787
12788 @itemize @bullet
12789
12790 @item
12791 Articles heavily crossposted are probably junk.
12792 @item
12793 To lower a single inappropriate article, lower by @code{Message-ID}.
12794 @item
12795 Particularly brilliant authors can be raised on a permanent basis.
12796 @item
12797 Authors that repeatedly post off-charter for the group can safely be
12798 lowered out of existence.
12799 @item
12800 Set the @code{mark} and @code{expunge} atoms to obliterate the nastiest
12801 articles completely.
12802
12803 @item
12804 Use expiring score entries to keep the size of the file down. You
12805 should probably have a long expiry period, though, as some sites keep
12806 old articles for a long time.
12807 @end itemize
12808
12809 ... I wonder whether other newsreaders will support global score files
12810 in the future. @emph{Snicker}. Yup, any day now, newsreaders like Blue
12811 Wave, xrn and 1stReader are bound to implement scoring. Should we start
12812 holding our breath yet?
12813
12814
12815 @node Kill Files
12816 @section Kill Files
12817 @cindex kill files
12818
12819 Gnus still supports those pesky old kill files. In fact, the kill file
12820 entries can now be expiring, which is something I wrote before Daniel
12821 Quinlan thought of doing score files, so I've left the code in there.
12822
12823 In short, kill processing is a lot slower (and I do mean @emph{a lot})
12824 than score processing, so it might be a good idea to rewrite your kill
12825 files into score files.
12826
12827 Anyway, a kill file is a normal @code{emacs-lisp} file. You can put any
12828 forms into this file, which means that you can use kill files as some
12829 sort of primitive hook function to be run on group entry, even though
12830 that isn't a very good idea.
12831
12832 Normal kill files look like this:
12833
12834 @lisp
12835 (gnus-kill "From" "Lars Ingebrigtsen")
12836 (gnus-kill "Subject" "ding")
12837 (gnus-expunge "X")
12838 @end lisp
12839
12840 This will mark every article written by me as read, and remove the
12841 marked articles from the summary buffer. Very useful, you'll agree.
12842
12843 Other programs use a totally different kill file syntax. If Gnus
12844 encounters what looks like a @code{rn} kill file, it will take a stab at
12845 interpreting it.
12846
12847 Two summary functions for editing a GNUS kill file:
12848
12849 @table @kbd
12850
12851 @item M-k
12852 @kindex M-k (Summary)
12853 @findex gnus-summary-edit-local-kill
12854 Edit this group's kill file (@code{gnus-summary-edit-local-kill}).
12855
12856 @item M-K
12857 @kindex M-K (Summary)
12858 @findex gnus-summary-edit-global-kill
12859 Edit the general kill file (@code{gnus-summary-edit-global-kill}).
12860 @end table
12861
12862 Two group mode functions for editing the kill files:
12863
12864 @table @kbd
12865
12866 @item M-k
12867 @kindex M-k (Group)
12868 @findex gnus-group-edit-local-kill
12869 Edit this group's kill file (@code{gnus-group-edit-local-kill}).
12870
12871 @item M-K
12872 @kindex M-K (Group)
12873 @findex gnus-group-edit-global-kill
12874 Edit the general kill file (@code{gnus-group-edit-global-kill}).
12875 @end table
12876
12877 Kill file variables:
12878
12879 @table @code
12880 @item gnus-kill-file-name
12881 @vindex gnus-kill-file-name
12882 A kill file for the group @samp{soc.motss} is normally called
12883 @file{soc.motss.KILL}. The suffix appended to the group name to get
12884 this file name is detailed by the @code{gnus-kill-file-name} variable.
12885 The ``global'' kill file (not in the score file sense of ``global'', of
12886 course) is just called @file{KILL}.
12887
12888 @vindex gnus-kill-save-kill-file
12889 @item gnus-kill-save-kill-file
12890 If this variable is non-@code{nil}, Gnus will save the
12891 kill file after processing, which is necessary if you use expiring
12892 kills.
12893
12894 @item gnus-apply-kill-hook
12895 @vindex gnus-apply-kill-hook
12896 @findex gnus-apply-kill-file-unless-scored
12897 @findex gnus-apply-kill-file
12898 A hook called to apply kill files to a group. It is
12899 @code{(gnus-apply-kill-file)} by default. If you want to ignore the
12900 kill file if you have a score file for the same group, you can set this
12901 hook to @code{(gnus-apply-kill-file-unless-scored)}. If you don't want
12902 kill files to be processed, you should set this variable to @code{nil}.
12903
12904 @item gnus-kill-file-mode-hook
12905 @vindex gnus-kill-file-mode-hook
12906 A hook called in kill-file mode buffers.
12907
12908 @end table
12909
12910
12911 @node Converting Kill Files
12912 @section Converting Kill Files
12913 @cindex kill files
12914 @cindex converting kill files
12915
12916 If you have loads of old kill files, you may want to convert them into
12917 score files. If they are ``regular'', you can use
12918 the @file{gnus-kill-to-score.el} package; if not, you'll have to do it
12919 by hand.
12920
12921 The kill to score conversion package isn't included in Gnus by default.
12922 You can fetch it from
12923 @file{http://www.stud.ifi.uio.no/~larsi/ding-other/gnus-kill-to-score}.
12924
12925 If your old kill files are very complex---if they contain more
12926 non-@code{gnus-kill} forms than not, you'll have to convert them by
12927 hand. Or just let them be as they are. Gnus will still use them as
12928 before.
12929
12930
12931 @node GroupLens
12932 @section GroupLens
12933 @cindex GroupLens
12934
12935 GroupLens is a collaborative filtering system that helps you work
12936 together with other people to find the quality news articles out of the
12937 huge volume of news articles generated every day.
12938
12939 To accomplish this the GroupLens system combines your opinions about
12940 articles you have already read with the opinions of others who have done
12941 likewise and gives you a personalized prediction for each unread news
12942 article. Think of GroupLens as a matchmaker. GroupLens watches how you
12943 rate articles, and finds other people that rate articles the same way.
12944 Once it has found some people you agree with it tells you, in the form
12945 of a prediction, what they thought of the article. You can use this
12946 prediction to help you decide whether or not you want to read the
12947 article.
12948
12949 @menu
12950 * Using GroupLens:: How to make Gnus use GroupLens.
12951 * Rating Articles:: Letting GroupLens know how you rate articles.
12952 * Displaying Predictions:: Displaying predictions given by GroupLens.
12953 * GroupLens Variables:: Customizing GroupLens.
12954 @end menu
12955
12956
12957 @node Using GroupLens
12958 @subsection Using GroupLens
12959
12960 To use GroupLens you must register a pseudonym with your local Better
12961 Bit Bureau (BBB).
12962 @samp{http://www.cs.umn.edu/Research/GroupLens/bbb.html} is the only
12963 better bit in town at the moment.
12964
12965 Once you have registered you'll need to set a couple of variables.
12966
12967 @table @code
12968
12969 @item gnus-use-grouplens
12970 @vindex gnus-use-grouplens
12971 Setting this variable to a non-@code{nil} value will make Gnus hook into
12972 all the relevant GroupLens functions.
12973
12974 @item grouplens-pseudonym
12975 @vindex grouplens-pseudonym
12976 This variable should be set to the pseudonym you got when registering
12977 with the Better Bit Bureau.
12978
12979 @item grouplens-newsgroups
12980 @vindex grouplens-newsgroups
12981 A list of groups that you want to get GroupLens predictions for.
12982
12983 @end table
12984
12985 That's the minimum of what you need to get up and running with GroupLens.
12986 Once you've registered, GroupLens will start giving you scores for
12987 articles based on the average of what other people think. But, to get
12988 the real benefit of GroupLens you need to start rating articles
12989 yourself. Then the scores GroupLens gives you will be personalized for
12990 you, based on how the people you usually agree with have already rated.
12991
12992
12993 @node Rating Articles
12994 @subsection Rating Articles
12995
12996 In GroupLens, an article is rated on a scale from 1 to 5, inclusive.
12997 Where 1 means something like this article is a waste of bandwidth and 5
12998 means that the article was really good. The basic question to ask
12999 yourself is, "on a scale from 1 to 5 would I like to see more articles
13000 like this one?"
13001
13002 There are four ways to enter a rating for an article in GroupLens.
13003
13004 @table @kbd
13005
13006 @item r
13007 @kindex r (GroupLens)
13008 @findex bbb-summary-rate-article
13009 This function will prompt you for a rating on a scale of one to five.
13010
13011 @item k
13012 @kindex k (GroupLens)
13013 @findex grouplens-score-thread
13014 This function will prompt you for a rating, and rate all the articles in
13015 the thread. This is really useful for some of those long running giant
13016 threads in rec.humor.
13017
13018 @end table
13019
13020 The next two commands, @kbd{n} and @kbd{,} take a numerical prefix to be
13021 the score of the article you're reading.
13022
13023 @table @kbd
13024
13025 @item 1-5 n
13026 @kindex n (GroupLens)
13027 @findex grouplens-next-unread-article
13028 Rate the article and go to the next unread article.
13029
13030 @item 1-5 ,
13031 @kindex , (GroupLens)
13032 @findex grouplens-best-unread-article
13033 Rate the article and go to the next unread article with the highest score.
13034
13035 @end table
13036
13037 If you want to give the current article a score of 4 and then go to the
13038 next article, just type @kbd{4 n}.
13039
13040
13041 @node Displaying Predictions
13042 @subsection Displaying Predictions
13043
13044 GroupLens makes a prediction for you about how much you will like a
13045 news article. The predictions from GroupLens are on a scale from 1 to
13046 5, where 1 is the worst and 5 is the best. You can use the predictions
13047 from GroupLens in one of three ways controlled by the variable
13048 @code{gnus-grouplens-override-scoring}.
13049
13050 @vindex gnus-grouplens-override-scoring
13051 There are three ways to display predictions in grouplens. You may
13052 choose to have the GroupLens scores contribute to, or override the
13053 regular gnus scoring mechanism. override is the default; however, some
13054 people prefer to see the Gnus scores plus the grouplens scores. To get
13055 the separate scoring behavior you need to set
13056 @code{gnus-grouplens-override-scoring} to @code{'separate}. To have the
13057 GroupLens predictions combined with the grouplens scores set it to
13058 @code{'override} and to combine the scores set
13059 @code{gnus-grouplens-override-scoring} to @code{'combine}. When you use
13060 the combine option you will also want to set the values for
13061 @code{grouplens-prediction-offset} and
13062 @code{grouplens-score-scale-factor}.
13063
13064 @vindex grouplens-prediction-display
13065 In either case, GroupLens gives you a few choices for how you would like
13066 to see your predictions displayed. The display of predictions is
13067 controlled by the @code{grouplens-prediction-display} variable.
13068
13069 The following are valid values for that variable.
13070
13071 @table @code
13072 @item prediction-spot
13073 The higher the prediction, the further to the right an @samp{*} is
13074 displayed.
13075
13076 @item confidence-interval
13077 A numeric confidence interval.
13078
13079 @item prediction-bar
13080 The higher the prediction, the longer the bar.
13081
13082 @item confidence-bar
13083 Numerical confidence.
13084
13085 @item confidence-spot
13086 The spot gets bigger with more confidence.
13087
13088 @item prediction-num
13089 Plain-old numeric value.
13090
13091 @item confidence-plus-minus
13092 Prediction +/- confidence.
13093
13094 @end table
13095
13096
13097 @node GroupLens Variables
13098 @subsection GroupLens Variables
13099
13100 @table @code
13101
13102 @item gnus-summary-grouplens-line-format
13103 The summary line format used in GroupLens-enhanced summary buffers. It
13104 accepts the same specs as the normal summary line format (@pxref{Summary
13105 Buffer Lines}). The default is @samp{%U%R%z%l%I%(%[%4L: %-20,20n%]%)
13106 %s\n}.
13107
13108 @item grouplens-bbb-host
13109 Host running the bbbd server. @samp{grouplens.cs.umn.edu} is the
13110 default.
13111
13112 @item grouplens-bbb-port
13113 Port of the host running the bbbd server. The default is 9000.
13114
13115 @item grouplens-score-offset
13116 Offset the prediction by this value. In other words, subtract the
13117 prediction value by this number to arrive at the effective score. The
13118 default is 0.
13119
13120 @item grouplens-score-scale-factor
13121 This variable allows the user to magnify the effect of GroupLens scores.
13122 The scale factor is applied after the offset. The default is 1.
13123
13124 @end table
13125
13126
13127 @node Advanced Scoring
13128 @section Advanced Scoring
13129
13130 Scoring on Subjects and From headers is nice enough, but what if you're
13131 really interested in what a person has to say only when she's talking
13132 about a particular subject? Or what if you really don't want to
13133 read what person A has to say when she's following up to person B, but
13134 want to read what she says when she's following up to person C?
13135
13136 By using advanced scoring rules you may create arbitrarily complex
13137 scoring patterns.
13138
13139 @menu
13140 * Advanced Scoring Syntax:: A definition.
13141 * Advanced Scoring Examples:: What they look like.
13142 * Advanced Scoring Tips:: Getting the most out of it.
13143 @end menu
13144
13145
13146 @node Advanced Scoring Syntax
13147 @subsection Advanced Scoring Syntax
13148
13149 Ordinary scoring rules have a string as the first element in the rule.
13150 Advanced scoring rules have a list as the first element. The second
13151 element is the score to be applied if the first element evaluated to a
13152 non-@code{nil} value.
13153
13154 These lists may consist of three logical operators, one redirection
13155 operator, and various match operators.
13156
13157 Logical operators:
13158
13159 @table @code
13160 @item &
13161 @itemx and
13162 This logical operator will evaluate each of its arguments until it finds
13163 one that evaluates to @code{false}, and then it'll stop. If all arguments
13164 evaluate to @code{true} values, then this operator will return
13165 @code{true}.
13166
13167 @item |
13168 @itemx or
13169 This logical operator will evaluate each of its arguments until it finds
13170 one that evaluates to @code{true}. If no arguments are @code{true},
13171 then this operator will return @code{false}.
13172
13173 @item !
13174 @itemx not
13175 @itemx ¬
13176 This logical operator only takes a single argument. It returns the
13177 logical negation of the value of its argument.
13178
13179 @end table
13180
13181 There is an @dfn{indirection operator} that will make its arguments
13182 apply to the ancestors of the current article being scored. For
13183 instance, @code{1-} will make score rules apply to the parent of the
13184 current article. @code{2-} will make score rules apply to the
13185 grandparent of the current article. Alternatively, you can write
13186 @code{^^}, where the number of @code{^}s (carets) says how far back into
13187 the ancestry you want to go.
13188
13189 Finally, we have the match operators. These are the ones that do the
13190 real work. Match operators are header name strings followed by a match
13191 and a match type. A typical match operator looks like @samp{("from"
13192 "Lars Ingebrigtsen" s)}. The header names are the same as when using
13193 simple scoring, and the match types are also the same.
13194
13195
13196 @node Advanced Scoring Examples
13197 @subsection Advanced Scoring Examples
13198
13199 Let's say you want to increase the score of articles written by Lars
13200 when he's talking about Gnus:
13201
13202 @example
13203 ((&
13204 ("from" "Lars Ingebrigtsen")
13205 ("subject" "Gnus"))
13206 1000)
13207 @end example
13208
13209 Quite simple, huh?
13210
13211 When he writes long articles, he sometimes has something nice to say:
13212
13213 @example
13214 ((&
13215 ("from" "Lars Ingebrigtsen")
13216 (|
13217 ("subject" "Gnus")
13218 ("lines" 100 >)))
13219 1000)
13220 @end example
13221
13222 However, when he responds to things written by Reig Eigil Logge, you
13223 really don't want to read what he's written:
13224
13225 @example
13226 ((&
13227 ("from" "Lars Ingebrigtsen")
13228 (1- ("from" "Reig Eigir Logge")))
13229 -100000)
13230 @end example
13231
13232 Everybody that follows up Redmondo when he writes about disappearing
13233 socks should have their scores raised, but only when they talk about
13234 white socks. However, when Lars talks about socks, it's usually not
13235 very interesting:
13236
13237 @example
13238 ((&
13239 (1-
13240 (&
13241 ("from" "redmondo@@.*no" r)
13242 ("body" "disappearing.*socks" t)))
13243 (! ("from" "Lars Ingebrigtsen"))
13244 ("body" "white.*socks"))
13245 1000)
13246 @end example
13247
13248 The possibilities are endless.
13249
13250
13251 @node Advanced Scoring Tips
13252 @subsection Advanced Scoring Tips
13253
13254 The @code{&} and @code{|} logical operators do short-circuit logic.
13255 That is, they stop processing their arguments when it's clear what the
13256 result of the operation will be. For instance, if one of the arguments
13257 of an @code{&} evaluates to @code{false}, there's no point in evaluating
13258 the rest of the arguments. This means that you should put slow matches
13259 (@samp{body}, @samp{header}) last and quick matches (@samp{from},
13260 @samp{subject}) first.
13261
13262 The indirection arguments (@code{1-} and so on) will make their
13263 arguments work on previous generations of the thread. If you say
13264 something like:
13265
13266 @example
13267 ...
13268 (1-
13269 (1-
13270 ("from" "lars")))
13271 ...
13272 @end example
13273
13274 Then that means "score on the from header of the grandparent of the
13275 current article". An indirection is quite fast, but it's better to say:
13276
13277 @example
13278 (1-
13279 (&
13280 ("from" "Lars")
13281 ("subject" "Gnus")))
13282 @end example
13283
13284 than it is to say:
13285
13286 @example
13287 (&
13288 (1- ("from" "Lars"))
13289 (1- ("subject" "Gnus")))
13290 @end example
13291
13292
13293 @node Score Decays
13294 @section Score Decays
13295 @cindex score decays
13296 @cindex decays
13297
13298 You may find that your scores have a tendency to grow without
13299 bounds, especially if you're using adaptive scoring. If scores get too
13300 big, they lose all meaning---they simply max out and it's difficult to
13301 use them in any sensible way.
13302
13303 @vindex gnus-decay-scores
13304 @findex gnus-decay-score
13305 @vindex gnus-decay-score-function
13306 Gnus provides a mechanism for decaying scores to help with this problem.
13307 When score files are loaded and @code{gnus-decay-scores} is
13308 non-@code{nil}, Gnus will run the score files through the decaying
13309 mechanism thereby lowering the scores of all non-permanent score rules.
13310 The decay itself if performed by the @code{gnus-decay-score-function}
13311 function, which is @code{gnus-decay-score} by default. Here's the
13312 definition of that function:
13313
13314 @lisp
13315 (defun gnus-decay-score (score)
13316 "Decay SCORE.
13317 This is done according to `gnus-score-decay-constant'
13318 and `gnus-score-decay-scale'."
13319 (floor
13320 (- score
13321 (* (if (< score 0) 1 -1)
13322 (min (abs score)
13323 (max gnus-score-decay-constant
13324 (* (abs score)
13325 gnus-score-decay-scale)))))))
13326 @end lisp
13327
13328 @vindex gnus-score-decay-scale
13329 @vindex gnus-score-decay-constant
13330 @code{gnus-score-decay-constant} is 3 by default and
13331 @code{gnus-score-decay-scale} is 0.05. This should cause the following:
13332
13333 @enumerate
13334 @item
13335 Scores between -3 and 3 will be set to 0 when this function is called.
13336
13337 @item
13338 Scores with magnitudes between 3 and 60 will be shrunk by 3.
13339
13340 @item
13341 Scores with magnitudes greater than 60 will be shrunk by 5% of the
13342 score.
13343 @end enumerate
13344
13345 If you don't like this decay function, write your own. It is called
13346 with the score to be decayed as its only parameter, and it should return
13347 the new score, which should be an integer.
13348
13349 Gnus will try to decay scores once a day. If you haven't run Gnus for
13350 four days, Gnus will decay the scores four times, for instance.
13351
13352
13353 @node Various
13354 @chapter Various
13355
13356 @menu
13357 * Process/Prefix:: A convention used by many treatment commands.
13358 * Interactive:: Making Gnus ask you many questions.
13359 * Symbolic Prefixes:: How to supply some Gnus functions with options.
13360 * Formatting Variables:: You can specify what buffers should look like.
13361 * Windows Configuration:: Configuring the Gnus buffer windows.
13362 * Faces and Fonts:: How to change how faces look.
13363 * Compilation:: How to speed Gnus up.
13364 * Mode Lines:: Displaying information in the mode lines.
13365 * Highlighting and Menus:: Making buffers look all nice and cozy.
13366 * Buttons:: Get tendonitis in ten easy steps!
13367 * Daemons:: Gnus can do things behind your back.
13368 * NoCeM:: How to avoid spam and other fatty foods.
13369 * Undo:: Some actions can be undone.
13370 * Moderation:: What to do if you're a moderator.
13371 * XEmacs Enhancements:: There are more pictures and stuff under XEmacs.
13372 * Fuzzy Matching:: What's the big fuzz?
13373 * Thwarting Email Spam:: A how-to on avoiding unsolicited commercial email.
13374 * Various Various:: Things that are really various.
13375 @end menu
13376
13377
13378 @node Process/Prefix
13379 @section Process/Prefix
13380 @cindex process/prefix convention
13381
13382 Many functions, among them functions for moving, decoding and saving
13383 articles, use what is known as the @dfn{Process/Prefix convention}.
13384
13385 This is a method for figuring out what articles the user wants the
13386 command to be performed on.
13387
13388 It goes like this:
13389
13390 If the numeric prefix is N, perform the operation on the next N
13391 articles, starting with the current one. If the numeric prefix is
13392 negative, perform the operation on the previous N articles, starting
13393 with the current one.
13394
13395 @vindex transient-mark-mode
13396 If @code{transient-mark-mode} in non-@code{nil} and the region is
13397 active, all articles in the region will be worked upon.
13398
13399 If there is no numeric prefix, but some articles are marked with the
13400 process mark, perform the operation on the articles marked with
13401 the process mark.
13402
13403 If there is neither a numeric prefix nor any articles marked with the
13404 process mark, just perform the operation on the current article.
13405
13406 Quite simple, really, but it needs to be made clear so that surprises
13407 are avoided.
13408
13409 Commands that react to the process mark will push the current list of
13410 process marked articles onto a stack and will then clear all process
13411 marked articles. You can restore the previous configuration with the
13412 @kbd{M P y} command (@pxref{Setting Process Marks}).
13413
13414 @vindex gnus-summary-goto-unread
13415 One thing that seems to shock & horrify lots of people is that, for
13416 instance, @kbd{3 d} does exactly the same as @kbd{d} @kbd{d} @kbd{d}.
13417 Since each @kbd{d} (which marks the current article as read) by default
13418 goes to the next unread article after marking, this means that @kbd{3 d}
13419 will mark the next three unread articles as read, no matter what the
13420 summary buffer looks like. Set @code{gnus-summary-goto-unread} to
13421 @code{nil} for a more straightforward action.
13422
13423
13424 @node Interactive
13425 @section Interactive
13426 @cindex interaction
13427
13428 @table @code
13429
13430 @item gnus-novice-user
13431 @vindex gnus-novice-user
13432 If this variable is non-@code{nil}, you are either a newcomer to the
13433 World of Usenet, or you are very cautious, which is a nice thing to be,
13434 really. You will be given questions of the type ``Are you sure you want
13435 to do this?'' before doing anything dangerous. This is @code{t} by
13436 default.
13437
13438 @item gnus-expert-user
13439 @vindex gnus-expert-user
13440 If this variable is non-@code{nil}, you will seldom be asked any
13441 questions by Gnus. It will simply assume you know what you're doing, no
13442 matter how strange.
13443
13444 @item gnus-interactive-catchup
13445 @vindex gnus-interactive-catchup
13446 Require confirmation before catching up a group if non-@code{nil}. It
13447 is @code{t} by default.
13448
13449 @item gnus-interactive-exit
13450 @vindex gnus-interactive-exit
13451 Require confirmation before exiting Gnus. This variable is @code{t} by
13452 default.
13453 @end table
13454
13455
13456 @node Symbolic Prefixes
13457 @section Symbolic Prefixes
13458 @cindex symbolic prefixes
13459
13460 Quite a lot of Emacs commands react to the (numeric) prefix. For
13461 instance, @kbd{C-u 4 C-f} moves point four characters forward, and
13462 @kbd{C-u 9 0 0 I s s p} adds a permanent @code{Subject} substring score
13463 rule of 900 to the current article.
13464
13465 This is all nice and well, but what if you want to give a command some
13466 additional information? Well, what most commands do is interpret the
13467 ``raw'' prefix in some special way. @kbd{C-u 0 C-x C-s} means that one
13468 doesn't want a backup file to be created when saving the current buffer,
13469 for instance. But what if you want to save without making a backup
13470 file, and you want Emacs to flash lights and play a nice tune at the
13471 same time? You can't, and you're probably perfectly happy that way.
13472
13473 @kindex M-i (Summary)
13474 @findex gnus-symbolic-argument
13475 I'm not, so I've added a second prefix---the @dfn{symbolic prefix}. The
13476 prefix key is @kbd{M-i} (@code{gnus-symbolic-argument}), and the next
13477 character typed in is the value. You can stack as many @kbd{M-i}
13478 prefixes as you want. @kbd{M-i a M-C-u} means ``feed the @kbd{M-C-u}
13479 command the symbolic prefix @code{a}''. @kbd{M-i a M-i b M-C-u} means
13480 ``feed the @kbd{M-C-u} command the symbolic prefixes @code{a} and
13481 @code{b}''. You get the drift.
13482
13483 Typing in symbolic prefixes to commands that don't accept them doesn't
13484 hurt, but it doesn't do any good either. Currently not many Gnus
13485 functions make use of the symbolic prefix.
13486
13487 If you're interested in how Gnus implements this, @pxref{Extended
13488 Interactive}.
13489
13490
13491 @node Formatting Variables
13492 @section Formatting Variables
13493 @cindex formatting variables
13494
13495 Throughout this manual you've probably noticed lots of variables called
13496 things like @code{gnus-group-line-format} and
13497 @code{gnus-summary-mode-line-format}. These control how Gnus is to
13498 output lines in the various buffers. There's quite a lot of them.
13499 Fortunately, they all use the same syntax, so there's not that much to
13500 be annoyed by.
13501
13502 Here's an example format spec (from the group buffer): @samp{%M%S%5y:
13503 %(%g%)\n}. We see that it is indeed extremely ugly, and that there are
13504 lots of percentages everywhere.
13505
13506 @menu
13507 * Formatting Basics:: A formatting variable is basically a format string.
13508 * Mode Line Formatting:: Some rules about mode line formatting variables.
13509 * Advanced Formatting:: Modifying output in various ways.
13510 * User-Defined Specs:: Having Gnus call your own functions.
13511 * Formatting Fonts:: Making the formatting look colorful and nice.
13512 @end menu
13513
13514 Currently Gnus uses the following formatting variables:
13515 @code{gnus-group-line-format}, @code{gnus-summary-line-format},
13516 @code{gnus-server-line-format}, @code{gnus-topic-line-format},
13517 @code{gnus-group-mode-line-format},
13518 @code{gnus-summary-mode-line-format},
13519 @code{gnus-article-mode-line-format},
13520 @code{gnus-server-mode-line-format}, and
13521 @code{gnus-summary-pick-line-format}.
13522
13523 All these format variables can also be arbitrary elisp forms. In that
13524 case, they will be @code{eval}ed to insert the required lines.
13525
13526 @kindex M-x gnus-update-format
13527 @findex gnus-update-format
13528 Gnus includes a command to help you while creating your own format
13529 specs. @kbd{M-x gnus-update-format} will @code{eval} the current form,
13530 update the spec in question and pop you to a buffer where you can
13531 examine the resulting lisp code to be run to generate the line.
13532
13533
13534
13535 @node Formatting Basics
13536 @subsection Formatting Basics
13537
13538 Each @samp{%} element will be replaced by some string or other when the
13539 buffer in question is generated. @samp{%5y} means ``insert the @samp{y}
13540 spec, and pad with spaces to get a 5-character field''.
13541
13542 As with normal C and Emacs Lisp formatting strings, the numerical
13543 modifier between the @samp{%} and the formatting type character will
13544 @dfn{pad} the output so that it is always at least that long.
13545 @samp{%5y} will make the field always (at least) five characters wide by
13546 padding with spaces to the left. If you say @samp{%-5y}, it will pad to
13547 the right instead.
13548
13549 You may also wish to limit the length of the field to protect against
13550 particularly wide values. For that you can say @samp{%4,6y}, which
13551 means that the field will never be more than 6 characters wide and never
13552 less than 4 characters wide.
13553
13554
13555 @node Mode Line Formatting
13556 @subsection Mode Line Formatting
13557
13558 Mode line formatting variables (e.g.,
13559 @code{gnus-summary-mode-line-format}) follow the same rules as other,
13560 buffer line oriented formatting variables (@pxref{Formatting Basics})
13561 with the following two differences:
13562
13563 @enumerate
13564
13565 @item
13566 There must be no newline (@samp{\n}) at the end.
13567
13568 @item
13569 The special @samp{%%b} spec can be used to display the buffer name.
13570 Well, it's no spec at all, really---@samp{%%} is just a way to quote
13571 @samp{%} to allow it to pass through the formatting machinery unmangled,
13572 so that Emacs receives @samp{%b}, which is something the Emacs mode line
13573 display interprets to mean ``show the buffer name''. For a full list of
13574 mode line specs Emacs understands, see the documentation of the
13575 @code{mode-line-format} variable.
13576
13577 @end enumerate
13578
13579
13580 @node Advanced Formatting
13581 @subsection Advanced Formatting
13582
13583 It is frequently useful to post-process the fields in some way.
13584 Padding, limiting, cutting off parts and suppressing certain values can
13585 be achieved by using @dfn{tilde modifiers}. A typical tilde spec might
13586 look like @samp{%~(cut 3)~(ignore "0")y}.
13587
13588 These are the valid modifiers:
13589
13590 @table @code
13591 @item pad
13592 @itemx pad-left
13593 Pad the field to the left with spaces until it reaches the required
13594 length.
13595
13596 @item pad-right
13597 Pad the field to the right with spaces until it reaches the required
13598 length.
13599
13600 @item max
13601 @itemx max-left
13602 Cut off characters from the left until it reaches the specified length.
13603
13604 @item max-right
13605 Cut off characters from the right until it reaches the specified
13606 length.
13607
13608 @item cut
13609 @itemx cut-left
13610 Cut off the specified number of characters from the left.
13611
13612 @item cut-right
13613 Cut off the specified number of characters from the right.
13614
13615 @item ignore
13616 Return an empty string if the field is equal to the specified value.
13617
13618 @item form
13619 Use the specified form as the field value when the @samp{@@} spec is
13620 used.
13621 @end table
13622
13623 Let's take an example. The @samp{%o} spec in the summary mode lines
13624 will return a date in compact ISO8601 format---@samp{19960809T230410}.
13625 This is quite a mouthful, so we want to shave off the century number and
13626 the time, leaving us with a six-character date. That would be
13627 @samp{%~(cut-left 2)~(max-right 6)~(pad 6)o}. (Cutting is done before
13628 maxing, and we need the padding to ensure that the date is never less
13629 than 6 characters to make it look nice in columns.)
13630
13631 Ignoring is done first; then cutting; then maxing; and then as the very
13632 last operation, padding.
13633
13634 If you use lots of these advanced thingies, you'll find that Gnus gets
13635 quite slow. This can be helped enormously by running @kbd{M-x
13636 gnus-compile} when you are satisfied with the look of your lines.
13637 @xref{Compilation}.
13638
13639
13640 @node User-Defined Specs
13641 @subsection User-Defined Specs
13642
13643 All the specs allow for inserting user defined specifiers---@samp{u}.
13644 The next character in the format string should be a letter. Gnus
13645 will call the function @code{gnus-user-format-function-}@samp{X}, where
13646 @samp{X} is the letter following @samp{%u}. The function will be passed
13647 a single parameter---what the parameter means depends on what buffer
13648 it's being called from. The function should return a string, which will
13649 be inserted into the buffer just like information from any other
13650 specifier. This function may also be called with dummy values, so it
13651 should protect against that.
13652
13653 You can also use tilde modifiers (@pxref{Advanced Formatting} to achieve
13654 much the same without defining new functions. Here's an example:
13655 @samp{%~(form (count-lines (point-min) (point)))@@}. The form
13656 given here will be evaluated to yield the current line number, and then
13657 inserted.
13658
13659
13660 @node Formatting Fonts
13661 @subsection Formatting Fonts
13662
13663 There are specs for highlighting, and these are shared by all the format
13664 variables. Text inside the @samp{%(} and @samp{%)} specifiers will get
13665 the special @code{mouse-face} property set, which means that it will be
13666 highlighted (with @code{gnus-mouse-face}) when you put the mouse pointer
13667 over it.
13668
13669 Text inside the @samp{%@{} and @samp{%@}} specifiers will have their
13670 normal faces set using @code{gnus-face-0}, which is @code{bold} by
13671 default. If you say @samp{%1@{}, you'll get @code{gnus-face-1} instead,
13672 and so on. Create as many faces as you wish. The same goes for the
13673 @code{mouse-face} specs---you can say @samp{%3(hello%)} to have
13674 @samp{hello} mouse-highlighted with @code{gnus-mouse-face-3}.
13675
13676 Here's an alternative recipe for the group buffer:
13677
13678 @lisp
13679 ;; Create three face types.
13680 (setq gnus-face-1 'bold)
13681 (setq gnus-face-3 'italic)
13682
13683 ;; We want the article count to be in
13684 ;; a bold and green face. So we create
13685 ;; a new face called `my-green-bold'.
13686 (copy-face 'bold 'my-green-bold)
13687 ;; Set the color.
13688 (set-face-foreground 'my-green-bold "ForestGreen")
13689 (setq gnus-face-2 'my-green-bold)
13690
13691 ;; Set the new & fancy format.
13692 (setq gnus-group-line-format
13693 "%M%S%3@{%5y%@}%2[:%] %(%1@{%g%@}%)\n")
13694 @end lisp
13695
13696 I'm sure you'll be able to use this scheme to create totally unreadable
13697 and extremely vulgar displays. Have fun!
13698
13699 Note that the @samp{%(} specs (and friends) do not make any sense on the
13700 mode-line variables.
13701
13702
13703 @node Windows Configuration
13704 @section Windows Configuration
13705 @cindex windows configuration
13706
13707 No, there's nothing here about X, so be quiet.
13708
13709 @vindex gnus-use-full-window
13710 If @code{gnus-use-full-window} non-@code{nil}, Gnus will delete all
13711 other windows and occupy the entire Emacs screen by itself. It is
13712 @code{t} by default.
13713
13714 @vindex gnus-buffer-configuration
13715 @code{gnus-buffer-configuration} describes how much space each Gnus
13716 buffer should be given. Here's an excerpt of this variable:
13717
13718 @lisp
13719 ((group (vertical 1.0 (group 1.0 point)
13720 (if gnus-carpal (group-carpal 4))))
13721 (article (vertical 1.0 (summary 0.25 point)
13722 (article 1.0))))
13723 @end lisp
13724
13725 This is an alist. The @dfn{key} is a symbol that names some action or
13726 other. For instance, when displaying the group buffer, the window
13727 configuration function will use @code{group} as the key. A full list of
13728 possible names is listed below.
13729
13730 The @dfn{value} (i.e., the @dfn{split}) says how much space each buffer
13731 should occupy. To take the @code{article} split as an example -
13732
13733 @lisp
13734 (article (vertical 1.0 (summary 0.25 point)
13735 (article 1.0)))
13736 @end lisp
13737
13738 This @dfn{split} says that the summary buffer should occupy 25% of upper
13739 half of the screen, and that it is placed over the article buffer. As
13740 you may have noticed, 100% + 25% is actually 125% (yup, I saw y'all
13741 reaching for that calculator there). However, the special number
13742 @code{1.0} is used to signal that this buffer should soak up all the
13743 rest of the space available after the rest of the buffers have taken
13744 whatever they need. There should be only one buffer with the @code{1.0}
13745 size spec per split.
13746
13747 Point will be put in the buffer that has the optional third element
13748 @code{point}. In a @code{frame} split, the last subsplit having a leaf
13749 split where the tag @code{frame-focus} is a member (i.e. is the third or
13750 fourth element in the list, depending on whether the @code{point} tag is
13751 present) gets focus.
13752
13753 Here's a more complicated example:
13754
13755 @lisp
13756 (article (vertical 1.0 (group 4)
13757 (summary 0.25 point)
13758 (if gnus-carpal (summary-carpal 4))
13759 (article 1.0)))
13760 @end lisp
13761
13762 If the size spec is an integer instead of a floating point number,
13763 then that number will be used to say how many lines a buffer should
13764 occupy, not a percentage.
13765
13766 If the @dfn{split} looks like something that can be @code{eval}ed (to be
13767 precise---if the @code{car} of the split is a function or a subr), this
13768 split will be @code{eval}ed. If the result is non-@code{nil}, it will
13769 be used as a split. This means that there will be three buffers if
13770 @code{gnus-carpal} is @code{nil}, and four buffers if @code{gnus-carpal}
13771 is non-@code{nil}.
13772
13773 Not complicated enough for you? Well, try this on for size:
13774
13775 @lisp
13776 (article (horizontal 1.0
13777 (vertical 0.5
13778 (group 1.0)
13779 (gnus-carpal 4))
13780 (vertical 1.0
13781 (summary 0.25 point)
13782 (summary-carpal 4)
13783 (article 1.0))))
13784 @end lisp
13785
13786 Whoops. Two buffers with the mystery 100% tag. And what's that
13787 @code{horizontal} thingie?
13788
13789 If the first element in one of the split is @code{horizontal}, Gnus will
13790 split the window horizontally, giving you two windows side-by-side.
13791 Inside each of these strips you may carry on all you like in the normal
13792 fashion. The number following @code{horizontal} says what percentage of
13793 the screen is to be given to this strip.
13794
13795 For each split, there @emph{must} be one element that has the 100% tag.
13796 The splitting is never accurate, and this buffer will eat any leftover
13797 lines from the splits.
13798
13799 To be slightly more formal, here's a definition of what a valid split
13800 may look like:
13801
13802 @example
13803 split = frame | horizontal | vertical | buffer | form
13804 frame = "(frame " size *split ")"
13805 horizontal = "(horizontal " size *split ")"
13806 vertical = "(vertical " size *split ")"
13807 buffer = "(" buffer-name " " size *[ "point" ] *[ "frame-focus"] ")"
13808 size = number | frame-params
13809 buffer-name = group | article | summary ...
13810 @end example
13811
13812 The limitations are that the @code{frame} split can only appear as the
13813 top-level split. @var{form} should be an Emacs Lisp form that should
13814 return a valid split. We see that each split is fully recursive, and
13815 may contain any number of @code{vertical} and @code{horizontal} splits.
13816
13817 @vindex gnus-window-min-width
13818 @vindex gnus-window-min-height
13819 @cindex window height
13820 @cindex window width
13821 Finding the right sizes can be a bit complicated. No window may be less
13822 than @code{gnus-window-min-height} (default 1) characters high, and all
13823 windows must be at least @code{gnus-window-min-width} (default 1)
13824 characters wide. Gnus will try to enforce this before applying the
13825 splits. If you want to use the normal Emacs window width/height limit,
13826 you can just set these two variables to @code{nil}.
13827
13828 If you're not familiar with Emacs terminology, @code{horizontal} and
13829 @code{vertical} splits may work the opposite way of what you'd expect.
13830 Windows inside a @code{horizontal} split are shown side-by-side, and
13831 windows within a @code{vertical} split are shown above each other.
13832
13833 @findex gnus-configure-frame
13834 If you want to experiment with window placement, a good tip is to call
13835 @code{gnus-configure-frame} directly with a split. This is the function
13836 that does all the real work when splitting buffers. Below is a pretty
13837 nonsensical configuration with 5 windows; two for the group buffer and
13838 three for the article buffer. (I said it was nonsensical.) If you
13839 @code{eval} the statement below, you can get an idea of how that would
13840 look straight away, without going through the normal Gnus channels.
13841 Play with it until you're satisfied, and then use
13842 @code{gnus-add-configuration} to add your new creation to the buffer
13843 configuration list.
13844
13845 @lisp
13846 (gnus-configure-frame
13847 '(horizontal 1.0
13848 (vertical 10
13849 (group 1.0)
13850 (article 0.3 point))
13851 (vertical 1.0
13852 (article 1.0)
13853 (horizontal 4
13854 (group 1.0)
13855 (article 10)))))
13856 @end lisp
13857
13858 You might want to have several frames as well. No prob---just use the
13859 @code{frame} split:
13860
13861 @lisp
13862 (gnus-configure-frame
13863 '(frame 1.0
13864 (vertical 1.0
13865 (summary 0.25 point frame-focus)
13866 (article 1.0))
13867 (vertical ((height . 5) (width . 15)
13868 (user-position . t)
13869 (left . -1) (top . 1))
13870 (picon 1.0))))
13871
13872 @end lisp
13873
13874 This split will result in the familiar summary/article window
13875 configuration in the first (or ``main'') frame, while a small additional
13876 frame will be created where picons will be shown. As you can see,
13877 instead of the normal @code{1.0} top-level spec, each additional split
13878 should have a frame parameter alist as the size spec.
13879 @xref{Frame Parameters, , Frame Parameters, elisp, The GNU Emacs Lisp
13880 Reference Manual}. Under XEmacs, a frame property list will be
13881 accepted, too---for instance, @code{(height 5 width 15 left -1 top 1)}
13882 is such a plist.
13883
13884 Here's a list of all possible keys for
13885 @code{gnus-buffer-configuration}:
13886
13887 @code{group}, @code{summary}, @code{article}, @code{server},
13888 @code{browse}, @code{message}, @code{pick}, @code{info},
13889 @code{summary-faq}, @code{edit-group}, @code{edit-server},
13890 @code{edit-score}, @code{post}, @code{reply}, @code{forward},
13891 @code{reply-yank}, @code{mail-bounce}, @code{draft}, @code{pipe},
13892 @code{bug}, @code{compose-bounce}, and @code{score-trace}.
13893
13894 Note that the @code{message} key is used for both
13895 @code{gnus-group-mail} and @code{gnus-summary-mail-other-window}. If
13896 it is desirable to distinguish between the two, something like this
13897 might be used:
13898
13899 @lisp
13900 (message (horizontal 1.0
13901 (vertical 1.0 (message 1.0 point))
13902 (vertical 0.24
13903 (if (buffer-live-p gnus-summary-buffer)
13904 '(summary 0.5))
13905 (group 1.0)))))
13906 @end lisp
13907
13908 @findex gnus-add-configuration
13909 Since the @code{gnus-buffer-configuration} variable is so long and
13910 complicated, there's a function you can use to ease changing the config
13911 of a single setting: @code{gnus-add-configuration}. If, for instance,
13912 you want to change the @code{article} setting, you could say:
13913
13914 @lisp
13915 (gnus-add-configuration
13916 '(article (vertical 1.0
13917 (group 4)
13918 (summary .25 point)
13919 (article 1.0))))
13920 @end lisp
13921
13922 You'd typically stick these @code{gnus-add-configuration} calls in your
13923 @file{.gnus.el} file or in some startup hook---they should be run after
13924 Gnus has been loaded.
13925
13926 @vindex gnus-always-force-window-configuration
13927 If all windows mentioned in the configuration are already visible, Gnus
13928 won't change the window configuration. If you always want to force the
13929 ``right'' window configuration, you can set
13930 @code{gnus-always-force-window-configuration} to non-@code{nil}.
13931
13932
13933 @node Faces and Fonts
13934 @section Faces and Fonts
13935 @cindex faces
13936 @cindex fonts
13937 @cindex colors
13938
13939 Fiddling with fonts and faces used to be very difficult, but these days
13940 it is very simple. You simply say @kbd{M-x customize-face}, pick out
13941 the face you want to alter, and alter it via the standard Customize
13942 interface.
13943
13944
13945 @node Compilation
13946 @section Compilation
13947 @cindex compilation
13948 @cindex byte-compilation
13949
13950 @findex gnus-compile
13951
13952 Remember all those line format specification variables?
13953 @code{gnus-summary-line-format}, @code{gnus-group-line-format}, and so
13954 on. Now, Gnus will of course heed whatever these variables are, but,
13955 unfortunately, changing them will mean a quite significant slow-down.
13956 (The default values of these variables have byte-compiled functions
13957 associated with them, while the user-generated versions do not, of
13958 course.)
13959
13960 To help with this, you can run @kbd{M-x gnus-compile} after you've
13961 fiddled around with the variables and feel that you're (kind of)
13962 satisfied. This will result in the new specs being byte-compiled, and
13963 you'll get top speed again. Gnus will save these compiled specs in the
13964 @file{.newsrc.eld} file. (User-defined functions aren't compiled by
13965 this function, though---you should compile them yourself by sticking
13966 them into the @code{.gnus.el} file and byte-compiling that file.)
13967
13968
13969 @node Mode Lines
13970 @section Mode Lines
13971 @cindex mode lines
13972
13973 @vindex gnus-updated-mode-lines
13974 @code{gnus-updated-mode-lines} says what buffers should keep their mode
13975 lines updated. It is a list of symbols. Supported symbols include
13976 @code{group}, @code{article}, @code{summary}, @code{server},
13977 @code{browse}, and @code{tree}. If the corresponding symbol is present,
13978 Gnus will keep that mode line updated with information that may be
13979 pertinent. If this variable is @code{nil}, screen refresh may be
13980 quicker.
13981
13982 @cindex display-time
13983
13984 @vindex gnus-mode-non-string-length
13985 By default, Gnus displays information on the current article in the mode
13986 lines of the summary and article buffers. The information Gnus wishes
13987 to display (e.g. the subject of the article) is often longer than the
13988 mode lines, and therefore have to be cut off at some point. The
13989 @code{gnus-mode-non-string-length} variable says how long the other
13990 elements on the line is (i.e., the non-info part). If you put
13991 additional elements on the mode line (e.g. a clock), you should modify
13992 this variable:
13993
13994 @c Hook written by Francesco Potorti` <pot@cnuce.cnr.it>
13995 @lisp
13996 (add-hook 'display-time-hook
13997 (lambda () (setq gnus-mode-non-string-length
13998 (+ 21
13999 (if line-number-mode 5 0)
14000 (if column-number-mode 4 0)
14001 (length display-time-string)))))
14002 @end lisp
14003
14004 If this variable is @code{nil} (which is the default), the mode line
14005 strings won't be chopped off, and they won't be padded either. Note
14006 that the default is unlikely to be desirable, as even the percentage
14007 complete in the buffer may be crowded off the mode line; the user should
14008 configure this variable appropriately for her configuration.
14009
14010
14011 @node Highlighting and Menus
14012 @section Highlighting and Menus
14013 @cindex visual
14014 @cindex highlighting
14015 @cindex menus
14016
14017 @vindex gnus-visual
14018 The @code{gnus-visual} variable controls most of the Gnus-prettifying
14019 aspects. If @code{nil}, Gnus won't attempt to create menus or use fancy
14020 colors or fonts. This will also inhibit loading the @file{gnus-vis.el}
14021 file.
14022
14023 This variable can be a list of visual properties that are enabled. The
14024 following elements are valid, and are all included by default:
14025
14026 @table @code
14027 @item group-highlight
14028 Do highlights in the group buffer.
14029 @item summary-highlight
14030 Do highlights in the summary buffer.
14031 @item article-highlight
14032 Do highlights in the article buffer.
14033 @item highlight
14034 Turn on highlighting in all buffers.
14035 @item group-menu
14036 Create menus in the group buffer.
14037 @item summary-menu
14038 Create menus in the summary buffers.
14039 @item article-menu
14040 Create menus in the article buffer.
14041 @item browse-menu
14042 Create menus in the browse buffer.
14043 @item server-menu
14044 Create menus in the server buffer.
14045 @item score-menu
14046 Create menus in the score buffers.
14047 @item menu
14048 Create menus in all buffers.
14049 @end table
14050
14051 So if you only want highlighting in the article buffer and menus in all
14052 buffers, you could say something like:
14053
14054 @lisp
14055 (setq gnus-visual '(article-highlight menu))
14056 @end lisp
14057
14058 If you want highlighting only and no menus whatsoever, you'd say:
14059
14060 @lisp
14061 (setq gnus-visual '(highlight))
14062 @end lisp
14063
14064 If @code{gnus-visual} is @code{t}, highlighting and menus will be used
14065 in all Gnus buffers.
14066
14067 Other general variables that influence the look of all buffers include:
14068
14069 @table @code
14070 @item gnus-mouse-face
14071 @vindex gnus-mouse-face
14072 This is the face (i.e., font) used for mouse highlighting in Gnus. No
14073 mouse highlights will be done if @code{gnus-visual} is @code{nil}.
14074
14075 @end table
14076
14077 There are hooks associated with the creation of all the different menus:
14078
14079 @table @code
14080
14081 @item gnus-article-menu-hook
14082 @vindex gnus-article-menu-hook
14083 Hook called after creating the article mode menu.
14084
14085 @item gnus-group-menu-hook
14086 @vindex gnus-group-menu-hook
14087 Hook called after creating the group mode menu.
14088
14089 @item gnus-summary-menu-hook
14090 @vindex gnus-summary-menu-hook
14091 Hook called after creating the summary mode menu.
14092
14093 @item gnus-server-menu-hook
14094 @vindex gnus-server-menu-hook
14095 Hook called after creating the server mode menu.
14096
14097 @item gnus-browse-menu-hook
14098 @vindex gnus-browse-menu-hook
14099 Hook called after creating the browse mode menu.
14100
14101 @item gnus-score-menu-hook
14102 @vindex gnus-score-menu-hook
14103 Hook called after creating the score mode menu.
14104
14105 @end table
14106
14107
14108 @node Buttons
14109 @section Buttons
14110 @cindex buttons
14111 @cindex mouse
14112 @cindex click
14113
14114 Those new-fangled @dfn{mouse} contraptions is very popular with the
14115 young, hep kids who don't want to learn the proper way to do things
14116 these days. Why, I remember way back in the summer of '89, when I was
14117 using Emacs on a Tops 20 system. Three hundred users on one single
14118 machine, and every user was running Simula compilers. Bah!
14119
14120 Right.
14121
14122 @vindex gnus-carpal
14123 Well, you can make Gnus display bufferfuls of buttons you can click to
14124 do anything by setting @code{gnus-carpal} to @code{t}. Pretty simple,
14125 really. Tell the chiropractor I sent you.
14126
14127
14128 @table @code
14129
14130 @item gnus-carpal-mode-hook
14131 @vindex gnus-carpal-mode-hook
14132 Hook run in all carpal mode buffers.
14133
14134 @item gnus-carpal-button-face
14135 @vindex gnus-carpal-button-face
14136 Face used on buttons.
14137
14138 @item gnus-carpal-header-face
14139 @vindex gnus-carpal-header-face
14140 Face used on carpal buffer headers.
14141
14142 @item gnus-carpal-group-buffer-buttons
14143 @vindex gnus-carpal-group-buffer-buttons
14144 Buttons in the group buffer.
14145
14146 @item gnus-carpal-summary-buffer-buttons
14147 @vindex gnus-carpal-summary-buffer-buttons
14148 Buttons in the summary buffer.
14149
14150 @item gnus-carpal-server-buffer-buttons
14151 @vindex gnus-carpal-server-buffer-buttons
14152 Buttons in the server buffer.
14153
14154 @item gnus-carpal-browse-buffer-buttons
14155 @vindex gnus-carpal-browse-buffer-buttons
14156 Buttons in the browse buffer.
14157 @end table
14158
14159 All the @code{buttons} variables are lists. The elements in these list
14160 are either cons cells where the @code{car} contains a text to be displayed and
14161 the @code{cdr} contains a function symbol, or a simple string.
14162
14163
14164 @node Daemons
14165 @section Daemons
14166 @cindex demons
14167 @cindex daemons
14168
14169 Gnus, being larger than any program ever written (allegedly), does lots
14170 of strange stuff that you may wish to have done while you're not
14171 present. For instance, you may want it to check for new mail once in a
14172 while. Or you may want it to close down all connections to all servers
14173 when you leave Emacs idle. And stuff like that.
14174
14175 Gnus will let you do stuff like that by defining various
14176 @dfn{handlers}. Each handler consists of three elements: A
14177 @var{function}, a @var{time}, and an @var{idle} parameter.
14178
14179 Here's an example of a handler that closes connections when Emacs has
14180 been idle for thirty minutes:
14181
14182 @lisp
14183 (gnus-demon-close-connections nil 30)
14184 @end lisp
14185
14186 Here's a handler that scans for PGP headers every hour when Emacs is
14187 idle:
14188
14189 @lisp
14190 (gnus-demon-scan-pgp 60 t)
14191 @end lisp
14192
14193 This @var{time} parameter and than @var{idle} parameter work together
14194 in a strange, but wonderful fashion. Basically, if @var{idle} is
14195 @code{nil}, then the function will be called every @var{time} minutes.
14196
14197 If @var{idle} is @code{t}, then the function will be called after
14198 @var{time} minutes only if Emacs is idle. So if Emacs is never idle,
14199 the function will never be called. But once Emacs goes idle, the
14200 function will be called every @var{time} minutes.
14201
14202 If @var{idle} is a number and @var{time} is a number, the function will
14203 be called every @var{time} minutes only when Emacs has been idle for
14204 @var{idle} minutes.
14205
14206 If @var{idle} is a number and @var{time} is @code{nil}, the function
14207 will be called once every time Emacs has been idle for @var{idle}
14208 minutes.
14209
14210 And if @var{time} is a string, it should look like @samp{07:31}, and
14211 the function will then be called once every day somewhere near that
14212 time. Modified by the @var{idle} parameter, of course.
14213
14214 @vindex gnus-demon-timestep
14215 (When I say ``minute'' here, I really mean @code{gnus-demon-timestep}
14216 seconds. This is 60 by default. If you change that variable,
14217 all the timings in the handlers will be affected.)
14218
14219 @vindex gnus-use-demon
14220 To set the whole thing in motion, though, you have to set
14221 @code{gnus-use-demon} to @code{t}.
14222
14223 So, if you want to add a handler, you could put something like this in
14224 your @file{.gnus} file:
14225
14226 @findex gnus-demon-add-handler
14227 @lisp
14228 (gnus-demon-add-handler 'gnus-demon-close-connections 30 t)
14229 @end lisp
14230
14231 @findex gnus-demon-add-nocem
14232 @findex gnus-demon-add-scanmail
14233 @findex gnus-demon-add-rescan
14234 @findex gnus-demon-add-scan-timestamps
14235 @findex gnus-demon-add-disconnection
14236 Some ready-made functions to do this have been created:
14237 @code{gnus-demon-add-nocem}, @code{gnus-demon-add-disconnection},
14238 @code{gnus-demon-add-nntp-close-connection},
14239 @code{gnus-demon-add-scan-timestamps}, @code{gnus-demon-add-rescan}, and
14240 @code{gnus-demon-add-scanmail}. Just put those functions in your
14241 @file{.gnus} if you want those abilities.
14242
14243 @findex gnus-demon-init
14244 @findex gnus-demon-cancel
14245 @vindex gnus-demon-handlers
14246 If you add handlers to @code{gnus-demon-handlers} directly, you should
14247 run @code{gnus-demon-init} to make the changes take hold. To cancel all
14248 daemons, you can use the @code{gnus-demon-cancel} function.
14249
14250 Note that adding daemons can be pretty naughty if you over do it. Adding
14251 functions that scan all news and mail from all servers every two seconds
14252 is a sure-fire way of getting booted off any respectable system. So
14253 behave.
14254
14255
14256 @node NoCeM
14257 @section NoCeM
14258 @cindex nocem
14259 @cindex spam
14260
14261 @dfn{Spamming} is posting the same article lots and lots of times.
14262 Spamming is bad. Spamming is evil.
14263
14264 Spamming is usually canceled within a day or so by various anti-spamming
14265 agencies. These agencies usually also send out @dfn{NoCeM} messages.
14266 NoCeM is pronounced ``no see-'em'', and means what the name
14267 implies---these are messages that make the offending articles, like, go
14268 away.
14269
14270 What use are these NoCeM messages if the articles are canceled anyway?
14271 Some sites do not honor cancel messages and some sites just honor cancels
14272 from a select few people. Then you may wish to make use of the NoCeM
14273 messages, which are distributed in the @samp{alt.nocem.misc} newsgroup.
14274
14275 Gnus can read and parse the messages in this group automatically, and
14276 this will make spam disappear.
14277
14278 There are some variables to customize, of course:
14279
14280 @table @code
14281 @item gnus-use-nocem
14282 @vindex gnus-use-nocem
14283 Set this variable to @code{t} to set the ball rolling. It is @code{nil}
14284 by default.
14285
14286 @item gnus-nocem-groups
14287 @vindex gnus-nocem-groups
14288 Gnus will look for NoCeM messages in the groups in this list. The
14289 default is @code{("news.lists.filters" "news.admin.net-abuse.bulletins"
14290 "alt.nocem.misc" "news.admin.net-abuse.announce")}.
14291
14292 @item gnus-nocem-issuers
14293 @vindex gnus-nocem-issuers
14294 There are many people issuing NoCeM messages. This list says what
14295 people you want to listen to. The default is @code{("Automoose-1"
14296 "rbraver@@ohww.norman.ok.us" "clewis@@ferret.ocunix.on.ca"
14297 "jem@@xpat.com" "snowhare@@xmission.com" "red@@redpoll.mrfs.oh.us
14298 (Richard E. Depew)")}; fine, upstanding citizens all of them.
14299
14300 Known despammers that you can put in this list include:
14301
14302 @table @samp
14303 @item clewis@@ferret.ocunix.on.ca;
14304 @cindex Chris Lewis
14305 Chris Lewis---Major Canadian despammer who has probably canceled more
14306 usenet abuse than anybody else.
14307
14308 @item Automoose-1
14309 @cindex CancelMoose[tm]
14310 The CancelMoose[tm] on autopilot. The CancelMoose[tm] is reputed to be
14311 Norwegian, and was the person(s) who invented NoCeM.
14312
14313 @item jem@@xpat.com;
14314 @cindex Jem
14315 John Milburn---despammer located in Korea who is getting very busy these
14316 days.
14317
14318 @item red@@redpoll.mrfs.oh.us (Richard E. Depew)
14319 Richard E. Depew---lone American despammer. He mostly cancels binary
14320 postings to non-binary groups and removes spews (regurgitated articles).
14321 @end table
14322
14323 You do not have to heed NoCeM messages from all these people---just the
14324 ones you want to listen to. You also don't have to accept all NoCeM
14325 messages from the people you like. Each NoCeM message has a @dfn{type}
14326 header that gives the message a (more or less, usually less) rigorous
14327 definition. Common types are @samp{spam}, @samp{spew}, @samp{mmf},
14328 @samp{binary}, and @samp{troll}. To specify this, you have to use
14329 @var{(issuer conditions ...)} elements in the list. Each condition is
14330 either a string (which is a regexp that matches types you want to use)
14331 or a list on the form @code{(not STRING)}, where @var{string} is a
14332 regexp that matches types you don't want to use.
14333
14334 For instance, if you want all NoCeM messages from Chris Lewis except his
14335 @samp{troll} messages, you'd say:
14336
14337 @lisp
14338 ("clewis@@ferret.ocunix.on.ca" ".*" (not "troll"))
14339 @end lisp
14340
14341 On the other hand, if you just want nothing but his @samp{spam} and
14342 @samp{spew} messages, you'd say:
14343
14344 @lisp
14345 ("clewis@@ferret.ocunix.on.ca" (not ".*") "spew" "spam")
14346 @end lisp
14347
14348 The specs are applied left-to-right.
14349
14350
14351 @item gnus-nocem-verifyer
14352 @vindex gnus-nocem-verifyer
14353 @findex mc-verify
14354 This should be a function for verifying that the NoCeM issuer is who she
14355 says she is. The default is @code{mc-verify}, which is a Mailcrypt
14356 function. If this is too slow and you don't care for verification
14357 (which may be dangerous), you can set this variable to @code{nil}.
14358
14359 If you want signed NoCeM messages to be verified and unsigned messages
14360 not to be verified (but used anyway), you could do something like:
14361
14362 @lisp
14363 (setq gnus-nocem-verifyer 'my-gnus-mc-verify)
14364
14365 (defun my-gnus-mc-verify ()
14366 (not (eq 'forged
14367 (ignore-errors
14368 (if (mc-verify)
14369 t
14370 'forged)))))
14371 @end lisp
14372
14373 This might be dangerous, though.
14374
14375 @item gnus-nocem-directory
14376 @vindex gnus-nocem-directory
14377 This is where Gnus will store its NoCeM cache files. The default is
14378 @file{~/News/NoCeM/}.
14379
14380 @item gnus-nocem-expiry-wait
14381 @vindex gnus-nocem-expiry-wait
14382 The number of days before removing old NoCeM entries from the cache.
14383 The default is 15. If you make it shorter Gnus will be faster, but you
14384 might then see old spam.
14385
14386 @end table
14387
14388 Using NoCeM could potentially be a memory hog. If you have many living
14389 (i. e., subscribed or unsubscribed groups), your Emacs process will grow
14390 big. If this is a problem, you should kill off all (or most) of your
14391 unsubscribed groups (@pxref{Subscription Commands}).
14392
14393
14394 @node Undo
14395 @section Undo
14396 @cindex undo
14397
14398 It is very useful to be able to undo actions one has done. In normal
14399 Emacs buffers, it's easy enough---you just push the @code{undo} button.
14400 In Gnus buffers, however, it isn't that simple.
14401
14402 The things Gnus displays in its buffer is of no value whatsoever to
14403 Gnus---it's all just data designed to look nice to the user.
14404 Killing a group in the group buffer with @kbd{C-k} makes the line
14405 disappear, but that's just a side-effect of the real action---the
14406 removal of the group in question from the internal Gnus structures.
14407 Undoing something like that can't be done by the normal Emacs
14408 @code{undo} function.
14409
14410 Gnus tries to remedy this somewhat by keeping track of what the user
14411 does and coming up with actions that would reverse the actions the user
14412 takes. When the user then presses the @code{undo} key, Gnus will run
14413 the code to reverse the previous action, or the previous actions.
14414 However, not all actions are easily reversible, so Gnus currently offers
14415 a few key functions to be undoable. These include killing groups,
14416 yanking groups, and changing the list of read articles of groups.
14417 That's it, really. More functions may be added in the future, but each
14418 added function means an increase in data to be stored, so Gnus will
14419 never be totally undoable.
14420
14421 @findex gnus-undo-mode
14422 @vindex gnus-use-undo
14423 @findex gnus-undo
14424 The undoability is provided by the @code{gnus-undo-mode} minor mode. It
14425 is used if @code{gnus-use-undo} is non-@code{nil}, which is the
14426 default. The @kbd{M-C-_} key performs the @code{gnus-undo} command
14427 command, which should feel kinda like the normal Emacs @code{undo}
14428 command.
14429
14430
14431 @node Moderation
14432 @section Moderation
14433 @cindex moderation
14434
14435 If you are a moderator, you can use the @file{gnus-mdrtn.el} package.
14436 It is not included in the standard Gnus package. Write a mail to
14437 @samp{larsi@@gnus.org} and state what group you moderate, and you'll
14438 get a copy.
14439
14440 The moderation package is implemented as a minor mode for summary
14441 buffers. Put
14442
14443 @lisp
14444 (add-hook 'gnus-summary-mode-hook 'gnus-moderate)
14445 @end lisp
14446
14447 in your @file{.gnus.el} file.
14448
14449 If you are the moderator of @samp{rec.zoofle}, this is how it's
14450 supposed to work:
14451
14452 @enumerate
14453 @item
14454 You split your incoming mail by matching on
14455 @samp{Newsgroups:.*rec.zoofle}, which will put all the to-be-posted
14456 articles in some mail group---for instance, @samp{nnml:rec.zoofle}.
14457
14458 @item
14459 You enter that group once in a while and post articles using the @kbd{e}
14460 (edit-and-post) or @kbd{s} (just send unedited) commands.
14461
14462 @item
14463 If, while reading the @samp{rec.zoofle} newsgroup, you happen upon some
14464 articles that weren't approved by you, you can cancel them with the
14465 @kbd{c} command.
14466 @end enumerate
14467
14468 To use moderation mode in these two groups, say:
14469
14470 @lisp
14471 (setq gnus-moderated-list
14472 "^nnml:rec.zoofle$\\|^rec.zoofle$")
14473 @end lisp
14474
14475
14476 @node XEmacs Enhancements
14477 @section XEmacs Enhancements
14478 @cindex XEmacs
14479
14480 XEmacs is able to display pictures and stuff, so Gnus has taken
14481 advantage of that.
14482
14483 @menu
14484 * Picons:: How to display pictures of what your reading.
14485 * Smileys:: Show all those happy faces the way they were meant to be shown.
14486 * Toolbar:: Click'n'drool.
14487 * XVarious:: Other XEmacsy Gnusey variables.
14488 @end menu
14489
14490
14491 @node Picons
14492 @subsection Picons
14493
14494 So... You want to slow down your news reader even more! This is a
14495 good way to do so. Its also a great way to impress people staring
14496 over your shoulder as you read news.
14497
14498 @menu
14499 * Picon Basics:: What are picons and How do I get them.
14500 * Picon Requirements:: Don't go further if you aren't using XEmacs.
14501 * Easy Picons:: Displaying Picons---the easy way.
14502 * Hard Picons:: The way you should do it. You'll learn something.
14503 * Picon Useless Configuration:: Other variables you can trash/tweak/munge/play with.
14504 @end menu
14505
14506
14507 @node Picon Basics
14508 @subsubsection Picon Basics
14509
14510 What are Picons? To quote directly from the Picons Web site:
14511
14512 @quotation
14513 @dfn{Picons} is short for ``personal icons''. They're small,
14514 constrained images used to represent users and domains on the net,
14515 organized into databases so that the appropriate image for a given
14516 e-mail address can be found. Besides users and domains, there are picon
14517 databases for Usenet newsgroups and weather forecasts. The picons are
14518 in either monochrome @code{XBM} format or color @code{XPM} and
14519 @code{GIF} formats.
14520 @end quotation
14521
14522 @vindex gnus-picons-piconsearch-url
14523 If you have a permanent connection to the Internet you can use Steve
14524 Kinzler's Picons Search engine by setting
14525 @code{gnus-picons-piconsearch-url} to the string @*
14526 @file{http://www.cs.indiana.edu/picons/search.html}.
14527
14528 @vindex gnus-picons-database
14529 Otherwise you need a local copy of his database. For instructions on
14530 obtaining and installing the picons databases, point your Web browser at @*
14531 @file{http://www.cs.indiana.edu/picons/ftp/index.html}. Gnus expects
14532 picons to be installed into a location pointed to by
14533 @code{gnus-picons-database}.
14534
14535
14536 @node Picon Requirements
14537 @subsubsection Picon Requirements
14538
14539 To have Gnus display Picons for you, you must be running XEmacs
14540 19.13 or greater since all other versions of Emacs aren't yet able to
14541 display images.
14542
14543 Additionally, you must have @code{x} support compiled into XEmacs. To
14544 display color picons which are much nicer than the black & white one,
14545 you also need one of @code{xpm} or @code{gif} compiled into XEmacs.
14546
14547 @vindex gnus-picons-convert-x-face
14548 If you want to display faces from @code{X-Face} headers, you should have
14549 the @code{xface} support compiled into XEmacs. Otherwise you must have
14550 the @code{netpbm} utilities installed, or munge the
14551 @code{gnus-picons-convert-x-face} variable to use something else.
14552
14553
14554 @node Easy Picons
14555 @subsubsection Easy Picons
14556
14557 To enable displaying picons, simply put the following line in your
14558 @file{~/.gnus} file and start Gnus.
14559
14560 @lisp
14561 (setq gnus-use-picons t)
14562 (add-hook 'gnus-article-display-hook
14563 'gnus-article-display-picons t)
14564 (add-hook 'gnus-article-display-hook
14565 'gnus-picons-article-display-x-face)
14566 @end lisp
14567
14568 and make sure @code{gnus-picons-database} points to the directory
14569 containing the Picons databases.
14570
14571 Alternatively if you want to use the web piconsearch engine add this:
14572
14573 @lisp
14574 (setq gnus-picons-piconsearch-url
14575 "http://www.cs.indiana.edu:800/piconsearch")
14576 @end lisp
14577
14578
14579 @node Hard Picons
14580 @subsubsection Hard Picons
14581
14582 Gnus can display picons for you as you enter and leave groups and
14583 articles. It knows how to interact with three sections of the picons
14584 database. Namely, it can display the picons newsgroup pictures,
14585 author's face picture(s), and the authors domain. To enable this
14586 feature, you need to select where to get the picons from, and where to
14587 display them.
14588
14589 @table @code
14590
14591 @item gnus-picons-database
14592 @vindex gnus-picons-database
14593 The location of the picons database. Should point to a directory
14594 containing the @file{news}, @file{domains}, @file{users} (and so on)
14595 subdirectories. This is only useful if
14596 @code{gnus-picons-piconsearch-url} is @code{nil}. Defaults to
14597 @file{/usr/local/faces/}.
14598
14599 @item gnus-picons-piconsearch-url
14600 @vindex gnus-picons-piconsearch-url
14601 The URL for the web picons search engine. The only currently known
14602 engine is @file{http://www.cs.indiana.edu:800/piconsearch}. To
14603 workaround network delays, icons will be fetched in the background. If
14604 this is @code{nil} 'the default), then picons are fetched from local
14605 database indicated by @code{gnus-picons-database}.
14606
14607 @item gnus-picons-display-where
14608 @vindex gnus-picons-display-where
14609 Where the picon images should be displayed. It is @code{picons} by
14610 default (which by default maps to the buffer @samp{*Picons*}). Other
14611 valid places could be @code{article}, @code{summary}, or
14612 @samp{*scratch*} for all I care. Just make sure that you've made the
14613 buffer visible using the standard Gnus window configuration
14614 routines---@pxref{Windows Configuration}.
14615
14616 @item gnus-picons-group-excluded-groups
14617 @vindex gnus-picons-group-excluded-groups
14618 Groups that are matched by this regexp won't have their group icons
14619 displayed.
14620
14621 @end table
14622
14623 Note: If you set @code{gnus-use-picons} to @code{t}, it will set up your
14624 window configuration for you to include the @code{picons} buffer.
14625
14626 Now that you've made those decision, you need to add the following
14627 functions to the appropriate hooks so these pictures will get displayed
14628 at the right time.
14629
14630 @vindex gnus-article-display-hook
14631 @vindex gnus-picons-display-where
14632 @table @code
14633 @item gnus-article-display-picons
14634 @findex gnus-article-display-picons
14635 Looks up and displays the picons for the author and the author's domain
14636 in the @code{gnus-picons-display-where} buffer. Should be added to the
14637 @code{gnus-article-display-hook}.
14638
14639 @item gnus-picons-article-display-x-face
14640 @findex gnus-article-display-picons
14641 Decodes and displays the X-Face header if present. This function
14642 should be added to @code{gnus-article-display-hook}.
14643
14644 @end table
14645
14646 Note: You must append them to the hook, so make sure to specify 't'
14647 for the append flag of @code{add-hook}:
14648
14649 @lisp
14650 (add-hook 'gnus-article-display-hook 'gnus-article-display-picons t)
14651 @end lisp
14652
14653
14654 @node Picon Useless Configuration
14655 @subsubsection Picon Useless Configuration
14656
14657 The following variables offer further control over how things are
14658 done, where things are located, and other useless stuff you really
14659 don't need to worry about.
14660
14661 @table @code
14662
14663 @item gnus-picons-news-directories
14664 @vindex gnus-picons-news-directories
14665 List of subdirectories to search in @code{gnus-picons-database} for
14666 newsgroups faces. @code{("news")} is the default.
14667
14668 @item gnus-picons-user-directories
14669 @vindex gnus-picons-user-directories
14670 List of subdirectories to search in @code{gnus-picons-database} for user
14671 faces. @code{("local" "users" "usenix" "misc")} is the default.
14672
14673 @item gnus-picons-domain-directories
14674 @vindex gnus-picons-domain-directories
14675 List of subdirectories to search in @code{gnus-picons-database} for
14676 domain name faces. Defaults to @code{("domains")}. Some people may
14677 want to add @samp{"unknown"} to this list.
14678
14679 @item gnus-picons-convert-x-face
14680 @vindex gnus-picons-convert-x-face
14681 If you don't have @code{xface} support builtin XEmacs, this is the
14682 command to use to convert the @code{X-Face} header to an X bitmap
14683 (@code{xbm}). Defaults to @code{(format "@{ echo '/* Width=48,
14684 Height=48 */'; uncompface; @} | icontopbm | pbmtoxbm > %s"
14685 gnus-picons-x-face-file-name)}
14686
14687 @item gnus-picons-x-face-file-name
14688 @vindex gnus-picons-x-face-file-name
14689 Names a temporary file to store the @code{X-Face} bitmap in. Defaults
14690 to @code{(format "/tmp/picon-xface.%s.xbm" (user-login-name))}.
14691
14692 @item gnus-picons-has-modeline-p
14693 @vindex gnus-picons-has-modeline-p
14694 If you have set @code{gnus-picons-display-where} to @code{picons}, your
14695 XEmacs frame will become really cluttered. To alleviate this a bit you
14696 can set @code{gnus-picons-has-modeline-p} to @code{nil}; this will
14697 remove the mode line from the Picons buffer. This is only useful if
14698 @code{gnus-picons-display-where} is @code{picons}.
14699
14700 @item gnus-picons-refresh-before-display
14701 @vindex gnus-picons-refresh-before-display
14702 If non-nil, display the article buffer before computing the picons.
14703 Defaults to @code{nil}.
14704
14705 @item gnus-picons-display-as-address
14706 @vindex gnus-picons-display-as-address
14707 If @code{t} display textual email addresses along with pictures.
14708 Defaults to @code{t}.
14709
14710 @item gnus-picons-file-suffixes
14711 @vindex gnus-picons-file-suffixes
14712 Ordered list of suffixes on picon file names to try. Defaults to
14713 @code{("xpm" "gif" "xbm")} minus those not builtin your XEmacs.
14714
14715 @item gnus-picons-display-article-move-p
14716 @vindex gnus-picons-display-article-move-p
14717 Whether to move point to first empty line when displaying picons. This
14718 has only an effect if `gnus-picons-display-where' has value `article'.
14719
14720 @item gnus-picons-clear-cache-on-shutdown
14721 @vindex gnus-picons-clear-cache-on-shutdown
14722 Whether to clear the picons cache when exiting gnus. Gnus caches every
14723 picons it finds while it is running. This saves some time in the search
14724 process but eats some memory. If this variable is set to @code{nil},
14725 Gnus will never clear the cache itself; you will have to manually call
14726 @code{gnus-picons-clear-cache} to clear it. Otherwise the cache will be
14727 cleared every time you exit Gnus. Defaults to @code{t}.
14728
14729 @end table
14730
14731 @node Smileys
14732 @subsection Smileys
14733 @cindex smileys
14734
14735 @dfn{Smiley} is a package separate from Gnus, but since Gnus is
14736 currently the only package that uses Smiley, it is documented here.
14737
14738 In short---to use Smiley in Gnus, put the following in your
14739 @file{.gnus.el} file:
14740
14741 @lisp
14742 (add-hook 'gnus-article-display-hook 'gnus-smiley-display t)
14743 @end lisp
14744
14745 Smiley maps text smiley faces---@samp{:-)}, @samp{:-=}, @samp{:-(} and
14746 the like---to pictures and displays those instead of the text smiley
14747 faces. The conversion is controlled by a list of regexps that matches
14748 text and maps that to file names.
14749
14750 @vindex smiley-nosey-regexp-alist
14751 @vindex smiley-deformed-regexp-alist
14752 Smiley supplies two example conversion alists by default:
14753 @code{smiley-deformed-regexp-alist} (which matches @samp{:)}, @samp{:(}
14754 and so on), and @code{smiley-nosey-regexp-alist} (which matches
14755 @samp{:-)}, @samp{:-(} and so on).
14756
14757 The alist used is specified by the @code{smiley-regexp-alist} variable,
14758 which defaults to the value of @code{smiley-deformed-regexp-alist}.
14759
14760 The first item in each element is the regexp to be matched; the second
14761 element is the regexp match group that is to be replaced by the picture;
14762 and the third element is the name of the file to be displayed.
14763
14764 The following variables customize where Smiley will look for these
14765 files, as well as the color to be used and stuff:
14766
14767 @table @code
14768
14769 @item smiley-data-directory
14770 @vindex smiley-data-directory
14771 Where Smiley will look for smiley faces files.
14772
14773 @item smiley-flesh-color
14774 @vindex smiley-flesh-color
14775 Skin color. The default is @samp{yellow}, which is really racist.
14776
14777 @item smiley-features-color
14778 @vindex smiley-features-color
14779 Color of the features of the face. The default is @samp{black}.
14780
14781 @item smiley-tongue-color
14782 @vindex smiley-tongue-color
14783 Color of the tongue. The default is @samp{red}.
14784
14785 @item smiley-circle-color
14786 @vindex smiley-circle-color
14787 Color of the circle around the face. The default is @samp{black}.
14788
14789 @item smiley-mouse-face
14790 @vindex smiley-mouse-face
14791 Face used for mouse highlighting over the smiley face.
14792
14793 @end table
14794
14795
14796 @node Toolbar
14797 @subsection Toolbar
14798
14799 @table @code
14800
14801 @item gnus-use-toolbar
14802 @vindex gnus-use-toolbar
14803 If @code{nil}, don't display toolbars. If non-@code{nil}, it should be
14804 one of @code{default-toolbar}, @code{top-toolbar}, @code{bottom-toolbar},
14805 @code{right-toolbar}, or @code{left-toolbar}.
14806
14807 @item gnus-group-toolbar
14808 @vindex gnus-group-toolbar
14809 The toolbar in the group buffer.
14810
14811 @item gnus-summary-toolbar
14812 @vindex gnus-summary-toolbar
14813 The toolbar in the summary buffer.
14814
14815 @item gnus-summary-mail-toolbar
14816 @vindex gnus-summary-mail-toolbar
14817 The toolbar in the summary buffer of mail groups.
14818
14819 @end table
14820
14821
14822 @node XVarious
14823 @subsection Various XEmacs Variables
14824
14825 @table @code
14826 @item gnus-xmas-glyph-directory
14827 @vindex gnus-xmas-glyph-directory
14828 This is where Gnus will look for pictures. Gnus will normally
14829 auto-detect this directory, but you may set it manually if you have an
14830 unusual directory structure.
14831
14832 @item gnus-xmas-logo-color-alist
14833 @vindex gnus-xmas-logo-color-alist
14834 This is an alist where the key is a type symbol and the values are the
14835 foreground and background color of the splash page glyph.
14836
14837 @item gnus-xmas-logo-color-style
14838 @vindex gnus-xmas-logo-color-style
14839 This is the key used to look up the color in the alist described above.
14840 Valid values include @code{flame}, @code{pine}, @code{moss},
14841 @code{irish}, @code{sky}, @code{tin}, @code{velvet}, @code{grape},
14842 @code{labia}, @code{berry}, @code{neutral}, and @code{september}.
14843
14844 @item gnus-xmas-modeline-glyph
14845 @vindex gnus-xmas-modeline-glyph
14846 A glyph displayed in all Gnus mode lines. It is a tiny gnu head by
14847 default.
14848
14849 @end table
14850
14851
14852
14853
14854 @node Fuzzy Matching
14855 @section Fuzzy Matching
14856 @cindex fuzzy matching
14857
14858 Gnus provides @dfn{fuzzy matching} of @code{Subject} lines when doing
14859 things like scoring, thread gathering and thread comparison.
14860
14861 As opposed to regular expression matching, fuzzy matching is very fuzzy.
14862 It's so fuzzy that there's not even a definition of what @dfn{fuzziness}
14863 means, and the implementation has changed over time.
14864
14865 Basically, it tries to remove all noise from lines before comparing.
14866 @samp{Re: }, parenthetical remarks, white space, and so on, are filtered
14867 out of the strings before comparing the results. This often leads to
14868 adequate results---even when faced with strings generated by text
14869 manglers masquerading as newsreaders.
14870
14871
14872 @node Thwarting Email Spam
14873 @section Thwarting Email Spam
14874 @cindex email spam
14875 @cindex spam
14876 @cindex UCE
14877 @cindex unsolicited commercial email
14878
14879 In these last days of the Usenet, commercial vultures are hanging about
14880 and grepping through news like crazy to find email addresses they can
14881 foist off their scams and products to. As a reaction to this, many
14882 people have started putting nonsense addresses into their @code{From}
14883 lines. I think this is counterproductive---it makes it difficult for
14884 people to send you legitimate mail in response to things you write, as
14885 well as making it difficult to see who wrote what. This rewriting may
14886 perhaps be a bigger menace than the unsolicited commercial email itself
14887 in the end.
14888
14889 The biggest problem I have with email spam is that it comes in under
14890 false pretenses. I press @kbd{g} and Gnus merrily informs me that I
14891 have 10 new emails. I say ``Golly gee! Happy is me!'' and select the
14892 mail group, only to find two pyramid schemes, seven advertisements
14893 (``New! Miracle tonic for growing full, lustrous hair on your toes!'')
14894 and one mail asking me to repent and find some god.
14895
14896 This is annoying.
14897
14898 The way to deal with this is having Gnus split out all spam into a
14899 @samp{spam} mail group (@pxref{Splitting Mail}).
14900
14901 First, pick one (1) valid mail address that you can be reached at, and
14902 put it in your @code{From} header of all your news articles. (I've
14903 chosen @samp{larsi@@trym.ifi.uio.no}, but for many addresses on the form
14904 @samp{larsi+usenet@@ifi.uio.no} will be a better choice. Ask your
14905 sysadm whether your sendmail installation accepts keywords in the local
14906 part of the mail address.)
14907
14908 @lisp
14909 (setq message-default-news-headers
14910 "From: Lars Magne Ingebrigtsen <larsi@@trym.ifi.uio.no>\n")
14911 @end lisp
14912
14913 Then put the following split rule in @code{nnmail-split-fancy}
14914 (@pxref{Fancy Mail Splitting}):
14915
14916 @lisp
14917 (
14918 ...
14919 (to "larsi@@trym.ifi.uio.no"
14920 (| ("subject" "re:.*" "misc")
14921 ("references" ".*@@.*" "misc")
14922 "spam"))
14923 ...
14924 )
14925 @end lisp
14926
14927 This says that all mail to this address is suspect, but if it has a
14928 @code{Subject} that starts with a @samp{Re:} or has a @code{References}
14929 header, it's probably ok. All the rest goes to the @samp{spam} group.
14930 (This idea probably comes from Tim Pierce.)
14931
14932 In addition, many mail spammers talk directly to your @code{smtp} server
14933 and do not include your email address explicitly in the @code{To}
14934 header. Why they do this is unknown---perhaps it's to thwart this
14935 thwarting scheme? In any case, this is trivial to deal with---you just
14936 put anything not addressed to you in the @samp{spam} group by ending
14937 your fancy split rule in this way:
14938
14939 @lisp
14940 (
14941 ...
14942 (to "larsi" "misc")
14943 "spam")
14944 @end lisp
14945
14946 In my experience, this will sort virtually everything into the right
14947 group. You still have to check the @samp{spam} group from time to time to
14948 check for legitimate mail, though. If you feel like being a good net
14949 citizen, you can even send off complaints to the proper authorities on
14950 each unsolicited commercial email---at your leisure.
14951
14952 If you are also a lazy net citizen, you will probably prefer complaining
14953 automatically with the @file{gnus-junk.el} package, available FOR FREE
14954 at @* @file{<URL:http://stud2.tuwien.ac.at/~e9426626/gnus-junk.html>}.
14955 Since most e-mail spam is sent automatically, this may reconcile the
14956 cosmic balance somewhat.
14957
14958 This works for me. It allows people an easy way to contact me (they can
14959 just press @kbd{r} in the usual way), and I'm not bothered at all with
14960 spam. It's a win-win situation. Forging @code{From} headers to point
14961 to non-existent domains is yucky, in my opinion.
14962
14963
14964 @node Various Various
14965 @section Various Various
14966 @cindex mode lines
14967 @cindex highlights
14968
14969 @table @code
14970
14971 @item gnus-home-directory
14972 All Gnus path variables will be initialized from this variable, which
14973 defaults to @file{~/}.
14974
14975 @item gnus-directory
14976 @vindex gnus-directory
14977 Most Gnus storage path variables will be initialized from this variable,
14978 which defaults to the @samp{SAVEDIR} environment variable, or
14979 @file{~/News/} if that variable isn't set.
14980
14981 Note that Gnus is mostly loaded when the @file{.gnus.el} file is read.
14982 This means that other directory variables that are initialized from this
14983 variable won't be set properly if you set this variable in
14984 @file{.gnus.el}. Set this variable in @file{.emacs} instead.
14985
14986 @item gnus-default-directory
14987 @vindex gnus-default-directory
14988 Not related to the above variable at all---this variable says what the
14989 default directory of all Gnus buffers should be. If you issue commands
14990 like @kbd{C-x C-f}, the prompt you'll get starts in the current buffer's
14991 default directory. If this variable is @code{nil} (which is the
14992 default), the default directory will be the default directory of the
14993 buffer you were in when you started Gnus.
14994
14995 @item gnus-verbose
14996 @vindex gnus-verbose
14997 This variable is an integer between zero and ten. The higher the value,
14998 the more messages will be displayed. If this variable is zero, Gnus
14999 will never flash any messages, if it is seven (which is the default),
15000 most important messages will be shown, and if it is ten, Gnus won't ever
15001 shut up, but will flash so many messages it will make your head swim.
15002
15003 @item gnus-verbose-backends
15004 @vindex gnus-verbose-backends
15005 This variable works the same way as @code{gnus-verbose}, but it applies
15006 to the Gnus backends instead of Gnus proper.
15007
15008 @item nnheader-max-head-length
15009 @vindex nnheader-max-head-length
15010 When the backends read straight heads of articles, they all try to read
15011 as little as possible. This variable (default 4096) specifies
15012 the absolute max length the backends will try to read before giving up
15013 on finding a separator line between the head and the body. If this
15014 variable is @code{nil}, there is no upper read bound. If it is
15015 @code{t}, the backends won't try to read the articles piece by piece,
15016 but read the entire articles. This makes sense with some versions of
15017 @code{ange-ftp} or @code{efs}.
15018
15019 @item nnheader-head-chop-length
15020 @vindex nnheader-head-chop-length
15021 This variable (default 2048) says how big a piece of each article to
15022 read when doing the operation described above.
15023
15024 @item nnheader-file-name-translation-alist
15025 @vindex nnheader-file-name-translation-alist
15026 @cindex file names
15027 @cindex invalid characters in file names
15028 @cindex characters in file names
15029 This is an alist that says how to translate characters in file names.
15030 For instance, if @samp{:} is invalid as a file character in file names
15031 on your system (you OS/2 user you), you could say something like:
15032
15033 @lisp
15034 (setq nnheader-file-name-translation-alist
15035 '((?: . ?_)))
15036 @end lisp
15037
15038 In fact, this is the default value for this variable on OS/2 and MS
15039 Windows (phooey) systems.
15040
15041 @item gnus-hidden-properties
15042 @vindex gnus-hidden-properties
15043 This is a list of properties to use to hide ``invisible'' text. It is
15044 @code{(invisible t intangible t)} by default on most systems, which
15045 makes invisible text invisible and intangible.
15046
15047 @item gnus-parse-headers-hook
15048 @vindex gnus-parse-headers-hook
15049 A hook called before parsing headers. It can be used, for instance, to
15050 gather statistics on the headers fetched, or perhaps you'd like to prune
15051 some headers. I don't see why you'd want that, though.
15052
15053 @item gnus-shell-command-separator
15054 @vindex gnus-shell-command-separator
15055 String used to separate two shell commands. The default is @samp{;}.
15056
15057
15058 @end table
15059
15060
15061 @node The End
15062 @chapter The End
15063
15064 Well, that's the manual---you can get on with your life now. Keep in
15065 touch. Say hello to your cats from me.
15066
15067 My @strong{ghod}---I just can't stand goodbyes. Sniffle.
15068
15069 Ol' Charles Reznikoff said it pretty well, so I leave the floor to him:
15070
15071 @quotation
15072 @strong{Te Deum}
15073
15074 @sp 1
15075 Not because of victories @*
15076 I sing,@*
15077 having none,@*
15078 but for the common sunshine,@*
15079 the breeze,@*
15080 the largess of the spring.
15081
15082 @sp 1
15083 Not for victory@*
15084 but for the day's work done@*
15085 as well as I was able;@*
15086 not for a seat upon the dais@*
15087 but at the common table.@*
15088 @end quotation
15089
15090
15091 @node Appendices
15092 @chapter Appendices
15093
15094 @menu
15095 * History:: How Gnus got where it is today.
15096 * Terminology:: We use really difficult, like, words here.
15097 * Customization:: Tailoring Gnus to your needs.
15098 * Troubleshooting:: What you might try if things do not work.
15099 * A Programmers Guide to Gnus:: Rilly, rilly technical stuff.
15100 * Emacs for Heathens:: A short introduction to Emacsian terms.
15101 * Frequently Asked Questions:: A question-and-answer session.
15102 @end menu
15103
15104
15105 @node History
15106 @section History
15107
15108 @cindex history
15109 @sc{gnus} was written by Masanobu @sc{Umeda}. When autumn crept up in
15110 '94, Lars Magne Ingebrigtsen grew bored and decided to rewrite Gnus.
15111
15112 If you want to investigate the person responsible for this outrage, you
15113 can point your (feh!) web browser to
15114 @file{http://www.stud.ifi.uio.no/~larsi/}. This is also the primary
15115 distribution point for the new and spiffy versions of Gnus, and is known
15116 as The Site That Destroys Newsrcs And Drives People Mad.
15117
15118 During the first extended alpha period of development, the new Gnus was
15119 called ``(ding) Gnus''. @dfn{(ding)} is, of course, short for
15120 @dfn{ding is not Gnus}, which is a total and utter lie, but who cares?
15121 (Besides, the ``Gnus'' in this abbreviation should probably be
15122 pronounced ``news'' as @sc{Umeda} intended, which makes it a more
15123 appropriate name, don't you think?)
15124
15125 In any case, after spending all that energy on coming up with a new and
15126 spunky name, we decided that the name was @emph{too} spunky, so we
15127 renamed it back again to ``Gnus''. But in mixed case. ``Gnus'' vs.
15128 ``@sc{gnus}''. New vs. old.
15129
15130 The first ``proper'' release of Gnus 5 was done in November 1995 when it
15131 was included in the Emacs 19.30 distribution (132 (ding) Gnus releases
15132 plus 15 Gnus 5.0 releases).
15133
15134 In May 1996 the next Gnus generation (aka. ``September Gnus'' (after 99
15135 releases)) was released under the name ``Gnus 5.2'' (40 releases).
15136
15137 On July 28th 1996 work on Red Gnus was begun, and it was released on
15138 January 25th 1997 (after 84 releases) as ``Gnus 5.4'' (67 releases).
15139
15140 On September 13th 1997, Quassia Gnus was started and lasted 37
15141 releases. If was released as ``Gnus 5.6 on March 8th 1998.
15142
15143 If you happen upon a version of Gnus that has a prefixed name --
15144 ``(ding) Gnus'', ``September Gnus'', ``Red Gnus'', ``Quassia Gnus'' --
15145 don't panic. Don't let it know that you're frightened. Back away.
15146 Slowly. Whatever you do, don't run. Walk away, calmly, until you're
15147 out of its reach. Find a proper released version of Gnus and snuggle up
15148 to that instead.
15149
15150 @menu
15151 * Why?:: What's the point of Gnus?
15152 * Compatibility:: Just how compatible is Gnus with @sc{gnus}?
15153 * Conformity:: Gnus tries to conform to all standards.
15154 * Emacsen:: Gnus can be run on a few modern Emacsen.
15155 * Contributors:: Oodles of people.
15156 * New Features:: Pointers to some of the new stuff in Gnus.
15157 * Newest Features:: Features so new that they haven't been written yet.
15158 @end menu
15159
15160
15161 @node Why?
15162 @subsection Why?
15163
15164 What's the point of Gnus?
15165
15166 I want to provide a ``rad'', ``happening'', ``way cool'' and ``hep''
15167 newsreader, that lets you do anything you can think of. That was my
15168 original motivation, but while working on Gnus, it has become clear to
15169 me that this generation of newsreaders really belong in the stone age.
15170 Newsreaders haven't developed much since the infancy of the net. If the
15171 volume continues to rise with the current rate of increase, all current
15172 newsreaders will be pretty much useless. How do you deal with
15173 newsgroups that have thousands of new articles each day? How do you
15174 keep track of millions of people who post?
15175
15176 Gnus offers no real solutions to these questions, but I would very much
15177 like to see Gnus being used as a testing ground for new methods of
15178 reading and fetching news. Expanding on @sc{Umeda}-san's wise decision
15179 to separate the newsreader from the backends, Gnus now offers a simple
15180 interface for anybody who wants to write new backends for fetching mail
15181 and news from different sources. I have added hooks for customizations
15182 everywhere I could imagine it being useful. By doing so, I'm inviting
15183 every one of you to explore and invent.
15184
15185 May Gnus never be complete. @kbd{C-u 100 M-x all-hail-emacs} and
15186 @kbd{C-u 100 M-x all-hail-xemacs}.
15187
15188
15189 @node Compatibility
15190 @subsection Compatibility
15191
15192 @cindex compatibility
15193 Gnus was designed to be fully compatible with @sc{gnus}. Almost all key
15194 bindings have been kept. More key bindings have been added, of course,
15195 but only in one or two obscure cases have old bindings been changed.
15196
15197 Our motto is:
15198 @quotation
15199 @cartouche
15200 @center In a cloud bones of steel.
15201 @end cartouche
15202 @end quotation
15203
15204 All commands have kept their names. Some internal functions have changed
15205 their names.
15206
15207 The @code{gnus-uu} package has changed drastically. @xref{Decoding
15208 Articles}.
15209
15210 One major compatibility question is the presence of several summary
15211 buffers. All variables relevant while reading a group are
15212 buffer-local to the summary buffer they belong in. Although many
15213 important variables have their values copied into their global
15214 counterparts whenever a command is executed in the summary buffer, this
15215 change might lead to incorrect values being used unless you are careful.
15216
15217 All code that relies on knowledge of @sc{gnus} internals will probably
15218 fail. To take two examples: Sorting @code{gnus-newsrc-alist} (or
15219 changing it in any way, as a matter of fact) is strictly verboten. Gnus
15220 maintains a hash table that points to the entries in this alist (which
15221 speeds up many functions), and changing the alist directly will lead to
15222 peculiar results.
15223
15224 @cindex hilit19
15225 @cindex highlighting
15226 Old hilit19 code does not work at all. In fact, you should probably
15227 remove all hilit code from all Gnus hooks
15228 (@code{gnus-group-prepare-hook} and @code{gnus-summary-prepare-hook}).
15229 Gnus provides various integrated functions for highlighting. These are
15230 faster and more accurate. To make life easier for everybody, Gnus will
15231 by default remove all hilit calls from all hilit hooks. Uncleanliness!
15232 Away!
15233
15234 Packages like @code{expire-kill} will no longer work. As a matter of
15235 fact, you should probably remove all old @sc{gnus} packages (and other
15236 code) when you start using Gnus. More likely than not, Gnus already
15237 does what you have written code to make @sc{gnus} do. (Snicker.)
15238
15239 Even though old methods of doing things are still supported, only the
15240 new methods are documented in this manual. If you detect a new method of
15241 doing something while reading this manual, that does not mean you have
15242 to stop doing it the old way.
15243
15244 Gnus understands all @sc{gnus} startup files.
15245
15246 @kindex M-x gnus-bug
15247 @findex gnus-bug
15248 @cindex reporting bugs
15249 @cindex bugs
15250 Overall, a casual user who hasn't written much code that depends on
15251 @sc{gnus} internals should suffer no problems. If problems occur,
15252 please let me know by issuing that magic command @kbd{M-x gnus-bug}.
15253
15254 @vindex gnus-bug-create-help-buffer
15255 If you are in the habit of sending bug reports @emph{very} often, you
15256 may find the helpful help buffer annoying after a while. If so, set
15257 @code{gnus-bug-create-help-buffer} to @code{nil} to avoid having it pop
15258 up at you.
15259
15260
15261 @node Conformity
15262 @subsection Conformity
15263
15264 No rebels without a clue here, ma'am. We conform to all standards known
15265 to (wo)man. Except for those standards and/or conventions we disagree
15266 with, of course.
15267
15268 @table @strong
15269
15270 @item RFC 822
15271 @cindex RFC 822
15272 There are no known breaches of this standard.
15273
15274 @item RFC 1036
15275 @cindex RFC 1036
15276 There are no known breaches of this standard, either.
15277
15278 @item Son-of-RFC 1036
15279 @cindex Son-of-RFC 1036
15280 We do have some breaches to this one.
15281
15282 @table @emph
15283
15284 @item MIME
15285 Gnus does no MIME handling, and this standard-to-be seems to think that
15286 MIME is the bees' knees, so we have major breakage here.
15287
15288 @item X-Newsreader
15289 This is considered to be a ``vanity header'', while I consider it to be
15290 consumer information. After seeing so many badly formatted articles
15291 coming from @code{tin} and @code{Netscape} I know not to use either of
15292 those for posting articles. I would not have known that if it wasn't
15293 for the @code{X-Newsreader} header.
15294 @end table
15295
15296 @end table
15297
15298 If you ever notice Gnus acting non-compliant with regards to the texts
15299 mentioned above, don't hesitate to drop a note to Gnus Towers and let us
15300 know.
15301
15302
15303 @node Emacsen
15304 @subsection Emacsen
15305 @cindex Emacsen
15306 @cindex XEmacs
15307 @cindex Mule
15308 @cindex Emacs
15309
15310 Gnus should work on :
15311
15312 @itemize @bullet
15313
15314 @item
15315 Emacs 19.32 and up.
15316
15317 @item
15318 XEmacs 19.14 and up.
15319
15320 @item
15321 Mule versions based on Emacs 19.32 and up.
15322
15323 @end itemize
15324
15325 Gnus will absolutely not work on any Emacsen older than that. Not
15326 reliably, at least.
15327
15328 There are some vague differences between Gnus on the various
15329 platforms---XEmacs features more graphics (a logo and a toolbar)---but
15330 other than that, things should look pretty much the same under all
15331 Emacsen.
15332
15333
15334 @node Contributors
15335 @subsection Contributors
15336 @cindex contributors
15337
15338 The new Gnus version couldn't have been done without the help of all the
15339 people on the (ding) mailing list. Every day for over a year I have
15340 gotten billions of nice bug reports from them, filling me with joy,
15341 every single one of them. Smooches. The people on the list have been
15342 tried beyond endurance, what with my ``oh, that's a neat idea <type
15343 type>, yup, I'll release it right away <ship off> no wait, that doesn't
15344 work at all <type type>, yup, I'll ship that one off right away <ship
15345 off> no, wait, that absolutely does not work'' policy for releases.
15346 Micro$oft---bah. Amateurs. I'm @emph{much} worse. (Or is that
15347 ``worser''? ``much worser''? ``worsest''?)
15348
15349 I would like to take this opportunity to thank the Academy for... oops,
15350 wrong show.
15351
15352 @itemize @bullet
15353
15354 @item
15355 Masanobu @sc{Umeda}---the writer of the original @sc{gnus}.
15356
15357 @item
15358 Per Abrahamsen---custom, scoring, highlighting and @sc{soup} code (as
15359 well as numerous other things).
15360
15361 @item
15362 Luis Fernandes---design and graphics.
15363
15364 @item
15365 Erik Naggum---help, ideas, support, code and stuff.
15366
15367 @item
15368 Wes Hardaker---@file{gnus-picon.el} and the manual section on
15369 @dfn{picons} (@pxref{Picons}).
15370
15371 @item
15372 Kim-Minh Kaplan---further work on the picon code.
15373
15374 @item
15375 Brad Miller---@file{gnus-gl.el} and the GroupLens manual section
15376 (@pxref{GroupLens}).
15377
15378 @item
15379 Sudish Joseph---innumerable bug fixes.
15380
15381 @item
15382 Ilja Weis---@file{gnus-topic.el}.
15383
15384 @item
15385 Steven L. Baur---lots and lots and lots of bugs detections and fixes.
15386
15387 @item
15388 Vladimir Alexiev---the refcard and reference booklets.
15389
15390 @item
15391 Felix Lee & Jamie Zawinski---I stole some pieces from the XGnus
15392 distribution by Felix Lee and JWZ.
15393
15394 @item
15395 Scott Byer---@file{nnfolder.el} enhancements & rewrite.
15396
15397 @item
15398 Peter Mutsaers---orphan article scoring code.
15399
15400 @item
15401 Ken Raeburn---POP mail support.
15402
15403 @item
15404 Hallvard B Furuseth---various bits and pieces, especially dealing with
15405 .newsrc files.
15406
15407 @item
15408 Brian Edmonds---@file{gnus-bbdb.el}.
15409
15410 @item
15411 David Moore---rewrite of @file{nnvirtual.el} and many other things.
15412
15413 @item
15414 Kevin Davidson---came up with the name @dfn{ding}, so blame him.
15415
15416 @item
15417 François Pinard---many, many interesting and thorough bug reports, as
15418 well as autoconf support.
15419
15420 @end itemize
15421
15422 This manual was proof-read by Adrian Aichner, with Ricardo Nassif, Mark
15423 Borges, and Jost Krieger proof-reading parts of the manual.
15424
15425 The following people have contributed many patches and suggestions:
15426
15427 Christopher Davis,
15428 Andrew Eskilsson,
15429 Kai Grossjohann,
15430 David KÃ¥gedal,
15431 Richard Pieri,
15432 Fabrice Popineau,
15433 Daniel Quinlan,
15434 Jason L. Tibbitts, III,
15435 and
15436 Jack Vinson.
15437
15438 Also thanks to the following for patches and stuff:
15439
15440 Jari Aalto,
15441 Adrian Aichner,
15442 Vladimir Alexiev,
15443 Russ Allbery,
15444 Peter Arius,
15445 Matt Armstrong,
15446 Marc Auslander,
15447 Frank Bennett,
15448 Robert Bihlmeyer,
15449 Chris Bone,
15450 Mark Borges,
15451 Mark Boyns,
15452 Lance A. Brown,
15453 Kees de Bruin,
15454 Martin Buchholz,
15455 Joe Buehler,
15456 Kevin Buhr,
15457 Alastair Burt,
15458 Joao Cachopo,
15459 Zlatko Calusic,
15460 Massimo Campostrini,
15461 Castor,
15462 David Charlap,
15463 Dan Christensen,
15464 Kevin Christian,
15465 Michael R. Cook,
15466 Glenn Coombs,
15467 Frank D. Cringle,
15468 Geoffrey T. Dairiki,
15469 Andre Deparade,
15470 Ulrik Dickow,
15471 Dave Disser,
15472 Rui-Tao Dong, @c ?
15473 Joev Dubach,
15474 Michael Welsh Duggan,
15475 Dave Edmondson,
15476 Paul Eggert,
15477 Enami Tsugutomo, @c Enami
15478 Michael Ernst,
15479 Luc Van Eycken,
15480 Sam Falkner,
15481 Nelson Jose dos Santos Ferreira,
15482 Sigbjorn Finne,
15483 Decklin Foster,
15484 Gary D. Foster,
15485 Paul Franklin,
15486 Guy Geens,
15487 Arne Georg Gleditsch,
15488 David S. Goldberg,
15489 Michelangelo Grigni,
15490 D. Hall,
15491 Magnus Hammerin,
15492 Kenichi Handa, @c Handa
15493 Raja R. Harinath,
15494 Yoshiki Hayashi, @c ?
15495 P. E. Jareth Hein,
15496 Hisashige Kenji, @c Hisashige
15497 Marc Horowitz,
15498 Gunnar Horrigmo,
15499 Richard Hoskins,
15500 Brad Howes,
15501 François Felix Ingrand,
15502 Ishikawa Ichiro, @c Ishikawa
15503 Lee Iverson,
15504 Iwamuro Motonori, @c Iwamuro
15505 Rajappa Iyer,
15506 Andreas Jaeger,
15507 Randell Jesup,
15508 Fred Johansen,
15509 Gareth Jones,
15510 Simon Josefsson,
15511 Greg Klanderman,
15512 Karl Kleinpaste,
15513 Peter Skov Knudsen,
15514 Shuhei Kobayashi, @c Kobayashi
15515 Koseki Yoshinori, @c Koseki
15516 Thor Kristoffersen,
15517 Jens Lautenbacher,
15518 Martin Larose,
15519 Seokchan Lee, @c Lee
15520 Carsten Leonhardt,
15521 James LewisMoss,
15522 Christian Limpach,
15523 Markus Linnala,
15524 Dave Love,
15525 Mike McEwan,
15526 Tonny Madsen,
15527 Shlomo Mahlab,
15528 Nat Makarevitch,
15529 Istvan Marko,
15530 David Martin,
15531 Jason R. Mastaler,
15532 Gordon Matzigkeit,
15533 Timo Metzemakers,
15534 Richard Mlynarik,
15535 Lantz Moore,
15536 Morioka Tomohiko, @c Morioka
15537 Erik Toubro Nielsen,
15538 Hrvoje Niksic,
15539 Andy Norman,
15540 Fred Oberhauser,
15541 C. R. Oldham,
15542 Alexandre Oliva,
15543 Ken Olstad,
15544 Masaharu Onishi, @c Onishi
15545 Hideki Ono, @c Ono
15546 William Perry,
15547 Stephen Peters,
15548 Jens-Ulrik Holger Petersen,
15549 Ulrich Pfeifer,
15550 Matt Pharr,
15551 John McClary Prevost,
15552 Bill Pringlemeir,
15553 Mike Pullen,
15554 Jim Radford,
15555 Colin Rafferty,
15556 Lasse Rasinen,
15557 Lars Balker Rasmussen,
15558 Joe Reiss,
15559 Renaud Rioboo,
15560 Roland B. Roberts,
15561 Bart Robinson,
15562 Christian von Roques,
15563 Jason Rumney,
15564 Wolfgang Rupprecht,
15565 Jay Sachs,
15566 Dewey M. Sasser,
15567 Loren Schall,
15568 Dan Schmidt,
15569 Ralph Schleicher,
15570 Philippe Schnoebelen,
15571 Andreas Schwab,
15572 Randal L. Schwartz,
15573 Justin Sheehy,
15574 Danny Siu,
15575 Matt Simmons,
15576 Paul D. Smith,
15577 Jeff Sparkes,
15578 Toby Speight,
15579 Michael Sperber,
15580 Darren Stalder,
15581 Richard Stallman,
15582 Greg Stark,
15583 Sam Steingold,
15584 Paul Stodghill,
15585 Kurt Swanson,
15586 Samuel Tardieu,
15587 Teddy,
15588 Chuck Thompson,
15589 Philippe Troin,
15590 James Troup,
15591 Trung Tran-Duc,
15592 Aaron M. Ucko,
15593 Aki Vehtari,
15594 Didier Verna,
15595 Jan Vroonhof,
15596 Stefan Waldherr,
15597 Pete Ware,
15598 Barry A. Warsaw,
15599 Christoph Wedler,
15600 Joe Wells,
15601 Katsumi Yamaoka, @c Yamaoka
15602 and
15603 Shenghuo Zhu. @c Zhu
15604
15605 For a full overview of what each person has done, the ChangeLogs
15606 included in the Gnus alpha distributions should give ample reading
15607 (550kB and counting).
15608
15609 Apologies to everybody that I've forgotten, of which there are many, I'm
15610 sure.
15611
15612 Gee, that's quite a list of people. I guess that must mean that there
15613 actually are people who are using Gnus. Who'd'a thunk it!
15614
15615
15616 @node New Features
15617 @subsection New Features
15618 @cindex new features
15619
15620 @menu
15621 * ding Gnus:: New things in Gnus 5.0/5.1, the first new Gnus.
15622 * September Gnus:: The Thing Formally Known As Gnus 5.3/5.3.
15623 * Red Gnus:: Third time best---Gnus 5.4/5.5.
15624 * Quassia Gnus:: Two times two is four, or Gnus 5.6/5.7.
15625 @end menu
15626
15627 These lists are, of course, just @emph{short} overviews of the
15628 @emph{most} important new features. No, really. There are tons more.
15629 Yes, we have feeping creaturism in full effect.
15630
15631
15632 @node ding Gnus
15633 @subsubsection (ding) Gnus
15634
15635 New features in Gnus 5.0/5.1:
15636
15637 @itemize @bullet
15638
15639 @item
15640 The look of all buffers can be changed by setting format-like variables
15641 (@pxref{Group Buffer Format} and @pxref{Summary Buffer Format}).
15642
15643 @item
15644 Local spool and several @sc{nntp} servers can be used at once
15645 (@pxref{Select Methods}).
15646
15647 @item
15648 You can combine groups into virtual groups (@pxref{Virtual Groups}).
15649
15650 @item
15651 You can read a number of different mail formats (@pxref{Getting Mail}).
15652 All the mail backends implement a convenient mail expiry scheme
15653 (@pxref{Expiring Mail}).
15654
15655 @item
15656 Gnus can use various strategies for gathering threads that have lost
15657 their roots (thereby gathering loose sub-threads into one thread) or it
15658 can go back and retrieve enough headers to build a complete thread
15659 (@pxref{Customizing Threading}).
15660
15661 @item
15662 Killed groups can be displayed in the group buffer, and you can read
15663 them as well (@pxref{Listing Groups}).
15664
15665 @item
15666 Gnus can do partial group updates---you do not have to retrieve the
15667 entire active file just to check for new articles in a few groups
15668 (@pxref{The Active File}).
15669
15670 @item
15671 Gnus implements a sliding scale of subscribedness to groups
15672 (@pxref{Group Levels}).
15673
15674 @item
15675 You can score articles according to any number of criteria
15676 (@pxref{Scoring}). You can even get Gnus to find out how to score
15677 articles for you (@pxref{Adaptive Scoring}).
15678
15679 @item
15680 Gnus maintains a dribble buffer that is auto-saved the normal Emacs
15681 manner, so it should be difficult to lose much data on what you have
15682 read if your machine should go down (@pxref{Auto Save}).
15683
15684 @item
15685 Gnus now has its own startup file (@file{.gnus}) to avoid cluttering up
15686 the @file{.emacs} file.
15687
15688 @item
15689 You can set the process mark on both groups and articles and perform
15690 operations on all the marked items (@pxref{Process/Prefix}).
15691
15692 @item
15693 You can grep through a subset of groups and create a group from the
15694 results (@pxref{Kibozed Groups}).
15695
15696 @item
15697 You can list subsets of groups according to, well, anything
15698 (@pxref{Listing Groups}).
15699
15700 @item
15701 You can browse foreign servers and subscribe to groups from those
15702 servers (@pxref{Browse Foreign Server}).
15703
15704 @item
15705 Gnus can fetch articles, asynchronously, on a second connection to the
15706 server (@pxref{Asynchronous Fetching}).
15707
15708 @item
15709 You can cache articles locally (@pxref{Article Caching}).
15710
15711 @item
15712 The uudecode functions have been expanded and generalized
15713 (@pxref{Decoding Articles}).
15714
15715 @item
15716 You can still post uuencoded articles, which was a little-known feature
15717 of @sc{gnus}' past (@pxref{Uuencoding and Posting}).
15718
15719 @item
15720 Fetching parents (and other articles) now actually works without
15721 glitches (@pxref{Finding the Parent}).
15722
15723 @item
15724 Gnus can fetch FAQs and group descriptions (@pxref{Group Information}).
15725
15726 @item
15727 Digests (and other files) can be used as the basis for groups
15728 (@pxref{Document Groups}).
15729
15730 @item
15731 Articles can be highlighted and customized (@pxref{Customizing
15732 Articles}).
15733
15734 @item
15735 URLs and other external references can be buttonized (@pxref{Article
15736 Buttons}).
15737
15738 @item
15739 You can do lots of strange stuff with the Gnus window & frame
15740 configuration (@pxref{Windows Configuration}).
15741
15742 @item
15743 You can click on buttons instead of using the keyboard
15744 (@pxref{Buttons}).
15745
15746 @end itemize
15747
15748
15749 @node September Gnus
15750 @subsubsection September Gnus
15751
15752 New features in Gnus 5.2/5.3:
15753
15754 @itemize @bullet
15755
15756 @item
15757 A new message composition mode is used. All old customization variables
15758 for @code{mail-mode}, @code{rnews-reply-mode} and @code{gnus-msg} are
15759 now obsolete.
15760
15761 @item
15762 Gnus is now able to generate @dfn{sparse} threads---threads where
15763 missing articles are represented by empty nodes (@pxref{Customizing
15764 Threading}).
15765
15766 @lisp
15767 (setq gnus-build-sparse-threads 'some)
15768 @end lisp
15769
15770 @item
15771 Outgoing articles are stored on a special archive server
15772 (@pxref{Archived Messages}).
15773
15774 @item
15775 Partial thread regeneration now happens when articles are
15776 referred.
15777
15778 @item
15779 Gnus can make use of GroupLens predictions (@pxref{GroupLens}).
15780
15781 @item
15782 Picons (personal icons) can be displayed under XEmacs (@pxref{Picons}).
15783
15784 @item
15785 A @code{trn}-like tree buffer can be displayed (@pxref{Tree Display}).
15786
15787 @lisp
15788 (setq gnus-use-trees t)
15789 @end lisp
15790
15791 @item
15792 An @code{nn}-like pick-and-read minor mode is available for the summary
15793 buffers (@pxref{Pick and Read}).
15794
15795 @lisp
15796 (add-hook 'gnus-summary-mode-hook 'gnus-pick-mode)
15797 @end lisp
15798
15799 @item
15800 In binary groups you can use a special binary minor mode (@pxref{Binary
15801 Groups}).
15802
15803 @item
15804 Groups can be grouped in a folding topic hierarchy (@pxref{Group
15805 Topics}).
15806
15807 @lisp
15808 (add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
15809 @end lisp
15810
15811 @item
15812 Gnus can re-send and bounce mail (@pxref{Summary Mail Commands}).
15813
15814 @item
15815 Groups can now have a score, and bubbling based on entry frequency
15816 is possible (@pxref{Group Score}).
15817
15818 @lisp
15819 (add-hook 'gnus-summary-exit-hook 'gnus-summary-bubble-group)
15820 @end lisp
15821
15822 @item
15823 Groups can be process-marked, and commands can be performed on
15824 groups of groups (@pxref{Marking Groups}).
15825
15826 @item
15827 Caching is possible in virtual groups.
15828
15829 @item
15830 @code{nndoc} now understands all kinds of digests, mail boxes, rnews
15831 news batches, ClariNet briefs collections, and just about everything
15832 else (@pxref{Document Groups}).
15833
15834 @item
15835 Gnus has a new backend (@code{nnsoup}) to create/read SOUP packets
15836 (@pxref{SOUP}).
15837
15838 @item
15839 The Gnus cache is much faster.
15840
15841 @item
15842 Groups can be sorted according to many criteria (@pxref{Sorting
15843 Groups}).
15844
15845 @item
15846 New group parameters have been introduced to set list-addresses and
15847 expiry times (@pxref{Group Parameters}).
15848
15849 @item
15850 All formatting specs allow specifying faces to be used
15851 (@pxref{Formatting Fonts}).
15852
15853 @item
15854 There are several more commands for setting/removing/acting on process
15855 marked articles on the @kbd{M P} submap (@pxref{Setting Process Marks}).
15856
15857 @item
15858 The summary buffer can be limited to show parts of the available
15859 articles based on a wide range of criteria. These commands have been
15860 bound to keys on the @kbd{/} submap (@pxref{Limiting}).
15861
15862 @item
15863 Articles can be made persistent with the @kbd{*} command
15864 (@pxref{Persistent Articles}).
15865
15866 @item
15867 All functions for hiding article elements are now toggles.
15868
15869 @item
15870 Article headers can be buttonized (@pxref{Article Washing}).
15871
15872 @lisp
15873 (add-hook 'gnus-article-display-hook
15874 'gnus-article-add-buttons-to-head)
15875 @end lisp
15876
15877 @item
15878 All mail backends support fetching articles by @code{Message-ID}.
15879
15880 @item
15881 Duplicate mail can now be treated properly (@pxref{Duplicates}).
15882
15883 @item
15884 All summary mode commands are available directly from the article
15885 buffer (@pxref{Article Keymap}).
15886
15887 @item
15888 Frames can be part of @code{gnus-buffer-configuration} (@pxref{Windows
15889 Configuration}).
15890
15891 @item
15892 Mail can be re-scanned by a daemonic process (@pxref{Daemons}).
15893
15894 @item
15895 Gnus can make use of NoCeM files to weed out spam (@pxref{NoCeM}).
15896
15897 @lisp
15898 (setq gnus-use-nocem t)
15899 @end lisp
15900
15901 @item
15902 Groups can be made permanently visible (@pxref{Listing Groups}).
15903
15904 @lisp
15905 (setq gnus-permanently-visible-groups "^nnml:")
15906 @end lisp
15907
15908 @item
15909 Many new hooks have been introduced to make customizing easier.
15910
15911 @item
15912 Gnus respects the @code{Mail-Copies-To} header.
15913
15914 @item
15915 Threads can be gathered by looking at the @code{References} header
15916 (@pxref{Customizing Threading}).
15917
15918 @lisp
15919 (setq gnus-summary-thread-gathering-function
15920 'gnus-gather-threads-by-references)
15921 @end lisp
15922
15923 @item
15924 Read articles can be stored in a special backlog buffer to avoid
15925 refetching (@pxref{Article Backlog}).
15926
15927 @lisp
15928 (setq gnus-keep-backlog 50)
15929 @end lisp
15930
15931 @item
15932 A clean copy of the current article is always stored in a separate
15933 buffer to allow easier treatment.
15934
15935 @item
15936 Gnus can suggest where to save articles (@pxref{Saving Articles}).
15937
15938 @item
15939 Gnus doesn't have to do as much prompting when saving (@pxref{Saving
15940 Articles}).
15941
15942 @lisp
15943 (setq gnus-prompt-before-saving t)
15944 @end lisp
15945
15946 @item
15947 @code{gnus-uu} can view decoded files asynchronously while fetching
15948 articles (@pxref{Other Decode Variables}).
15949
15950 @lisp
15951 (setq gnus-uu-grabbed-file-functions 'gnus-uu-grab-view)
15952 @end lisp
15953
15954 @item
15955 Filling in the article buffer now works properly on cited text
15956 (@pxref{Article Washing}).
15957
15958 @item
15959 Hiding cited text adds buttons to toggle hiding, and how much
15960 cited text to hide is now customizable (@pxref{Article Hiding}).
15961
15962 @lisp
15963 (setq gnus-cited-lines-visible 2)
15964 @end lisp
15965
15966 @item
15967 Boring headers can be hidden (@pxref{Article Hiding}).
15968
15969 @lisp
15970 (add-hook 'gnus-article-display-hook
15971 'gnus-article-hide-boring-headers t)
15972 @end lisp
15973
15974 @item
15975 Default scoring values can now be set from the menu bar.
15976
15977 @item
15978 Further syntax checking of outgoing articles have been added.
15979
15980 @end itemize
15981
15982
15983 @node Red Gnus
15984 @subsubsection Red Gnus
15985
15986 New features in Gnus 5.4/5.5:
15987
15988 @itemize @bullet
15989
15990 @item
15991 @file{nntp.el} has been totally rewritten in an asynchronous fashion.
15992
15993 @item
15994 Article prefetching functionality has been moved up into
15995 Gnus (@pxref{Asynchronous Fetching}).
15996
15997 @item
15998 Scoring can now be performed with logical operators like @code{and},
15999 @code{or}, @code{not}, and parent redirection (@pxref{Advanced
16000 Scoring}).
16001
16002 @item
16003 Article washing status can be displayed in the
16004 article mode line (@pxref{Misc Article}).
16005
16006 @item
16007 @file{gnus.el} has been split into many smaller files.
16008
16009 @item
16010 Suppression of duplicate articles based on Message-ID can be done
16011 (@pxref{Duplicate Suppression}).
16012
16013 @lisp
16014 (setq gnus-suppress-duplicates t)
16015 @end lisp
16016
16017 @item
16018 New variables for specifying what score and adapt files are to be
16019 considered home score and adapt files (@pxref{Home Score File}) have
16020 been added.
16021
16022 @item
16023 @code{nndoc} was rewritten to be easily extendable (@pxref{Document
16024 Server Internals}).
16025
16026 @item
16027 Groups can inherit group parameters from parent topics (@pxref{Topic
16028 Parameters}).
16029
16030 @item
16031 Article editing has been revamped and is now actually usable.
16032
16033 @item
16034 Signatures can be recognized in more intelligent fashions
16035 (@pxref{Article Signature}).
16036
16037 @item
16038 Summary pick mode has been made to look more @code{nn}-like. Line
16039 numbers are displayed and the @kbd{.} command can be used to pick
16040 articles (@code{Pick and Read}).
16041
16042 @item
16043 Commands for moving the @file{.newsrc.eld} from one server to
16044 another have been added (@pxref{Changing Servers}).
16045
16046 @item
16047 There's a way now to specify that ``uninteresting'' fields be suppressed
16048 when generating lines in buffers (@pxref{Advanced Formatting}).
16049
16050 @item
16051 Several commands in the group buffer can be undone with @kbd{M-C-_}
16052 (@pxref{Undo}).
16053
16054 @item
16055 Scoring can be done on words using the new score type @code{w}
16056 (@pxref{Score File Format}).
16057
16058 @item
16059 Adaptive scoring can be done on a Subject word-by-word basis
16060 (@pxref{Adaptive Scoring}).
16061
16062 @lisp
16063 (setq gnus-use-adaptive-scoring '(word))
16064 @end lisp
16065
16066 @item
16067 Scores can be decayed (@pxref{Score Decays}).
16068
16069 @lisp
16070 (setq gnus-decay-scores t)
16071 @end lisp
16072
16073 @item
16074 Scoring can be performed using a regexp on the Date header. The Date is
16075 normalized to compact ISO 8601 format first (@pxref{Score File Format}).
16076
16077 @item
16078 A new command has been added to remove all data on articles from
16079 the native server (@pxref{Changing Servers}).
16080
16081 @item
16082 A new command for reading collections of documents
16083 (@code{nndoc} with @code{nnvirtual} on top) has been added---@kbd{M-C-d}
16084 (@pxref{Really Various Summary Commands}).
16085
16086 @item
16087 Process mark sets can be pushed and popped (@pxref{Setting Process
16088 Marks}).
16089
16090 @item
16091 A new mail-to-news backend makes it possible to post even when the NNTP
16092 server doesn't allow posting (@pxref{Mail-To-News Gateways}).
16093
16094 @item
16095 A new backend for reading searches from Web search engines
16096 (@dfn{DejaNews}, @dfn{Alta Vista}, @dfn{InReference}) has been added
16097 (@pxref{Web Searches}).
16098
16099 @item
16100 Groups inside topics can now be sorted using the standard sorting
16101 functions, and each topic can be sorted independently (@pxref{Topic
16102 Sorting}).
16103
16104 @item
16105 Subsets of the groups can be sorted independently (@code{Sorting
16106 Groups}).
16107
16108 @item
16109 Cached articles can be pulled into the groups (@pxref{Summary Generation
16110 Commands}).
16111
16112 @item
16113 Score files are now applied in a more reliable order (@pxref{Score
16114 Variables}).
16115
16116 @item
16117 Reports on where mail messages end up can be generated (@pxref{Splitting
16118 Mail}).
16119
16120 @item
16121 More hooks and functions have been added to remove junk from incoming
16122 mail before saving the mail (@pxref{Washing Mail}).
16123
16124 @item
16125 Emphasized text can be properly fontisized:
16126
16127 @lisp
16128 (add-hook 'gnus-article-display-hook
16129 'gnus-article-emphasize)
16130 @end lisp
16131
16132 @end itemize
16133
16134
16135 @node Quassia Gnus
16136 @subsubsection Quassia Gnus
16137
16138 New features in Gnus 5.6:
16139
16140 @itemize @bullet
16141
16142 @item
16143 New functionality for using Gnus as an offline newsreader has been
16144 added. A plethora of new commands and modes have been added. See
16145 @pxref{Gnus Unplugged} for the full story.
16146
16147 @item
16148 The @code{nndraft} backend has returned, but works differently than
16149 before. All Message buffers are now also articles in the @code{nndraft}
16150 group, which is created automatically.
16151
16152 @item
16153 @code{gnus-alter-header-function} can now be used to alter header
16154 values.
16155
16156 @item
16157 @code{gnus-summary-goto-article} now accept Message-ID's.
16158
16159 @item
16160 A new Message command for deleting text in the body of a message
16161 outside the region: @kbd{C-c C-v}.
16162
16163 @item
16164 You can now post to component group in @code{nnvirtual} groups with
16165 @kbd{C-u C-c C-c}.
16166
16167 @item
16168 @code{nntp-rlogin-program}---new variable to ease customization.
16169
16170 @item
16171 @code{C-u C-c C-c} in @code{gnus-article-edit-mode} will now inhibit
16172 re-highlighting of the article buffer.
16173
16174 @item
16175 New element in @code{gnus-boring-article-headers}---@code{long-to}.
16176
16177 @item
16178 @kbd{M-i} symbolic prefix command. See the section "Symbolic
16179 Prefixes" in the Gnus manual for details.
16180
16181 @item
16182 @kbd{L} and @kbd{I} in the summary buffer now take the symbolic prefix
16183 @kbd{a} to add the score rule to the "all.SCORE" file.
16184
16185 @item
16186 @code{gnus-simplify-subject-functions} variable to allow greater
16187 control over simplification.
16188
16189 @item
16190 @kbd{A T}---new command for fetching the current thread.
16191
16192 @item
16193 @kbd{/ T}---new command for including the current thread in the
16194 limit.
16195
16196 @item
16197 @kbd{M-RET} is a new Message command for breaking cited text.
16198
16199 @item
16200 @samp{\\1}-expressions are now valid in @code{nnmail-split-methods}.
16201
16202 @item
16203 The @code{custom-face-lookup} function has been removed.
16204 If you used this function in your initialization files, you must
16205 rewrite them to use @code{face-spec-set} instead.
16206
16207 @item
16208 Canceling now uses the current select method. Symbolic prefix
16209 @kbd{a} forces normal posting method.
16210
16211 @item
16212 New command to translate M******** sm*rtq**t*s into proper
16213 text---@kbd{W d}.
16214
16215 @item
16216 For easier debugging of @code{nntp}, you can set
16217 @code{nntp-record-commands} to a non-@code{nil} value.
16218
16219 @item
16220 @code{nntp} now uses @file{~/.authinfo}, a @file{.netrc}-like file, for
16221 controlling where and how to send @sc{authinfo} to @sc{nntp} servers.
16222
16223 @item
16224 A command for editing group parameters from the summary buffer
16225 has been added.
16226
16227 @item
16228 A history of where mails have been split is available.
16229
16230 @item
16231 A new article date command has been added---@code{article-date-iso8601}.
16232
16233 @item
16234 Subjects can be simplified when threading by setting
16235 @code{gnus-score-thread-simplify}.
16236
16237 @item
16238 A new function for citing in Message has been
16239 added---@code{message-cite-original-without-signature}.
16240
16241 @item
16242 @code{article-strip-all-blank-lines}---new article command.
16243
16244 @item
16245 A new Message command to kill to the end of the article has
16246 been added.
16247
16248 @item
16249 A minimum adaptive score can be specified by using the
16250 @code{gnus-adaptive-word-minimum} variable.
16251
16252 @item
16253 The "lapsed date" article header can be kept continually
16254 updated by the @code{gnus-start-date-timer} command.
16255
16256 @item
16257 Web listserv archives can be read with the @code{nnlistserv} backend.
16258
16259 @item
16260 Old dejanews archives can now be read by @code{nnweb}.
16261
16262 @end itemize
16263
16264
16265 @node Newest Features
16266 @subsection Newest Features
16267 @cindex todo
16268
16269 Also known as the @dfn{todo list}. Sure to be implemented before the
16270 next millennium.
16271
16272 Be afraid. Be very afraid.
16273
16274 (That a feature appears in this list doesn't necessarily mean that I've
16275 decided to actually implement it. It just means that I think it sounds
16276 interesting.)
16277
16278 (Yes, this is the actual, up-to-the-second todo list.)
16279
16280 @itemize @bullet
16281
16282 @item
16283 Native @sc{mime} support is something that should be done.
16284
16285 @item
16286 Really do unbinhexing.
16287
16288 @item
16289 I would like the zombie-page to contain an URL to the source of the
16290 latest version of gnus or some explanation on where to find it.
16291
16292 @item
16293 A way to continue editing the latest Message composition.
16294
16295 @item
16296 http://www.sonicnet.com/feature/ari3/
16297
16298 @item
16299 facep is not declared.
16300
16301 @item
16302 Include a section in the manual on why the number of articles
16303 isn't the same in the group buffer and on the SPC prompt.
16304
16305 @item
16306 Interacting with rmail fcc isn't easy.
16307
16308 @item
16309 @example
16310 Hypermail:
16311 <URL:http://www.falch.no/people/pepper/DSSSL-Lite/archives/>
16312 <URL:http://www.eit.com/software/hypermail/hypermail.html>
16313 <URL:http://homer.ncm.com/>
16314 <URL:http://www.yahoo.com/Computers_and_Internet/Internet/World_Wide_Web/HTML_Converters/>
16315 http://www.uwsg.indiana.edu/hypermail/linux/kernel/9610/index.html
16316 <URL:http://union.ncsa.uiuc.edu/HyperNews/get/www/html/converters.html>
16317 http://www.miranova.com/gnus-list/
16318
16319 @end example
16320
16321 @item
16322 @samp{^-- } is made into - in LaTeX.
16323
16324 @item
16325 gnus-kill is much slower than it was in GNUS 4.1.3.
16326
16327 @item
16328 when expunging articles on low score, the sparse nodes keep hanging on?
16329 @item
16330 starting the first time seems to hang Gnus on some systems. Does
16331 NEWGROUPS answer too fast?
16332 @item
16333 nndir doesn't read gzipped files.
16334 @item
16335 FAQ doesn't have an up node?
16336 @item
16337 when moving mail from a procmail spool to the crash-box,
16338 the crash-box is only appropriate to one specific group.
16339 @item
16340 `t' `t' makes X-Faces disappear.
16341 @item
16342 nnmh-be-safe means that crossposted articles will
16343 be marked as unread.
16344 @item
16345 Orphan score entries don't show on "V t" score trace
16346 @item
16347 when clearing out data, the cache data should also be reset.
16348 @item
16349 rewrite gnus-summary-limit-children to be non-recursive
16350 to avoid exceeding lisp nesting on huge groups.
16351 @item
16352 expunged articles are counted when computing scores.
16353 @item
16354 implement gnus-batch-brew-soup
16355 @item
16356 ticked articles aren't easy to read in pick mode -- `n' and
16357 stuff just skips past them. Read articles are the same.
16358 @item
16359 topics that contain just groups with ticked
16360 articles aren't displayed.
16361 @item
16362 nndoc should always allocate unique Message-IDs.
16363 @item
16364 If there are mail groups the first time you use Gnus, Gnus'll
16365 make the mail groups killed.
16366 @item
16367 no "no news is good news" when using topics.
16368 @item
16369 when doing crosspost marking, the cache has to be consulted
16370 and articles have to be removed.
16371 @item
16372 nnweb should fetch complete articles when they are split into several
16373 parts.
16374 @item
16375 scoring on head immediate doesn't work.
16376 @item
16377 finding short score file names takes forever.
16378 @item
16379 canceling articles in foreign groups.
16380 @item
16381 nntp-open-rlogin no longer works.
16382 @item
16383 C-u C-x C-s (Summary) switches to the group buffer.
16384 @item
16385 move nnmail-split-history out to the backends.
16386 @item
16387 nnweb doesn't work properly.
16388 @item
16389 using a virtual server name as `gnus-select-method' doesn't work?
16390 @item
16391 when killing/yanking a group from one topic to another in a slave, the
16392 master will yank it first to one topic and then add it to another.
16393 Perhaps.
16394
16395 @item
16396 warn user about `=' redirection of a group in the active file?
16397 @item
16398 really unbinhex binhex files.
16399 @item
16400 take over the XEmacs menubar and offer a toggle between the XEmacs
16401 bar and the Gnus bar.
16402 @item
16403 @example
16404 push active file and NOV file parsing down into C code.
16405 `(canonize-message-id id)'
16406 `(mail-parent-message-id references n)'
16407 `(parse-news-nov-line &optional dependency-hashtb)'
16408 `(parse-news-nov-region beg end &optional dependency-hashtb fullp)'
16409 `(parse-news-active-region beg end hashtb)'
16410
16411 @end example
16412
16413 @item
16414 nnml .overview directory with splits.
16415 @item
16416 asynchronous cache
16417 @item
16418 postponed commands.
16419 @item
16420 the selected article show have its Subject displayed in its summary line.
16421 @item
16422 when entering groups, get the real number of unread articles from
16423 the server?
16424 @item
16425 sort after gathering threads -- make false roots have the
16426 headers of the oldest orphan with a 0 article number?
16427 @item
16428 nndoc groups should inherit the score files of their parents? Also
16429 inherit copy prompts and save files.
16430 @item
16431 command to start up Gnus (if not running) and enter a mail mode buffer.
16432 @item
16433 allow editing the group description from the group buffer
16434 for backends that support that.
16435 @item
16436 gnus-hide,show-all-topics
16437 @item
16438 groups and sub-topics should be allowed to mingle inside each topic,
16439 and not just list all subtopics at the end.
16440 @item
16441 a command to remove all read articles that are not needed to connect
16442 threads -- `gnus-summary-limit-to-sparse-unread'?
16443 @item
16444 a variable to turn off limiting/cutting of threads in the tree buffer.
16445 @item
16446 a variable to limit how many files are uudecoded.
16447 @item
16448 add zombie groups to a special "New Groups" topic.
16449 @item
16450 server mode command: close/open all connections
16451 @item
16452 put a file date in gnus-score-alist and check whether the file
16453 has been changed before using it.
16454 @item
16455 on exit from a digest group, go to the next article in the parent group.
16456 @item
16457 hide (sub)threads with low score.
16458 @item
16459 when expiring, remove all marks from expired articles.
16460 @item
16461 gnus-summary-limit-to-body
16462 @item
16463 a regexp alist that says what level groups are to be subscribed
16464 on. Eg. -- `(("nnml:" . 1))'.
16465 @item
16466 easier interface to nnkiboze to create ephemeral groups that
16467 contain groups that match a regexp.
16468 @item
16469 allow newlines in <URL:> urls, but remove them before using
16470 the URL.
16471 @item
16472 If there is no From line, the mail backends should fudge one from the
16473 "From " line.
16474 @item
16475 fuzzy simplifying should strip all non-alpha-numerical info
16476 from subject lines.
16477 @item
16478 gnus-soup-brew-soup-with-high-scores.
16479 @item
16480 nntp-ping-before-connect
16481 @item
16482 command to check whether NOV is evil. "list overview.fmt".
16483 @item
16484 when entering a group, Gnus should look through the score
16485 files very early for `local' atoms and set those local variables.
16486 @item
16487 message annotations.
16488 @item
16489 topics are always yanked before groups, and that's not good.
16490 @item
16491 (set-extent-property extent 'help-echo "String to display in minibuf")
16492 to display help in the minibuffer on buttons under XEmacs.
16493 @item
16494 allow group line format spec to say how many articles there
16495 are in the cache.
16496 @item
16497 AUTHINFO GENERIC
16498 @item
16499 support qmail maildir spools
16500 @item
16501 `run-with-idle-timer' in gnus-demon.
16502 @item
16503 stop using invisible text properties and start using overlays instead
16504 @item
16505 C-c C-f C-e to add an Expires header.
16506 @item
16507 go from one group to the next; everything is expunged; go to the
16508 next group instead of going to the group buffer.
16509 @item
16510 gnus-renumber-cache -- to renumber the cache using "low" numbers.
16511 @item
16512 record topic changes in the dribble buffer.
16513 @item
16514 `nnfolder-generate-active-file' should look at the folders it
16515 finds and generate proper active ranges.
16516 @item
16517 nneething-look-in-files-for-article-heads variable to control
16518 whether nneething should sniff all files in the directories.
16519 @item
16520 gnus-fetch-article -- start Gnus, enter group, display article
16521 @item
16522 gnus-dont-move-articles-to-same-group variable when respooling.
16523 @item
16524 when messages are crossposted between several auto-expirable groups,
16525 articles aren't properly marked as expirable.
16526 @item
16527 nneething should allow deletion/moving.
16528 @item
16529 TAB on the last button should go to the first button.
16530 @item
16531 if the car of an element in `mail-split-methods' is a function,
16532 and the function returns non-nil, use that as the name of the group(s) to
16533 save mail in.
16534 @item
16535 command for listing all score files that have been applied.
16536 @item
16537 a command in the article buffer to return to `summary' config.
16538 @item
16539 `gnus-always-post-using-current-server' -- variable to override
16540 `C-c C-c' when posting.
16541 @item
16542 nnmail-group-spool-alist -- says where each group should use
16543 as a spool file.
16544 @item
16545 when an article is crossposted to an auto-expirable group, the article
16546 should be marker as expirable.
16547 @item
16548 article mode command/menu for "send region as URL to browser".
16549 @item
16550 on errors, jump to info nodes that explain the error. For instance,
16551 on invalid From headers, or on error messages from the nntp server.
16552 @item
16553 when gathering threads, make the article that has no "Re: " the parent.
16554 Also consult Date headers.
16555 @item
16556 a token in splits to call shrink-window-if-larger-than-buffer
16557 @item
16558 `1 0 A M' to do matches on the active hashtb.
16559 @item
16560 duplicates -- command to remove Gnus-Warning header, use the read
16561 Message-ID, delete the "original".
16562 @item
16563 when replying to several messages at once, put the "other" message-ids
16564 into a See-Also header.
16565 @item
16566 support setext: URL:http://www.bsdi.com/setext/
16567 @item
16568 support ProleText: <URL:http://proletext.clari.net/prole/proletext.html>
16569 @item
16570 when browsing a foreign server, the groups that are already subscribed
16571 should be listed as such and not as "K".
16572 @item
16573 generate font names dynamically.
16574 @item
16575 score file mode auto-alist.
16576 @item
16577 allow nndoc to change/add/delete things from documents. Implement
16578 methods for each format for adding an article to the document.
16579 @item
16580 `gnus-fetch-old-headers' `all' value to incorporate
16581 absolutely all headers there is.
16582 @item
16583 function like `|', but concatenate all marked articles
16584 and pipe them to the process.
16585 @item
16586 cache the list of killed (or active) groups in a separate file. Update
16587 the file whenever we read the active file or the list
16588 of killed groups in the .eld file reaches a certain length.
16589 @item
16590 function for starting to edit a file to put into
16591 the current mail group.
16592 @item
16593 score-find-trace should display the total score of the article.
16594 @item
16595 "ghettozie" -- score on Xref header and nix it out after using it
16596 to avoid marking as read in other groups it has been crossposted to.
16597 @item
16598 look at procmail splitting. The backends should create
16599 the groups automatically if a spool file exists for that group.
16600 @item
16601 function for backends to register themselves with Gnus.
16602 @item
16603 when replying to several process-marked articles,
16604 have all the From end up in Cc headers? Variable to toggle.
16605 @item
16606 command to delete a crossposted mail article from all
16607 groups it has been mailed to.
16608 @item
16609 `B c' and `B m' should be crosspost aware.
16610 @item
16611 hide-pgp should also hide PGP public key blocks.
16612 @item
16613 Command in the group buffer to respool process-marked groups.
16614 @item
16615 `gnus-summary-find-matching' should accept
16616 pseudo-"headers" like "body", "head" and "all"
16617 @item
16618 When buttifying <URL: > things, all white space (including
16619 newlines) should be ignored.
16620 @item
16621 Process-marking all groups in a topic should process-mark
16622 groups in subtopics as well.
16623 @item
16624 Add non-native groups to the list of killed groups when killing them.
16625 @item
16626 nntp-suggest-kewl-config to probe the nntp server and suggest
16627 variable settings.
16628 @item
16629 add edit and forward secondary marks.
16630 @item
16631 nnml shouldn't visit its .overview files.
16632 @item
16633 allow customizing sorting within gathered threads.
16634 @item
16635 `B q' shouldn't select the current article.
16636 @item
16637 nnmbox should support a newsgroups file for descriptions.
16638 @item
16639 allow fetching mail from several pop servers.
16640 @item
16641 Be able to specify whether the saving commands save the original
16642 or the formatted article.
16643 @item
16644 a command to reparent with the child process-marked (cf. `T ^'.).
16645 @item
16646 I think the possibility to send a password with nntp-open-rlogin
16647 should be a feature in Red Gnus.
16648 @item
16649 The `Z n' command should be possible to execute from a mouse click.
16650 @item
16651 more limiting functions -- date, etc.
16652 @item
16653 be able to limit on a random header; on body; using reverse matches.
16654 @item
16655 a group parameter (`absofucking-total-expiry') that will make Gnus expire
16656 even unread articles.
16657 @item
16658 a command to print the article buffer as postscript.
16659 @item
16660 variable to disable password fetching when opening by nntp-open-telnet.
16661 @item
16662 manual: more example servers -- nntp with rlogin, telnet
16663 @item
16664 checking for bogus groups should clean topic alists as well.
16665 @item
16666 canceling articles in foreign groups.
16667 @item
16668 article number in folded topics isn't properly updated by
16669 Xref handling.
16670 @item
16671 Movement in the group buffer to the next unread group should go to the
16672 next closed topic with unread messages if no group can be found.
16673 @item
16674 Extensive info pages generated on the fly with help everywhere --
16675 in the "*Gnus edit*" buffers, for instance.
16676 @item
16677 Topic movement commands -- like thread movement. Up, down, forward, next.
16678 @item
16679 a way to tick/mark as read Gcc'd articles.
16680 @item
16681 a way to say that all groups within a specific topic comes
16682 from a particular server? Hm.
16683 @item
16684 `gnus-article-fill-if-long-lines' -- a function to fill
16685 the article buffer if there are any looong lines there.
16686 @item
16687 `T h' should jump to the parent topic and fold it.
16688 @item
16689 a command to create an ephemeral nndoc group out of a file,
16690 and then splitting it/moving it to some other group/backend.
16691 @item
16692 a group parameter for nnkiboze groups that says that
16693 all kibozed articles should be entered into the cache.
16694 @item
16695 It should also probably be possible to delimit what
16696 `gnus-jog-cache' does -- for instance, work on just some groups, or on
16697 some levels, and entering just articles that have a score higher than
16698 a certain number.
16699 @item
16700 nnfolder should append to the folder instead of re-writing
16701 the entire folder to disk when accepting new messages.
16702 @item
16703 allow all backends to do the proper thing with .gz files.
16704 @item
16705 a backend for reading collections of babyl files nnbabylfolder?
16706 @item
16707 a command for making the native groups into foreign groups.
16708 @item
16709 server mode command for clearing read marks from all groups
16710 from a server.
16711 @item
16712 when following up multiple articles, include all To, Cc, etc headers
16713 from all articles.
16714 @item
16715 a command for deciding what the total score of the current
16716 thread is. Also a way to highlight based on this.
16717 @item
16718 command to show and edit group scores
16719 @item
16720 a gnus-tree-minimize-horizontal to minimize tree buffers
16721 horizontally.
16722 @item
16723 command to generate nnml overview file for one group.
16724 @item
16725 `C-u C-u a' -- prompt for many crossposted groups.
16726 @item
16727 keep track of which mail groups have received new articles (in this session).
16728 Be able to generate a report and perhaps do some marking in the group
16729 buffer.
16730 @item
16731 gnus-build-sparse-threads to a number -- build only sparse threads
16732 that are of that length.
16733 @item
16734 have nnmh respect mh's unseen sequence in .mh_profile.
16735 @item
16736 cache the newsgroups descriptions locally.
16737 @item
16738 asynchronous posting under nntp.
16739 @item
16740 be able to control word adaptive scoring from the score files.
16741 @item
16742 a variable to make `C-c C-c' post using the "current" select method.
16743 @item
16744 `limit-exclude-low-scored-articles'.
16745 @item
16746 if `gnus-summary-show-thread' is a number, hide threads that have
16747 a score lower than this number.
16748 @item
16749 split newsgroup subscription variable up into "order" and "method".
16750 @item
16751 buttonize ange-ftp file names.
16752 @item
16753 a command to make a duplicate copy of the current article
16754 so that each copy can be edited separately.
16755 @item
16756 nnweb should allow fetching from the local nntp server.
16757 @item
16758 record the sorting done in the summary buffer so that
16759 it can be repeated when limiting/regenerating the buffer.
16760 @item
16761 nnml-generate-nov-databses should generate for
16762 all nnml servers.
16763 @item
16764 when the user does commands in the group buffer, check
16765 the modification time of the .newsrc.eld file and use
16766 ask-user-about-supersession-threat. Also warn when trying
16767 to save .newsrc.eld and it has changed.
16768 @item
16769 M-g on a topic will display all groups with 0 articles in
16770 the topic.
16771 @item
16772 command to remove all topic stuff.
16773 @item
16774 allow exploding incoming digests when reading incoming mail
16775 and splitting the resulting digests.
16776 @item
16777 nnsoup shouldn't set the `message-' variables.
16778 @item
16779 command to nix out all nnoo state information.
16780 @item
16781 nnmail-process-alist that calls functions if group names
16782 matches an alist -- before saving.
16783 @item
16784 use buffer-invisibility-spec everywhere for hiding text.
16785 @item
16786 variable to activate each group before entering them
16787 to get the (new) number of articles. `gnus-activate-before-entering'.
16788 @item
16789 command to fetch a Message-ID from any buffer, even
16790 starting Gnus first if necessary.
16791 @item
16792 when posting and checking whether a group exists or not, just
16793 ask the nntp server instead of relying on the active hashtb.
16794 @item
16795 buttonize the output of `C-c C-a' in an apropos-like way.
16796 @item
16797 `G p' should understand process/prefix, and allow editing
16798 of several groups at once.
16799 @item
16800 command to create an ephemeral nnvirtual group that
16801 matches some regexp(s).
16802 @item
16803 nndoc should understand "Content-Type: message/rfc822" forwarded messages.
16804 @item
16805 it should be possible to score "thread" on the From header.
16806 @item
16807 hitting RET on a "gnus-uu-archive" pseudo article should unpack it.
16808 @item
16809 `B i' should display the article at once in the summary buffer.
16810 @item
16811 remove the "*" mark at once when unticking an article.
16812 @item
16813 `M-s' should highlight the matching text.
16814 @item
16815 when checking for duplicated mails, use Resent-Message-ID if present.
16816 @item
16817 killing and yanking groups in topics should be better. If killing one copy
16818 of a group that exists in multiple topics, only that copy should
16819 be removed. Yanking should insert the copy, and yanking topics
16820 should be possible to be interspersed with the other yankings.
16821 @item
16822 command for enter a group just to read the cached articles. A way to say
16823 "ignore the nntp connection; just read from the cache."
16824 @item
16825 `X u' should decode base64 articles.
16826 @item
16827 a way to hide all "inner" cited text, leaving just the most
16828 recently cited text.
16829 @item
16830 nnvirtual should be asynchronous.
16831 @item
16832 after editing an article, gnus-original-article-buffer should
16833 be invalidated.
16834 @item
16835 there should probably be a way to make Gnus not connect to the
16836 server and just read the articles in the server
16837 @item
16838 allow a `set-default' (or something) to change the default
16839 value of nnoo variables.
16840 @item
16841 a command to import group infos from a .newsrc.eld file.
16842 @item
16843 groups from secondary servers have the entire select method
16844 listed in each group info.
16845 @item
16846 a command for just switching from the summary buffer to the group
16847 buffer.
16848 @item
16849 a way to specify that some incoming mail washing functions
16850 should only be applied to some groups.
16851 @item
16852 Message `C-f C-t' should ask the user whether to heed
16853 mail-copies-to: never.
16854 @item
16855 new group parameter -- `post-to-server' that says to post
16856 using the current server. Also a variable to do the same.
16857 @item
16858 the slave dribble files should autosave to the slave file names.
16859 @item
16860 a group parameter that says what articles to display on group entry, based
16861 on article marks.
16862 @item
16863 a way to visually distinguish slave Gnusae from masters. (Whip instead
16864 of normal logo?)
16865 @item
16866 Use DJ Bernstein "From " quoting/dequoting, where applicable.
16867 @item
16868 Why is hide-citation-maybe and hide-citation different? Also
16869 clear up info.
16870 @item
16871 group user-defined meta-parameters.
16872
16873
16874
16875 From: John Griffith <griffith@@sfs.nphil.uni-tuebingen.de>
16876 @item
16877 I like the option for trying to retrieve the FAQ for a group and I was
16878 thinking it would be great if for those newsgroups that had archives
16879 you could also try to read the archive for that group. Part of the
16880 problem is that archives are spread all over the net, unlike FAQs.
16881 What would be best I suppose is to find the one closest to your site.
16882
16883 In any case, there is a list of general news group archives at @*
16884 ftp://ftp.neosoft.com/pub/users/claird/news.lists/newsgroup_archives.html
16885
16886
16887
16888
16889 @item
16890 @example
16891 From: Jason L Tibbitts III <tibbs@@hpc.uh.edu>
16892 (add-hook 'gnus-select-group-hook
16893 (lambda ()
16894 (gnus-group-add-parameter group
16895 (cons 'gnus-group-date-last-entered (list (current-time-string))))))
16896
16897 (defun gnus-user-format-function-d (headers)
16898 "Return the date the group was last read."
16899 (cond ((car (gnus-group-get-parameter gnus-tmp-group 'gnus-group-date-last-entered)))
16900 (t "")))
16901 @end example
16902
16903 @item
16904 tanken var at når du bruker `gnus-startup-file' som prefix (FOO) til å lete
16905 opp en fil FOO-SERVER, FOO-SERVER.el, FOO-SERVER.eld, kan du la den være en
16906 liste hvor du bruker hvert element i listen som FOO, istedet. da kunne man
16907 hatt forskjellige serveres startup-filer forskjellige steder.
16908
16909
16910 @item
16911 LMI> Well, nnbabyl could alter the group info to heed labels like
16912 LMI> answered and read, I guess.
16913
16914 It could also keep them updated (the same for the Status: header of
16915 unix mbox files).
16916
16917 They could be used like this:
16918
16919
16920 @example
16921 `M l <name> RET' add label <name> to current message.
16922 `M u <name> RET' remove label <name> from current message.
16923 `/ l <expr> RET' limit summary buffer according to <expr>.
16924
16925 <expr> would be a boolean expression on the labels, e.g.
16926
16927 `/ l bug & !fixed RET'
16928 @end example
16929
16930 would show all the messages which are labeled `bug' but not labeled
16931 `fixed'.
16932
16933 One could also imagine the labels being used for highlighting, or
16934 affect the summary line format.
16935
16936
16937 @item
16938 Sender: abraham@@dina.kvl.dk
16939
16940 I'd like a gnus-find-file which work like find file, except that it
16941 would recognize things that looks like messages or folders:
16942
16943 - If it is a directory containing numbered files, create an nndir
16944 summary buffer.
16945
16946 - For other directories, create a nneething summary buffer.
16947
16948 - For files matching "\\`From ", create a nndoc/mbox summary.
16949
16950 - For files matching "\\`BABYL OPTIONS:", create a nndoc/baby summary.
16951
16952 - For files matching "\\`[^ \t\n]+:", create an *Article* buffer.
16953
16954 - For other files, just find them normally.
16955
16956 I'd like `nneething' to use this function, so it would work on a
16957 directory potentially containing mboxes or babyl files.
16958
16959 @item
16960 Please send a mail to bwarsaw@@cnri.reston.va.us (Barry A. Warsaw) and
16961 tell him what you are doing.
16962
16963 @item
16964 Currently, I get prompted:
16965
16966 decend into sci?
16967 - type y
16968 decend into sci.something ?
16969 - type n
16970 decend into ucd?
16971
16972 The problem above is that since there is really only one subsection of
16973 science, shouldn't it prompt you for only descending sci.something? If
16974 there was a sci.somethingelse group or section, then it should prompt
16975 for sci? first the sci.something? then sci.somethingelse?...
16976
16977 @item
16978 Ja, det burde være en måte å si slikt. Kanskje en ny variabel?
16979 `gnus-use-few-score-files'? SÃ¥ kunne score-regler legges til den
16980 "mest" lokale score-fila. F. eks. ville no-gruppene betjenes av
16981 "no.all.SCORE", osv.
16982
16983 @item
16984 What i want is for Gnus to treat any sequence or combination of the following
16985 as a single spoiler warning and hide it all, replacing it with a "Next Page"
16986 button:
16987
16988
16989 ^L's
16990
16991 more than n blank lines
16992
16993 more than m identical lines
16994 (which should be replaced with button to show them)
16995
16996 any whitespace surrounding any of the above
16997
16998
16999 @item
17000 Well, we could allow a new value to `gnus-thread-ignore-subject' --
17001 `spaces', or something. (We could even default to that.) And then
17002 subjects that differ in white space only could be considered the
17003 "same" subject for threading purposes.
17004
17005 @item
17006 Modes to preprocess the contents (e.g. jka-compr) use the second form
17007 "(REGEXP FUNCTION NON-NIL)" while ordinary modes (e.g. tex) use the first
17008 form "(REGEXP . FUNCTION)", so you could use it to distinguish between
17009 those two types of modes. (auto-modes-alist, insert-file-contents-literally.)
17010
17011 @item
17012 Under XEmacs -- do funny article marks:
17013 tick - thumb tack
17014 killed - skull
17015 soup - bowl of soup
17016 score below - dim light bulb
17017 score over - bright light bulb
17018
17019 @item
17020 Yes. I think the algorithm is as follows:
17021
17022 @example
17023 Group-mode
17024
17025 show-list-of-articles-in-group
17026 if (key-pressed == SPACE)
17027 if (no-more-articles-in-group-to-select)
17028 if (articles-selected)
17029 start-reading-selected-articles;
17030 junk-unread-articles;
17031 next-group;
17032 else
17033 show-next-page;
17034
17035 else if (key-pressed = '.')
17036 if (consolidated-menus) # same as hide-thread in Gnus
17037 select-thread-under-cursor;
17038 else
17039 select-article-under-cursor;
17040
17041
17042 Article-mode
17043 if (key-pressed == SPACE)
17044 if (more-pages-in-article)
17045 next-page;
17046 else if (more-selected-articles-to-read)
17047 next-article;
17048 else
17049 next-group;
17050 @end example
17051
17052 @item
17053 My precise need here would have been to limit files to Incoming*.
17054 One could think of some `nneething-only-files' variable, but I guess
17055 it would have been unacceptable if one was using many unrelated such
17056 nneething groups.
17057
17058 A more useful approach would be to, in response to the `G D' prompt, be
17059 allowed to say something like: `~/.mail/Incoming*', somewhat limiting
17060 the top-level directory only (in case directories would be matched by
17061 the wildcard expression).
17062
17063 @item
17064 It would be nice if it also handled
17065
17066 <URL:news://sunsite.auc.dk/>
17067
17068 which should correspond to `B nntp RET sunsite.auc.dk' in *Group*.
17069
17070
17071 @item
17072
17073 Take a look at w3-menu.el in the Emacs-W3 distribution - this works out
17074 really well. Each menu is 'named' by a symbol that would be on a
17075 gnus-*-menus (where * would be whatever, but at least group, summary, and
17076 article versions) variable.
17077
17078 So for gnus-summary-menus, I would set to '(sort mark dispose ...)
17079
17080 A value of '1' would just put _all_ the menus in a single 'GNUS' menu in
17081 the main menubar. This approach works really well for Emacs-W3 and VM.
17082
17083
17084 @item
17085 nndoc should take care to create unique Message-IDs for all its
17086 articles.
17087 @item
17088 gnus-score-followup-article only works when you have a summary buffer
17089 active. Make it work when posting from the group buffer as well.
17090 (message-sent-hook).
17091 @item
17092 rewrite gnus-demon to use run-with-idle-timers.
17093
17094 @item
17095 * Enhancements to Gnus:
17096
17097 Add two commands:
17098
17099 * gnus-servers (gnus-start-server-buffer?)--enters Gnus and goes
17100 straight to the server buffer, without opening any connections to
17101 servers first.
17102
17103 * gnus-server-read-server-newsrc--produces a buffer very similar to
17104 the group buffer, but with only groups from that server listed;
17105 quitting this buffer returns to the server buffer.
17106
17107 @item
17108 add a command to check the integrity of an nnfolder folder --
17109 go through the article numbers and see that there are no duplicates,
17110 and stuff.
17111
17112 @item
17113 `unsmileyfy-buffer' to undo smileification.
17114
17115 @item
17116 a command to give all relevant info on an article, including all
17117 secondary marks.
17118
17119 @item
17120 when doing `-request-accept-article', the backends should do
17121 the nnmail duplicate checking.
17122
17123 @item
17124 allow `message-signature-file' to be a function to return the
17125 value of the signature file.
17126
17127 @item
17128 In addition, I would love it if I could configure message-tab so that it
17129 could call `bbdb-complete-name' in other headers. So, some sort of
17130 interface like
17131
17132 (setq message-tab-alist
17133 '((message-header-regexp message-expand-group)
17134 ("^\\(To\\|[cC]c\\|[bB]cc\\)" bbdb-complete-name)))
17135
17136 then you could run the relevant function to complete the information in
17137 the header
17138
17139 @item
17140 cache the newsgroups file locally to avoid reloading it all the time.
17141
17142 @item
17143 a command to import a buffer into a group.
17144
17145 @item
17146 nnweb should allow fetching by Message-ID from servers.
17147
17148 @item
17149 point in the article buffer doesn't always go to the
17150 beginning of the buffer when selecting new articles.
17151
17152 @item
17153 a command to process mark all unread articles.
17154
17155 @item
17156 `gnus-gather-threads-by-references-and-subject' -- first
17157 do gathering by references, and then go through the dummy roots and
17158 do more gathering by subject.
17159
17160 @item
17161 gnus-uu-mark-in-numerical-order -- process mark articles in
17162 article numerical order.
17163
17164 @item
17165 (gnus-thread-total-score
17166 (gnus-id-to-thread (mail-header-id (gnus-summary-article-header))))
17167 bind to a key.
17168
17169 @item
17170 sorting by score is wrong when using sparse threads.
17171
17172 @item
17173 a command to fetch an arbitrary article -- without having to be
17174 in the summary buffer.
17175
17176 @item
17177 a new nncvs backend. Each group would show an article, using
17178 version branches as threading, checkin date as the date, etc.
17179
17180 @item
17181 http://www.dejanews.com/forms/dnsetfilter_exp.html ?
17182 This filter allows one to construct advance queries on the Dejanews
17183 database such as specifying start and end dates, subject, author,
17184 and/or newsgroup name.
17185
17186 @item
17187 new Date header scoring type -- older, newer
17188
17189 @item
17190 use the summary toolbar in the article buffer.
17191
17192 @item
17193 a command to fetch all articles that are less than X days old.
17194
17195 @item
17196 in pick mode, `q' should save the list of selected articles in the
17197 group info. The next time the group is selected, these articles
17198 will automatically get the process mark.
17199
17200 @item
17201 Isn't it possible to (also?) allow M-^ to automatically try the
17202 default server if it fails on the current server? (controlled by a
17203 user variable, (nil, t, 'ask)).
17204
17205 @item
17206 make it possible to cancel articles using the select method for the
17207 current group.
17208
17209 @item
17210 `gnus-summary-select-article-on-entry' or something. It'll default
17211 to t and will select whatever article decided by `gnus-auto-select-first'.
17212
17213 @item
17214 a new variable to control which selection commands should be unselecting.
17215 `first', `best', `next', `prev', `next-unread', `prev-unread' are
17216 candidates.
17217
17218 @item
17219 be able to select groups that have no articles in them
17220 to be able to post in them (using the current select method).
17221
17222 @item
17223 be able to post via DejaNews.
17224
17225 @item
17226 `x' should retain any sortings that have been performed.
17227
17228 @item
17229 allow the user to specify the precedence of the secondary marks. Also
17230 allow them to be displayed separately.
17231
17232 @item
17233 gnus-summary-save-in-pipe should concatenate the results from
17234 the processes when doing a process marked pipe.
17235
17236 @item
17237 a new match type, like Followup, but which adds Thread matches on all
17238 articles that match a certain From header.
17239
17240 @item
17241 a function that can be read from kill-emacs-query-functions to offer
17242 saving living summary buffers.
17243
17244 @item
17245 a function for selecting a particular group which will contain
17246 the articles listed in a list of article numbers/id's.
17247
17248 @item
17249 a battery of character translation functions to translate common
17250 Mac, MS (etc) characters into ISO 8859-1.
17251
17252 @example
17253 (defun article-fix-m$word ()
17254 "Fix M$Word smartquotes in an article."
17255 (interactive)
17256 (save-excursion
17257 (let ((buffer-read-only nil))
17258 (goto-char (point-min))
17259 (while (search-forward "\221" nil t)
17260 (replace-match "`" t t))
17261 (goto-char (point-min))
17262 (while (search-forward "\222" nil t)
17263 (replace-match "'" t t))
17264 (goto-char (point-min))
17265 (while (search-forward "\223" nil t)
17266 (replace-match "\"" t t))
17267 (goto-char (point-min))
17268 (while (search-forward "\224" nil t)
17269 (replace-match "\"" t t)))))
17270 @end example
17271
17272 @item
17273 @example
17274 (add-hook 'gnus-exit-query-functions
17275 '(lambda ()
17276 (if (and (file-exists-p nnmail-spool-file)
17277 (> (nnheader-file-size nnmail-spool-file) 0))
17278 (yes-or-no-p "New mail has arrived. Quit Gnus anyways? ")
17279 (y-or-n-p "Are you sure you want to quit Gnus? "))))
17280 @end example
17281
17282 @item
17283 allow message-default-headers to be a function.
17284
17285 @item
17286 new Date score match types -- < > = (etc) that take floating point
17287 numbers and match on the age of the article.
17288
17289 @item
17290 @example
17291 > > > If so, I've got one gripe: It seems that when I fire up gnus 5.2.25
17292 > > > under xemacs-19.14, it's creating a new frame, but is erasing the
17293 > > > buffer in the frame that it was called from =:-O
17294 >
17295 > > Hm. How do you start up Gnus? From the toolbar or with
17296 > > `M-x gnus-other-frame'?
17297 >
17298 > I normally start it up from the toolbar; at
17299 > least that's the way I've caught it doing the
17300 > deed before.
17301 @end example
17302
17303 @item
17304 all commands that react to the process mark should push
17305 the current process mark set onto the stack.
17306
17307 @item
17308 gnus-article-hide-pgp
17309 Selv ville jeg nok ha valgt å slette den dersom teksten matcher
17310 @example
17311 "\\(This\s+\\)?[^ ]+ has been automatically signed by"
17312 @end example
17313 og det er maks hundre tegn mellom match-end og ----linja. Men -det-
17314 er min type heuristikk og langt fra alles.
17315
17316 @item
17317 `gnus-subscribe-sorted' -- insert new groups where they would have been
17318 sorted to if `gnus-group-sort-function' were run.
17319
17320 @item
17321 gnus-(group,summary)-highlight should respect any `face' text props set
17322 on the lines.
17323
17324 @item
17325 use run-with-idle-timer for gnus-demon instead of the
17326 home-brewed stuff for better reliability.
17327
17328 @item
17329 add a way to select which NoCeM type to apply -- spam, troll, etc.
17330
17331 @item
17332 nndraft-request-group should tally autosave files.
17333
17334 @item
17335 implement nntp-retry-on-break and nntp-command-timeout.
17336
17337 @item
17338 gnus-article-highlight-limit that says when not to highlight (long)
17339 articles.
17340
17341 @item
17342 (nnoo-set SERVER VARIABLE VALUE)
17343
17344 @item
17345 nn*-spool-methods
17346
17347 @item
17348 interrupitng agent fetching of articles should save articles.
17349
17350 @item
17351 command to open a digest group, and copy all the articles there to the
17352 current group.
17353
17354 @item
17355 a variable to disable article body highlights if there's more than
17356 X characters in the body.
17357
17358 @item
17359 handle 480/381 authinfo requests separately.
17360
17361 @item
17362 include the texi/dir file in the distribution.
17363
17364 @item
17365 format spec to "tab" to a position.
17366
17367 @item
17368 Move all prompting to the new `M-n' default style.
17369
17370 @item
17371 command to display all dormant articles.
17372
17373 @item
17374 gnus-auto-select-next makeover -- list of things it should do.
17375
17376 @item
17377 a score match type that adds scores matching on From if From has replied
17378 to something someone else has said.
17379
17380 @item
17381 Read Netscape discussion groups:
17382 snews://secnews.netscape.com/netscape.communicator.unix
17383
17384 @item
17385 One command to edit the original version if an article, and one to edit
17386 the displayed version.
17387
17388 @item
17389 @kbd{T v} -- make all process-marked articles the children of the
17390 current article.
17391
17392 @item
17393 Switch from initial text to the new default text mechanism.
17394
17395 @item
17396 How about making it possible to expire local articles? Will it be
17397 possible to make various constraints on when an article can be
17398 expired, e.g. (read), (age > 14 days), or the more interesting (read
17399 & age > 14 days)?
17400
17401 @item
17402 New limit command---limit to articles that have a certain string
17403 in the head or body.
17404
17405 @item
17406 Allow breaking lengthy NNTP commands.
17407
17408 @item
17409 gnus-article-highlight-limit, to disable highlighting in big articles.
17410
17411 @item
17412 Editing an article should put the article to be edited
17413 in a special, unique buffer.
17414
17415 @item
17416 A command to send a mail to the admin-address group param.
17417
17418 @item
17419 A Date scoring type that will match if the article
17420 is less than a certain number of days old.
17421
17422 @item
17423 New spec: %~(tab 56) to put point on column 56
17424
17425 @item
17426 Allow Gnus Agent scoring to use normal score files.
17427
17428 @item
17429 Rething the Agent active file thing. `M-g' doesn't update the active
17430 file, for instance.
17431
17432 @item
17433 With dummy roots, `^' and then selecing the first article
17434 in any other dummy thread will make Gnus highlight the
17435 dummy root instead of the first article.
17436
17437 @item
17438 Propagate all group properties (marks, article numbers, etc) up to the
17439 topics for displaying.
17440
17441 @item
17442 `n' in the group buffer with topics should go to the next group
17443 with unread articles, even if that group is hidden in a topic.
17444
17445 @item
17446 gnus-posting-styles doesn't work in drafts.
17447
17448 @item
17449 gnus-summary-limit-include-cached is slow when there are
17450 many articles in the cache, since it regenerates big parts of the
17451 summary buffer for each article.
17452
17453 @item
17454 Implement gnus-batch-brew-soup.
17455
17456 @item
17457 Group parameters and summary commands for un/subscribing to mailing
17458 lists.
17459
17460 @item
17461 Introduce nnmail-home-directory.
17462
17463 @item
17464 gnus-fetch-group and friends should exit Gnus when the user
17465 exits the group.
17466
17467 @item
17468 Solve the halting problem.
17469
17470 @c TODO
17471 @end itemize
17472
17473 @iftex
17474
17475 @page
17476 @node The Manual
17477 @section The Manual
17478 @cindex colophon
17479 @cindex manual
17480
17481 This manual was generated from a TeXinfo file and then run through
17482 either @code{texi2dvi}
17483 to get what you hold in your hands now.
17484
17485 The following conventions have been used:
17486
17487 @enumerate
17488
17489 @item
17490 This is a @samp{string}
17491
17492 @item
17493 This is a @kbd{keystroke}
17494
17495 @item
17496 This is a @file{file}
17497
17498 @item
17499 This is a @code{symbol}
17500
17501 @end enumerate
17502
17503 So if I were to say ``set @code{flargnoze} to @samp{yes}'', that would
17504 mean:
17505
17506 @lisp
17507 (setq flargnoze "yes")
17508 @end lisp
17509
17510 If I say ``set @code{flumphel} to @code{yes}'', that would mean:
17511
17512 @lisp
17513 (setq flumphel 'yes)
17514 @end lisp
17515
17516 @samp{yes} and @code{yes} are two @emph{very} different things---don't
17517 ever get them confused.
17518
17519
17520 @end iftex
17521
17522
17523 @page
17524 @node Terminology
17525 @section Terminology
17526
17527 @cindex terminology
17528 @table @dfn
17529
17530 @item news
17531 @cindex news
17532 This is what you are supposed to use this thing for---reading news.
17533 News is generally fetched from a nearby @sc{nntp} server, and is
17534 generally publicly available to everybody. If you post news, the entire
17535 world is likely to read just what you have written, and they'll all
17536 snigger mischievously. Behind your back.
17537
17538 @item mail
17539 @cindex mail
17540 Everything that's delivered to you personally is mail. Some news/mail
17541 readers (like Gnus) blur the distinction between mail and news, but
17542 there is a difference. Mail is private. News is public. Mailing is
17543 not posting, and replying is not following up.
17544
17545 @item reply
17546 @cindex reply
17547 Send a mail to the person who has written what you are reading.
17548
17549 @item follow up
17550 @cindex follow up
17551 Post an article to the current newsgroup responding to the article you
17552 are reading.
17553
17554 @item backend
17555 @cindex backend
17556 Gnus gets fed articles from a number of backends, both news and mail
17557 backends. Gnus does not handle the underlying media, so to speak---this
17558 is all done by the backends.
17559
17560 @item native
17561 @cindex native
17562 Gnus will always use one method (and backend) as the @dfn{native}, or
17563 default, way of getting news.
17564
17565 @item foreign
17566 @cindex foreign
17567 You can also have any number of foreign groups active at the same time.
17568 These are groups that use non-native non-secondary backends for getting
17569 news.
17570
17571 @item secondary
17572 @cindex secondary
17573 Secondary backends are somewhere half-way between being native and being
17574 foreign, but they mostly act like they are native.
17575
17576 @item article
17577 @cindex article
17578 A message that has been posted as news.
17579
17580 @item mail message
17581 @cindex mail message
17582 A message that has been mailed.
17583
17584 @item message
17585 @cindex message
17586 A mail message or news article
17587
17588 @item head
17589 @cindex head
17590 The top part of a message, where administrative information (etc.) is
17591 put.
17592
17593 @item body
17594 @cindex body
17595 The rest of an article. Everything not in the head is in the
17596 body.
17597
17598 @item header
17599 @cindex header
17600 A line from the head of an article.
17601
17602 @item headers
17603 @cindex headers
17604 A collection of such lines, or a collection of heads. Or even a
17605 collection of @sc{nov} lines.
17606
17607 @item @sc{nov}
17608 @cindex nov
17609 When Gnus enters a group, it asks the backend for the headers of all
17610 unread articles in the group. Most servers support the News OverView
17611 format, which is more compact and much faster to read and parse than the
17612 normal @sc{head} format.
17613
17614 @item level
17615 @cindex levels
17616 Each group is subscribed at some @dfn{level} or other (1-9). The ones
17617 that have a lower level are ``more'' subscribed than the groups with a
17618 higher level. In fact, groups on levels 1-5 are considered
17619 @dfn{subscribed}; 6-7 are @dfn{unsubscribed}; 8 are @dfn{zombies}; and 9
17620 are @dfn{killed}. Commands for listing groups and scanning for new
17621 articles will all use the numeric prefix as @dfn{working level}.
17622
17623 @item killed groups
17624 @cindex killed groups
17625 No information on killed groups is stored or updated, which makes killed
17626 groups much easier to handle than subscribed groups.
17627
17628 @item zombie groups
17629 @cindex zombie groups
17630 Just like killed groups, only slightly less dead.
17631
17632 @item active file
17633 @cindex active file
17634 The news server has to keep track of what articles it carries, and what
17635 groups exist. All this information in stored in the active file, which
17636 is rather large, as you might surmise.
17637
17638 @item bogus groups
17639 @cindex bogus groups
17640 A group that exists in the @file{.newsrc} file, but isn't known to the
17641 server (i.e., it isn't in the active file), is a @emph{bogus group}.
17642 This means that the group probably doesn't exist (any more).
17643
17644 @item activating
17645 @cindex activating groups
17646 The act of asking the server for info on a group and computing the
17647 number of unread articles is called @dfn{activating the group}.
17648 Un-activated groups are listed with @samp{*} in the group buffer.
17649
17650 @item server
17651 @cindex server
17652 A machine one can connect to and get news (or mail) from.
17653
17654 @item select method
17655 @cindex select method
17656 A structure that specifies the backend, the server and the virtual
17657 server settings.
17658
17659 @item virtual server
17660 @cindex virtual server
17661 A named select method. Since a select method defines all there is to
17662 know about connecting to a (physical) server, taking the thing as a
17663 whole is a virtual server.
17664
17665 @item washing
17666 @cindex washing
17667 Taking a buffer and running it through a filter of some sort. The
17668 result will (more often than not) be cleaner and more pleasing than the
17669 original.
17670
17671 @item ephemeral groups
17672 @cindex ephemeral groups
17673 Most groups store data on what articles you have read. @dfn{Ephemeral}
17674 groups are groups that will have no data stored---when you exit the
17675 group, it'll disappear into the aether.
17676
17677 @item solid groups
17678 @cindex solid groups
17679 This is the opposite of ephemeral groups. All groups listed in the
17680 group buffer are solid groups.
17681
17682 @item sparse articles
17683 @cindex sparse articles
17684 These are article placeholders shown in the summary buffer when
17685 @code{gnus-build-sparse-threads} has been switched on.
17686
17687 @item threading
17688 @cindex threading
17689 To put responses to articles directly after the articles they respond
17690 to---in a hierarchical fashion.
17691
17692 @item root
17693 @cindex root
17694 @cindex thread root
17695 The first article in a thread is the root. It is the ancestor of all
17696 articles in the thread.
17697
17698 @item parent
17699 @cindex parent
17700 An article that has responses.
17701
17702 @item child
17703 @cindex child
17704 An article that responds to a different article---its parent.
17705
17706 @item digest
17707 @cindex digest
17708 A collection of messages in one file. The most common digest format is
17709 specified by RFC1153.
17710
17711 @end table
17712
17713
17714 @page
17715 @node Customization
17716 @section Customization
17717 @cindex general customization
17718
17719 All variables are properly documented elsewhere in this manual. This
17720 section is designed to give general pointers on how to customize Gnus
17721 for some quite common situations.
17722
17723 @menu
17724 * Slow/Expensive Connection:: You run a local Emacs and get the news elsewhere.
17725 * Slow Terminal Connection:: You run a remote Emacs.
17726 * Little Disk Space:: You feel that having large setup files is icky.
17727 * Slow Machine:: You feel like buying a faster machine.
17728 @end menu
17729
17730
17731 @node Slow/Expensive Connection
17732 @subsection Slow/Expensive @sc{nntp} Connection
17733
17734 If you run Emacs on a machine locally, and get your news from a machine
17735 over some very thin strings, you want to cut down on the amount of data
17736 Gnus has to get from the @sc{nntp} server.
17737
17738 @table @code
17739
17740 @item gnus-read-active-file
17741 Set this to @code{nil}, which will inhibit Gnus from requesting the
17742 entire active file from the server. This file is often v. large. You
17743 also have to set @code{gnus-check-new-newsgroups} and
17744 @code{gnus-check-bogus-newsgroups} to @code{nil} to make sure that Gnus
17745 doesn't suddenly decide to fetch the active file anyway.
17746
17747 @item gnus-nov-is-evil
17748 This one has to be @code{nil}. If not, grabbing article headers from
17749 the @sc{nntp} server will not be very fast. Not all @sc{nntp} servers
17750 support @sc{xover}; Gnus will detect this by itself.
17751 @end table
17752
17753
17754 @node Slow Terminal Connection
17755 @subsection Slow Terminal Connection
17756
17757 Let's say you use your home computer for dialing up the system that runs
17758 Emacs and Gnus. If your modem is slow, you want to reduce (as much as
17759 possible) the amount of data sent over the wires.
17760
17761 @table @code
17762
17763 @item gnus-auto-center-summary
17764 Set this to @code{nil} to inhibit Gnus from re-centering the summary
17765 buffer all the time. If it is @code{vertical}, do only vertical
17766 re-centering. If it is neither @code{nil} nor @code{vertical}, do both
17767 horizontal and vertical recentering.
17768
17769 @item gnus-visible-headers
17770 Cut down on the headers included in the articles to the
17771 minimum. You can, in fact, make do without them altogether---most of the
17772 useful data is in the summary buffer, anyway. Set this variable to
17773 @samp{^NEVVVVER} or @samp{From:}, or whatever you feel you need.
17774
17775 @item gnus-article-display-hook
17776 Set this hook to all the available hiding commands:
17777 @lisp
17778 (setq gnus-article-display-hook
17779 '(gnus-article-hide-headers
17780 gnus-article-hide-signature
17781 gnus-article-hide-citation))
17782 @end lisp
17783
17784 @item gnus-use-full-window
17785 By setting this to @code{nil}, you can make all the windows smaller.
17786 While this doesn't really cut down much generally, it means that you
17787 have to see smaller portions of articles before deciding that you didn't
17788 want to read them anyway.
17789
17790 @item gnus-thread-hide-subtree
17791 If this is non-@code{nil}, all threads in the summary buffer will be
17792 hidden initially.
17793
17794 @item gnus-updated-mode-lines
17795 If this is @code{nil}, Gnus will not put information in the buffer mode
17796 lines, which might save some time.
17797 @end table
17798
17799
17800 @node Little Disk Space
17801 @subsection Little Disk Space
17802 @cindex disk space
17803
17804 The startup files can get rather large, so you may want to cut their
17805 sizes a bit if you are running out of space.
17806
17807 @table @code
17808
17809 @item gnus-save-newsrc-file
17810 If this is @code{nil}, Gnus will never save @file{.newsrc}---it will
17811 only save @file{.newsrc.eld}. This means that you will not be able to
17812 use any other newsreaders than Gnus. This variable is @code{t} by
17813 default.
17814
17815 @item gnus-save-killed-list
17816 If this is @code{nil}, Gnus will not save the list of dead groups. You
17817 should also set @code{gnus-check-new-newsgroups} to @code{ask-server}
17818 and @code{gnus-check-bogus-newsgroups} to @code{nil} if you set this
17819 variable to @code{nil}. This variable is @code{t} by default.
17820
17821 @end table
17822
17823
17824 @node Slow Machine
17825 @subsection Slow Machine
17826 @cindex slow machine
17827
17828 If you have a slow machine, or are just really impatient, there are a
17829 few things you can do to make Gnus run faster.
17830
17831 Set @code{gnus-check-new-newsgroups} and
17832 @code{gnus-check-bogus-newsgroups} to @code{nil} to make startup faster.
17833
17834 Set @code{gnus-show-threads}, @code{gnus-use-cross-reference} and
17835 @code{gnus-nov-is-evil} to @code{nil} to make entering and exiting the
17836 summary buffer faster.
17837
17838 Set @code{gnus-article-display-hook} to @code{nil} to make article
17839 processing a bit faster.
17840
17841
17842 @page
17843 @node Troubleshooting
17844 @section Troubleshooting
17845 @cindex troubleshooting
17846
17847 Gnus works @emph{so} well straight out of the box---I can't imagine any
17848 problems, really.
17849
17850 Ahem.
17851
17852 @enumerate
17853
17854 @item
17855 Make sure your computer is switched on.
17856
17857 @item
17858 Make sure that you really load the current Gnus version. If you have
17859 been running @sc{gnus}, you need to exit Emacs and start it up again before
17860 Gnus will work.
17861
17862 @item
17863 Try doing an @kbd{M-x gnus-version}. If you get something that looks
17864 like @samp{Gnus v5.46; nntp 4.0} you have the right files loaded. If,
17865 on the other hand, you get something like @samp{NNTP 3.x} or @samp{nntp
17866 flee}, you have some old @file{.el} files lying around. Delete these.
17867
17868 @item
17869 Read the help group (@kbd{G h} in the group buffer) for a FAQ and a
17870 how-to.
17871
17872 @item
17873 @vindex max-lisp-eval-depth
17874 Gnus works on many recursive structures, and in some extreme (and very
17875 rare) cases Gnus may recurse down ``too deeply'' and Emacs will beep at
17876 you. If this happens to you, set @code{max-lisp-eval-depth} to 500 or
17877 something like that.
17878 @end enumerate
17879
17880 If all else fails, report the problem as a bug.
17881
17882 @cindex bugs
17883 @cindex reporting bugs
17884
17885 @kindex M-x gnus-bug
17886 @findex gnus-bug
17887 If you find a bug in Gnus, you can report it with the @kbd{M-x gnus-bug}
17888 command. @kbd{M-x set-variable RET debug-on-error RET t RET}, and send
17889 me the backtrace. I will fix bugs, but I can only fix them if you send
17890 me a precise description as to how to reproduce the bug.
17891
17892 You really can never be too detailed in a bug report. Always use the
17893 @kbd{M-x gnus-bug} command when you make bug reports, even if it creates
17894 a 10Kb mail each time you use it, and even if you have sent me your
17895 environment 500 times before. I don't care. I want the full info each
17896 time.
17897
17898 It is also important to remember that I have no memory whatsoever. If
17899 you send a bug report, and I send you a reply, and then you just send
17900 back ``No, it's not! Moron!'', I will have no idea what you are
17901 insulting me about. Always over-explain everything. It's much easier
17902 for all of us---if I don't have all the information I need, I will just
17903 mail you and ask for more info, and everything takes more time.
17904
17905 If the problem you're seeing is very visual, and you can't quite explain
17906 it, copy the Emacs window to a file (with @code{xwd}, for instance), put
17907 it somewhere it can be reached, and include the URL of the picture in
17908 the bug report.
17909
17910 If you just need help, you are better off asking on
17911 @samp{gnu.emacs.gnus}. I'm not very helpful.
17912
17913 @cindex gnu.emacs.gnus
17914 @cindex ding mailing list
17915 You can also ask on the ding mailing list---@samp{ding@@gnus.org}.
17916 Write to @samp{ding-request@@gnus.org} to subscribe.
17917
17918
17919 @page
17920 @node A Programmers Guide to Gnus
17921 @section A Programmer@'s Guide to Gnus
17922
17923 It is my hope that other people will figure out smart stuff that Gnus
17924 can do, and that other people will write those smart things as well. To
17925 facilitate that I thought it would be a good idea to describe the inner
17926 workings of Gnus. And some of the not-so-inner workings, while I'm at
17927 it.
17928
17929 You can never expect the internals of a program not to change, but I
17930 will be defining (in some details) the interface between Gnus and its
17931 backends (this is written in stone), the format of the score files
17932 (ditto), data structures (some are less likely to change than others)
17933 and general methods of operation.
17934
17935 @menu
17936 * Gnus Utility Functions:: Common functions and variable to use.
17937 * Backend Interface:: How Gnus communicates with the servers.
17938 * Score File Syntax:: A BNF definition of the score file standard.
17939 * Headers:: How Gnus stores headers internally.
17940 * Ranges:: A handy format for storing mucho numbers.
17941 * Group Info:: The group info format.
17942 * Extended Interactive:: Symbolic prefixes and stuff.
17943 * Emacs/XEmacs Code:: Gnus can be run under all modern Emacsen.
17944 * Various File Formats:: Formats of files that Gnus use.
17945 @end menu
17946
17947
17948 @node Gnus Utility Functions
17949 @subsection Gnus Utility Functions
17950 @cindex Gnus utility functions
17951 @cindex utility functions
17952 @cindex functions
17953 @cindex internal variables
17954
17955 When writing small functions to be run from hooks (and stuff), it's
17956 vital to have access to the Gnus internal functions and variables.
17957 Below is a list of the most common ones.
17958
17959 @table @code
17960
17961 @item gnus-newsgroup-name
17962 @vindex gnus-newsgroup-name
17963 This variable holds the name of the current newsgroup.
17964
17965 @item gnus-find-method-for-group
17966 @findex gnus-find-method-for-group
17967 A function that returns the select method for @var{group}.
17968
17969 @item gnus-group-real-name
17970 @findex gnus-group-real-name
17971 Takes a full (prefixed) Gnus group name, and returns the unprefixed
17972 name.
17973
17974 @item gnus-group-prefixed-name
17975 @findex gnus-group-prefixed-name
17976 Takes an unprefixed group name and a select method, and returns the full
17977 (prefixed) Gnus group name.
17978
17979 @item gnus-get-info
17980 @findex gnus-get-info
17981 Returns the group info list for @var{group}.
17982
17983 @item gnus-group-unread
17984 @findex gnus-group-unread
17985 The number of unread articles in @var{group}, or @code{t} if that is
17986 unknown.
17987
17988 @item gnus-active
17989 @findex gnus-active
17990 The active entry for @var{group}.
17991
17992 @item gnus-set-active
17993 @findex gnus-set-active
17994 Set the active entry for @var{group}.
17995
17996 @item gnus-add-current-to-buffer-list
17997 @findex gnus-add-current-to-buffer-list
17998 Adds the current buffer to the list of buffers to be killed on Gnus
17999 exit.
18000
18001 @item gnus-continuum-version
18002 @findex gnus-continuum-version
18003 Takes a Gnus version string as a parameter and returns a floating point
18004 number. Earlier versions will always get a lower number than later
18005 versions.
18006
18007 @item gnus-group-read-only-p
18008 @findex gnus-group-read-only-p
18009 Says whether @var{group} is read-only or not.
18010
18011 @item gnus-news-group-p
18012 @findex gnus-news-group-p
18013 Says whether @var{group} came from a news backend.
18014
18015 @item gnus-ephemeral-group-p
18016 @findex gnus-ephemeral-group-p
18017 Says whether @var{group} is ephemeral or not.
18018
18019 @item gnus-server-to-method
18020 @findex gnus-server-to-method
18021 Returns the select method corresponding to @var{server}.
18022
18023 @item gnus-server-equal
18024 @findex gnus-server-equal
18025 Says whether two virtual servers are equal.
18026
18027 @item gnus-group-native-p
18028 @findex gnus-group-native-p
18029 Says whether @var{group} is native or not.
18030
18031 @item gnus-group-secondary-p
18032 @findex gnus-group-secondary-p
18033 Says whether @var{group} is secondary or not.
18034
18035 @item gnus-group-foreign-p
18036 @findex gnus-group-foreign-p
18037 Says whether @var{group} is foreign or not.
18038
18039 @item group-group-find-parameter
18040 @findex group-group-find-parameter
18041 Returns the parameter list of @var{group}. If given a second parameter,
18042 returns the value of that parameter for @var{group}.
18043
18044 @item gnus-group-set-parameter
18045 @findex gnus-group-set-parameter
18046 Takes three parameters; @var{group}, @var{parameter} and @var{value}.
18047
18048 @item gnus-narrow-to-body
18049 @findex gnus-narrow-to-body
18050 Narrows the current buffer to the body of the article.
18051
18052 @item gnus-check-backend-function
18053 @findex gnus-check-backend-function
18054 Takes two parameters, @var{function} and @var{group}. If the backend
18055 @var{group} comes from supports @var{function}, return non-@code{nil}.
18056
18057 @lisp
18058 (gnus-check-backend-function "request-scan" "nnml:misc")
18059 => t
18060 @end lisp
18061
18062 @item gnus-read-method
18063 @findex gnus-read-method
18064 Prompts the user for a select method.
18065
18066 @end table
18067
18068
18069 @node Backend Interface
18070 @subsection Backend Interface
18071
18072 Gnus doesn't know anything about @sc{nntp}, spools, mail or virtual
18073 groups. It only knows how to talk to @dfn{virtual servers}. A virtual
18074 server is a @dfn{backend} and some @dfn{backend variables}. As examples
18075 of the first, we have @code{nntp}, @code{nnspool} and @code{nnmbox}. As
18076 examples of the latter we have @code{nntp-port-number} and
18077 @code{nnmbox-directory}.
18078
18079 When Gnus asks for information from a backend---say @code{nntp}---on
18080 something, it will normally include a virtual server name in the
18081 function parameters. (If not, the backend should use the ``current''
18082 virtual server.) For instance, @code{nntp-request-list} takes a virtual
18083 server as its only (optional) parameter. If this virtual server hasn't
18084 been opened, the function should fail.
18085
18086 Note that a virtual server name has no relation to some physical server
18087 name. Take this example:
18088
18089 @lisp
18090 (nntp "odd-one"
18091 (nntp-address "ifi.uio.no")
18092 (nntp-port-number 4324))
18093 @end lisp
18094
18095 Here the virtual server name is @samp{odd-one} while the name of
18096 the physical server is @samp{ifi.uio.no}.
18097
18098 The backends should be able to switch between several virtual servers.
18099 The standard backends implement this by keeping an alist of virtual
18100 server environments that they pull down/push up when needed.
18101
18102 There are two groups of interface functions: @dfn{required functions},
18103 which must be present, and @dfn{optional functions}, which Gnus will
18104 always check for presence before attempting to call 'em.
18105
18106 All these functions are expected to return data in the buffer
18107 @code{nntp-server-buffer} (@samp{ *nntpd*}), which is somewhat
18108 unfortunately named, but we'll have to live with it. When I talk about
18109 @dfn{resulting data}, I always refer to the data in that buffer. When I
18110 talk about @dfn{return value}, I talk about the function value returned by
18111 the function call. Functions that fail should return @code{nil} as the
18112 return value.
18113
18114 Some backends could be said to be @dfn{server-forming} backends, and
18115 some might be said not to be. The latter are backends that generally
18116 only operate on one group at a time, and have no concept of ``server''
18117 -- they have a group, and they deliver info on that group and nothing
18118 more.
18119
18120 In the examples and definitions I will refer to the imaginary backend
18121 @code{nnchoke}.
18122
18123 @cindex @code{nnchoke}
18124
18125 @menu
18126 * Required Backend Functions:: Functions that must be implemented.
18127 * Optional Backend Functions:: Functions that need not be implemented.
18128 * Error Messaging:: How to get messages and report errors.
18129 * Writing New Backends:: Extending old backends.
18130 * Hooking New Backends Into Gnus:: What has to be done on the Gnus end.
18131 * Mail-like Backends:: Some tips on mail backends.
18132 @end menu
18133
18134
18135 @node Required Backend Functions
18136 @subsubsection Required Backend Functions
18137
18138 @table @code
18139
18140 @item (nnchoke-retrieve-headers ARTICLES &optional GROUP SERVER FETCH-OLD)
18141
18142 @var{articles} is either a range of article numbers or a list of
18143 @code{Message-ID}s. Current backends do not fully support either---only
18144 sequences (lists) of article numbers, and most backends do not support
18145 retrieval of @code{Message-ID}s. But they should try for both.
18146
18147 The result data should either be HEADs or NOV lines, and the result
18148 value should either be @code{headers} or @code{nov} to reflect this.
18149 This might later be expanded to @code{various}, which will be a mixture
18150 of HEADs and NOV lines, but this is currently not supported by Gnus.
18151
18152 If @var{fetch-old} is non-@code{nil} it says to try fetching "extra
18153 headers", in some meaning of the word. This is generally done by
18154 fetching (at most) @var{fetch-old} extra headers less than the smallest
18155 article number in @code{articles}, and filling the gaps as well. The
18156 presence of this parameter can be ignored if the backend finds it
18157 cumbersome to follow the request. If this is non-@code{nil} and not a
18158 number, do maximum fetches.
18159
18160 Here's an example HEAD:
18161
18162 @example
18163 221 1056 Article retrieved.
18164 Path: ifi.uio.no!sturles
18165 From: sturles@@ifi.uio.no (Sturle Sunde)
18166 Newsgroups: ifi.discussion
18167 Subject: Re: Something very droll
18168 Date: 27 Oct 1994 14:02:57 +0100
18169 Organization: Dept. of Informatics, University of Oslo, Norway
18170 Lines: 26
18171 Message-ID: <38o8e1$a0o@@holmenkollen.ifi.uio.no>
18172 References: <38jdmq$4qu@@visbur.ifi.uio.no>
18173 NNTP-Posting-Host: holmenkollen.ifi.uio.no
18174 .
18175 @end example
18176
18177 So a @code{headers} return value would imply that there's a number of
18178 these in the data buffer.
18179
18180 Here's a BNF definition of such a buffer:
18181
18182 @example
18183 headers = *head
18184 head = error / valid-head
18185 error-message = [ "4" / "5" ] 2number " " <error message> eol
18186 valid-head = valid-message *header "." eol
18187 valid-message = "221 " <number> " Article retrieved." eol
18188 header = <text> eol
18189 @end example
18190
18191 If the return value is @code{nov}, the data buffer should contain
18192 @dfn{network overview database} lines. These are basically fields
18193 separated by tabs.
18194
18195 @example
18196 nov-buffer = *nov-line
18197 nov-line = 8*9 [ field <TAB> ] eol
18198 field = <text except TAB>
18199 @end example
18200
18201 For a closer look at what should be in those fields,
18202 @pxref{Headers}.
18203
18204
18205 @item (nnchoke-open-server SERVER &optional DEFINITIONS)
18206
18207 @var{server} is here the virtual server name. @var{definitions} is a
18208 list of @code{(VARIABLE VALUE)} pairs that define this virtual server.
18209
18210 If the server can't be opened, no error should be signaled. The backend
18211 may then choose to refuse further attempts at connecting to this
18212 server. In fact, it should do so.
18213
18214 If the server is opened already, this function should return a
18215 non-@code{nil} value. There should be no data returned.
18216
18217
18218 @item (nnchoke-close-server &optional SERVER)
18219
18220 Close connection to @var{server} and free all resources connected
18221 to it. Return @code{nil} if the server couldn't be closed for some
18222 reason.
18223
18224 There should be no data returned.
18225
18226
18227 @item (nnchoke-request-close)
18228
18229 Close connection to all servers and free all resources that the backend
18230 have reserved. All buffers that have been created by that backend
18231 should be killed. (Not the @code{nntp-server-buffer}, though.) This
18232 function is generally only called when Gnus is shutting down.
18233
18234 There should be no data returned.
18235
18236
18237 @item (nnchoke-server-opened &optional SERVER)
18238
18239 If @var{server} is the current virtual server, and the connection to the
18240 physical server is alive, then this function should return a
18241 non-@code{nil} vlue. This function should under no circumstances
18242 attempt to reconnect to a server we have lost connection to.
18243
18244 There should be no data returned.
18245
18246
18247 @item (nnchoke-status-message &optional SERVER)
18248
18249 This function should return the last error message from @var{server}.
18250
18251 There should be no data returned.
18252
18253
18254 @item (nnchoke-request-article ARTICLE &optional GROUP SERVER TO-BUFFER)
18255
18256 The result data from this function should be the article specified by
18257 @var{article}. This might either be a @code{Message-ID} or a number.
18258 It is optional whether to implement retrieval by @code{Message-ID}, but
18259 it would be nice if that were possible.
18260
18261 If @var{to-buffer} is non-@code{nil}, the result data should be returned
18262 in this buffer instead of the normal data buffer. This is to make it
18263 possible to avoid copying large amounts of data from one buffer to
18264 another, while Gnus mainly requests articles to be inserted directly
18265 into its article buffer.
18266
18267 If it is at all possible, this function should return a cons cell where
18268 the @code{car} is the group name the article was fetched from, and the @code{cdr} is
18269 the article number. This will enable Gnus to find out what the real
18270 group and article numbers are when fetching articles by
18271 @code{Message-ID}. If this isn't possible, @code{t} should be returned
18272 on successful article retrieval.
18273
18274
18275 @item (nnchoke-request-group GROUP &optional SERVER FAST)
18276
18277 Get data on @var{group}. This function also has the side effect of
18278 making @var{group} the current group.
18279
18280 If @var{FAST}, don't bother to return useful data, just make @var{group}
18281 the current group.
18282
18283 Here's an example of some result data and a definition of the same:
18284
18285 @example
18286 211 56 1000 1059 ifi.discussion
18287 @end example
18288
18289 The first number is the status, which should be 211. Next is the
18290 total number of articles in the group, the lowest article number, the
18291 highest article number, and finally the group name. Note that the total
18292 number of articles may be less than one might think while just
18293 considering the highest and lowest article numbers, but some articles
18294 may have been canceled. Gnus just discards the total-number, so
18295 whether one should take the bother to generate it properly (if that is a
18296 problem) is left as an exercise to the reader.
18297
18298 @example
18299 group-status = [ error / info ] eol
18300 error = [ "4" / "5" ] 2<number> " " <Error message>
18301 info = "211 " 3* [ <number> " " ] <string>
18302 @end example
18303
18304
18305 @item (nnchoke-close-group GROUP &optional SERVER)
18306
18307 Close @var{group} and free any resources connected to it. This will be
18308 a no-op on most backends.
18309
18310 There should be no data returned.
18311
18312
18313 @item (nnchoke-request-list &optional SERVER)
18314
18315 Return a list of all groups available on @var{server}. And that means
18316 @emph{all}.
18317
18318 Here's an example from a server that only carries two groups:
18319
18320 @example
18321 ifi.test 0000002200 0000002000 y
18322 ifi.discussion 3324 3300 n
18323 @end example
18324
18325 On each line we have a group name, then the highest article number in
18326 that group, the lowest article number, and finally a flag.
18327
18328 @example
18329 active-file = *active-line
18330 active-line = name " " <number> " " <number> " " flags eol
18331 name = <string>
18332 flags = "n" / "y" / "m" / "x" / "j" / "=" name
18333 @end example
18334
18335 The flag says whether the group is read-only (@samp{n}), is moderated
18336 (@samp{m}), is dead (@samp{x}), is aliased to some other group
18337 (@samp{=other-group}) or none of the above (@samp{y}).
18338
18339
18340 @item (nnchoke-request-post &optional SERVER)
18341
18342 This function should post the current buffer. It might return whether
18343 the posting was successful or not, but that's not required. If, for
18344 instance, the posting is done asynchronously, it has generally not been
18345 completed by the time this function concludes. In that case, this
18346 function should set up some kind of sentinel to beep the user loud and
18347 clear if the posting could not be completed.
18348
18349 There should be no result data from this function.
18350
18351 @end table
18352
18353
18354 @node Optional Backend Functions
18355 @subsubsection Optional Backend Functions
18356
18357 @table @code
18358
18359 @item (nnchoke-retrieve-groups GROUPS &optional SERVER)
18360
18361 @var{groups} is a list of groups, and this function should request data
18362 on all those groups. How it does it is of no concern to Gnus, but it
18363 should attempt to do this in a speedy fashion.
18364
18365 The return value of this function can be either @code{active} or
18366 @code{group}, which says what the format of the result data is. The
18367 former is in the same format as the data from
18368 @code{nnchoke-request-list}, while the latter is a buffer full of lines
18369 in the same format as @code{nnchoke-request-group} gives.
18370
18371 @example
18372 group-buffer = *active-line / *group-status
18373 @end example
18374
18375
18376 @item (nnchoke-request-update-info GROUP INFO &optional SERVER)
18377
18378 A Gnus group info (@pxref{Group Info}) is handed to the backend for
18379 alterations. This comes in handy if the backend really carries all the
18380 information (as is the case with virtual and imap groups). This
18381 function should destructively alter the info to suit its needs, and
18382 should return the (altered) group info.
18383
18384 There should be no result data from this function.
18385
18386
18387 @item (nnchoke-request-type GROUP &optional ARTICLE)
18388
18389 When the user issues commands for ``sending news'' (@kbd{F} in the
18390 summary buffer, for instance), Gnus has to know whether the article the
18391 user is following up on is news or mail. This function should return
18392 @code{news} if @var{article} in @var{group} is news, @code{mail} if it
18393 is mail and @code{unknown} if the type can't be decided. (The
18394 @var{article} parameter is necessary in @code{nnvirtual} groups which
18395 might very well combine mail groups and news groups.) Both @var{group}
18396 and @var{article} may be @code{nil}.
18397
18398 There should be no result data from this function.
18399
18400
18401 @item (nnchoke-request-update-mark GROUP ARTICLE MARK)
18402
18403 If the user tries to set a mark that the backend doesn't like, this
18404 function may change the mark. Gnus will use whatever this function
18405 returns as the mark for @var{article} instead of the original
18406 @var{mark}. If the backend doesn't care, it must return the original
18407 @var{mark}, and not @code{nil} or any other type of garbage.
18408
18409 The only use for this I can see is what @code{nnvirtual} does with
18410 it---if a component group is auto-expirable, marking an article as read
18411 in the virtual group should result in the article being marked as
18412 expirable.
18413
18414 There should be no result data from this function.
18415
18416
18417 @item (nnchoke-request-scan &optional GROUP SERVER)
18418
18419 This function may be called at any time (by Gnus or anything else) to
18420 request that the backend check for incoming articles, in one way or
18421 another. A mail backend will typically read the spool file or query the
18422 POP server when this function is invoked. The @var{group} doesn't have
18423 to be heeded---if the backend decides that it is too much work just
18424 scanning for a single group, it may do a total scan of all groups. It
18425 would be nice, however, to keep things local if that's practical.
18426
18427 There should be no result data from this function.
18428
18429
18430 @item (nnchoke-request-group-description GROUP &optional SERVER)
18431
18432 The result data from this function should be a description of
18433 @var{group}.
18434
18435 @example
18436 description-line = name <TAB> description eol
18437 name = <string>
18438 description = <text>
18439 @end example
18440
18441 @item (nnchoke-request-list-newsgroups &optional SERVER)
18442
18443 The result data from this function should be the description of all
18444 groups available on the server.
18445
18446 @example
18447 description-buffer = *description-line
18448 @end example
18449
18450
18451 @item (nnchoke-request-newgroups DATE &optional SERVER)
18452
18453 The result data from this function should be all groups that were
18454 created after @samp{date}, which is in normal human-readable date
18455 format. The data should be in the active buffer format.
18456
18457
18458 @item (nnchoke-request-create-group GROUP &optional SERVER)
18459
18460 This function should create an empty group with name @var{group}.
18461
18462 There should be no return data.
18463
18464
18465 @item (nnchoke-request-expire-articles ARTICLES &optional GROUP SERVER FORCE)
18466
18467 This function should run the expiry process on all articles in the
18468 @var{articles} range (which is currently a simple list of article
18469 numbers.) It is left up to the backend to decide how old articles
18470 should be before they are removed by this function. If @var{force} is
18471 non-@code{nil}, all @var{articles} should be deleted, no matter how new
18472 they are.
18473
18474 This function should return a list of articles that it did not/was not
18475 able to delete.
18476
18477 There should be no result data returned.
18478
18479
18480 @item (nnchoke-request-move-article ARTICLE GROUP SERVER ACCEPT-FORM
18481 &optional LAST)
18482
18483 This function should move @var{article} (which is a number) from
18484 @var{group} by calling @var{accept-form}.
18485
18486 This function should ready the article in question for moving by
18487 removing any header lines it has added to the article, and generally
18488 should ``tidy up'' the article. Then it should @code{eval}
18489 @var{accept-form} in the buffer where the ``tidy'' article is. This
18490 will do the actual copying. If this @code{eval} returns a
18491 non-@code{nil} value, the article should be removed.
18492
18493 If @var{last} is @code{nil}, that means that there is a high likelihood
18494 that there will be more requests issued shortly, so that allows some
18495 optimizations.
18496
18497 The function should return a cons where the @code{car} is the group name and
18498 the @code{cdr} is the article number that the article was entered as.
18499
18500 There should be no data returned.
18501
18502
18503 @item (nnchoke-request-accept-article GROUP &optional SERVER LAST)
18504
18505 This function takes the current buffer and inserts it into @var{group}.
18506 If @var{last} in @code{nil}, that means that there will be more calls to
18507 this function in short order.
18508
18509 The function should return a cons where the @code{car} is the group name and
18510 the @code{cdr} is the article number that the article was entered as.
18511
18512 There should be no data returned.
18513
18514
18515 @item (nnchoke-request-replace-article ARTICLE GROUP BUFFER)
18516
18517 This function should remove @var{article} (which is a number) from
18518 @var{group} and insert @var{buffer} there instead.
18519
18520 There should be no data returned.
18521
18522
18523 @item (nnchoke-request-delete-group GROUP FORCE &optional SERVER)
18524
18525 This function should delete @var{group}. If @var{force}, it should
18526 really delete all the articles in the group, and then delete the group
18527 itself. (If there is such a thing as ``the group itself''.)
18528
18529 There should be no data returned.
18530
18531
18532 @item (nnchoke-request-rename-group GROUP NEW-NAME &optional SERVER)
18533
18534 This function should rename @var{group} into @var{new-name}. All
18535 articles in @var{group} should move to @var{new-name}.
18536
18537 There should be no data returned.
18538
18539 @end table
18540
18541
18542 @node Error Messaging
18543 @subsubsection Error Messaging
18544
18545 @findex nnheader-report
18546 @findex nnheader-get-report
18547 The backends should use the function @code{nnheader-report} to report
18548 error conditions---they should not raise errors when they aren't able to
18549 perform a request. The first argument to this function is the backend
18550 symbol, and the rest are interpreted as arguments to @code{format} if
18551 there are multiple of them, or just a string if there is one of them.
18552 This function must always returns @code{nil}.
18553
18554 @lisp
18555 (nnheader-report 'nnchoke "You did something totally bogus")
18556
18557 (nnheader-report 'nnchoke "Could not request group %s" group)
18558 @end lisp
18559
18560 Gnus, in turn, will call @code{nnheader-get-report} when it gets a
18561 @code{nil} back from a server, and this function returns the most
18562 recently reported message for the backend in question. This function
18563 takes one argument---the server symbol.
18564
18565 Internally, these functions access @var{backend}@code{-status-string},
18566 so the @code{nnchoke} backend will have its error message stored in
18567 @code{nnchoke-status-string}.
18568
18569
18570 @node Writing New Backends
18571 @subsubsection Writing New Backends
18572
18573 Many backends are quite similar. @code{nnml} is just like
18574 @code{nnspool}, but it allows you to edit the articles on the server.
18575 @code{nnmh} is just like @code{nnml}, but it doesn't use an active file,
18576 and it doesn't maintain overview databases. @code{nndir} is just like
18577 @code{nnml}, but it has no concept of ``groups'', and it doesn't allow
18578 editing articles.
18579
18580 It would make sense if it were possible to ``inherit'' functions from
18581 backends when writing new backends. And, indeed, you can do that if you
18582 want to. (You don't have to if you don't want to, of course.)
18583
18584 All the backends declare their public variables and functions by using a
18585 package called @code{nnoo}.
18586
18587 To inherit functions from other backends (and allow other backends to
18588 inherit functions from the current backend), you should use the
18589 following macros:
18590
18591 @table @code
18592
18593 @item nnoo-declare
18594 This macro declares the first parameter to be a child of the subsequent
18595 parameters. For instance:
18596
18597 @lisp
18598 (nnoo-declare nndir
18599 nnml nnmh)
18600 @end lisp
18601
18602 @code{nndir} has declared here that it intends to inherit functions from
18603 both @code{nnml} and @code{nnmh}.
18604
18605 @item defvoo
18606 This macro is equivalent to @code{defvar}, but registers the variable as
18607 a public server variable. Most state-oriented variables should be
18608 declared with @code{defvoo} instead of @code{defvar}.
18609
18610 In addition to the normal @code{defvar} parameters, it takes a list of
18611 variables in the parent backends to map the variable to when executing
18612 a function in those backends.
18613
18614 @lisp
18615 (defvoo nndir-directory nil
18616 "Where nndir will look for groups."
18617 nnml-current-directory nnmh-current-directory)
18618 @end lisp
18619
18620 This means that @code{nnml-current-directory} will be set to
18621 @code{nndir-directory} when an @code{nnml} function is called on behalf
18622 of @code{nndir}. (The same with @code{nnmh}.)
18623
18624 @item nnoo-define-basics
18625 This macro defines some common functions that almost all backends should
18626 have.
18627
18628 @example
18629 (nnoo-define-basics nndir)
18630 @end example
18631
18632 @item deffoo
18633 This macro is just like @code{defun} and takes the same parameters. In
18634 addition to doing the normal @code{defun} things, it registers the
18635 function as being public so that other backends can inherit it.
18636
18637 @item nnoo-map-functions
18638 This macro allows mapping of functions from the current backend to
18639 functions from the parent backends.
18640
18641 @example
18642 (nnoo-map-functions nndir
18643 (nnml-retrieve-headers 0 nndir-current-group 0 0)
18644 (nnmh-request-article 0 nndir-current-group 0 0))
18645 @end example
18646
18647 This means that when @code{nndir-retrieve-headers} is called, the first,
18648 third, and fourth parameters will be passed on to
18649 @code{nnml-retrieve-headers}, while the second parameter is set to the
18650 value of @code{nndir-current-group}.
18651
18652 @item nnoo-import
18653 This macro allows importing functions from backends. It should be the
18654 last thing in the source file, since it will only define functions that
18655 haven't already been defined.
18656
18657 @example
18658 (nnoo-import nndir
18659 (nnmh
18660 nnmh-request-list
18661 nnmh-request-newgroups)
18662 (nnml))
18663 @end example
18664
18665 This means that calls to @code{nndir-request-list} should just be passed
18666 on to @code{nnmh-request-list}, while all public functions from
18667 @code{nnml} that haven't been defined in @code{nndir} yet should be
18668 defined now.
18669
18670 @end table
18671
18672 Below is a slightly shortened version of the @code{nndir} backend.
18673
18674 @lisp
18675 ;;; nndir.el --- single directory newsgroup access for Gnus
18676 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
18677
18678 ;;; Code:
18679
18680 (require 'nnheader)
18681 (require 'nnmh)
18682 (require 'nnml)
18683 (require 'nnoo)
18684 (eval-when-compile (require 'cl))
18685
18686 (nnoo-declare nndir
18687 nnml nnmh)
18688
18689 (defvoo nndir-directory nil
18690 "Where nndir will look for groups."
18691 nnml-current-directory nnmh-current-directory)
18692
18693 (defvoo nndir-nov-is-evil nil
18694 "*Non-nil means that nndir will never retrieve NOV headers."
18695 nnml-nov-is-evil)
18696
18697 (defvoo nndir-current-group "" nil nnml-current-group nnmh-current-group)
18698 (defvoo nndir-top-directory nil nil nnml-directory nnmh-directory)
18699 (defvoo nndir-get-new-mail nil nil nnml-get-new-mail nnmh-get-new-mail)
18700
18701 (defvoo nndir-status-string "" nil nnmh-status-string)
18702 (defconst nndir-version "nndir 1.0")
18703
18704 ;;; Interface functions.
18705
18706 (nnoo-define-basics nndir)
18707
18708 (deffoo nndir-open-server (server &optional defs)
18709 (setq nndir-directory
18710 (or (cadr (assq 'nndir-directory defs))
18711 server))
18712 (unless (assq 'nndir-directory defs)
18713 (push `(nndir-directory ,server) defs))
18714 (push `(nndir-current-group
18715 ,(file-name-nondirectory (directory-file-name nndir-directory)))
18716 defs)
18717 (push `(nndir-top-directory
18718 ,(file-name-directory (directory-file-name nndir-directory)))
18719 defs)
18720 (nnoo-change-server 'nndir server defs))
18721
18722 (nnoo-map-functions nndir
18723 (nnml-retrieve-headers 0 nndir-current-group 0 0)
18724 (nnmh-request-article 0 nndir-current-group 0 0)
18725 (nnmh-request-group nndir-current-group 0 0)
18726 (nnmh-close-group nndir-current-group 0))
18727
18728 (nnoo-import nndir
18729 (nnmh
18730 nnmh-status-message
18731 nnmh-request-list
18732 nnmh-request-newgroups))
18733
18734 (provide 'nndir)
18735 @end lisp
18736
18737
18738 @node Hooking New Backends Into Gnus
18739 @subsubsection Hooking New Backends Into Gnus
18740
18741 @vindex gnus-valid-select-methods
18742 Having Gnus start using your new backend is rather easy---you just
18743 declare it with the @code{gnus-declare-backend} functions. This will
18744 enter the backend into the @code{gnus-valid-select-methods} variable.
18745
18746 @code{gnus-declare-backend} takes two parameters---the backend name and
18747 an arbitrary number of @dfn{abilities}.
18748
18749 Here's an example:
18750
18751 @lisp
18752 (gnus-declare-backend "nnchoke" 'mail 'respool 'address)
18753 @end lisp
18754
18755 The abilities can be:
18756
18757 @table @code
18758 @item mail
18759 This is a mailish backend---followups should (probably) go via mail.
18760 @item post
18761 This is a newsish backend---followups should (probably) go via news.
18762 @item post-mail
18763 This backend supports both mail and news.
18764 @item none
18765 This is neither a post nor mail backend---it's something completely
18766 different.
18767 @item respool
18768 It supports respooling---or rather, it is able to modify its source
18769 articles and groups.
18770 @item address
18771 The name of the server should be in the virtual server name. This is
18772 true for almost all backends.
18773 @item prompt-address
18774 The user should be prompted for an address when doing commands like
18775 @kbd{B} in the group buffer. This is true for backends like
18776 @code{nntp}, but not @code{nnmbox}, for instance.
18777 @end table
18778
18779
18780 @node Mail-like Backends
18781 @subsubsection Mail-like Backends
18782
18783 One of the things that separate the mail backends from the rest of the
18784 backends is the heavy dependence by the mail backends on common
18785 functions in @file{nnmail.el}. For instance, here's the definition of
18786 @code{nnml-request-scan}:
18787
18788 @lisp
18789 (deffoo nnml-request-scan (&optional group server)
18790 (setq nnml-article-file-alist nil)
18791 (nnmail-get-new-mail 'nnml 'nnml-save-nov nnml-directory group))
18792 @end lisp
18793
18794 It simply calls @code{nnmail-get-new-mail} with a few parameters,
18795 and @code{nnmail} takes care of all the moving and splitting of the
18796 mail.
18797
18798 This function takes four parameters.
18799
18800 @table @var
18801 @item method
18802 This should be a symbol to designate which backend is responsible for
18803 the call.
18804
18805 @item exit-function
18806 This function should be called after the splitting has been performed.
18807
18808 @item temp-directory
18809 Where the temporary files should be stored.
18810
18811 @item group
18812 This optional argument should be a group name if the splitting is to be
18813 performed for one group only.
18814 @end table
18815
18816 @code{nnmail-get-new-mail} will call @var{backend}@code{-save-mail} to
18817 save each article. @var{backend}@code{-active-number} will be called to
18818 find the article number assigned to this article.
18819
18820 The function also uses the following variables:
18821 @var{backend}@code{-get-new-mail} (to see whether to get new mail for
18822 this backend); and @var{backend}@code{-group-alist} and
18823 @var{backend}@code{-active-file} to generate the new active file.
18824 @var{backend}@code{-group-alist} should be a group-active alist, like
18825 this:
18826
18827 @example
18828 (("a-group" (1 . 10))
18829 ("some-group" (34 . 39)))
18830 @end example
18831
18832
18833 @node Score File Syntax
18834 @subsection Score File Syntax
18835
18836 Score files are meant to be easily parseable, but yet extremely
18837 mallable. It was decided that something that had the same read syntax
18838 as an Emacs Lisp list would fit that spec.
18839
18840 Here's a typical score file:
18841
18842 @lisp
18843 (("summary"
18844 ("win95" -10000 nil s)
18845 ("Gnus"))
18846 ("from"
18847 ("Lars" -1000))
18848 (mark -100))
18849 @end lisp
18850
18851 BNF definition of a score file:
18852
18853 @example
18854 score-file = "" / "(" *element ")"
18855 element = rule / atom
18856 rule = string-rule / number-rule / date-rule
18857 string-rule = "(" quote string-header quote space *string-match ")"
18858 number-rule = "(" quote number-header quote space *number-match ")"
18859 date-rule = "(" quote date-header quote space *date-match ")"
18860 quote = <ascii 34>
18861 string-header = "subject" / "from" / "references" / "message-id" /
18862 "xref" / "body" / "head" / "all" / "followup"
18863 number-header = "lines" / "chars"
18864 date-header = "date"
18865 string-match = "(" quote <string> quote [ "" / [ space score [ "" /
18866 space date [ "" / [ space string-match-t ] ] ] ] ] ")"
18867 score = "nil" / <integer>
18868 date = "nil" / <natural number>
18869 string-match-t = "nil" / "s" / "substring" / "S" / "Substring" /
18870 "r" / "regex" / "R" / "Regex" /
18871 "e" / "exact" / "E" / "Exact" /
18872 "f" / "fuzzy" / "F" / "Fuzzy"
18873 number-match = "(" <integer> [ "" / [ space score [ "" /
18874 space date [ "" / [ space number-match-t ] ] ] ] ] ")"
18875 number-match-t = "nil" / "=" / "<" / ">" / ">=" / "<="
18876 date-match = "(" quote <string> quote [ "" / [ space score [ "" /
18877 space date [ "" / [ space date-match-t ] ] ] ] ")"
18878 date-match-t = "nil" / "at" / "before" / "after"
18879 atom = "(" [ required-atom / optional-atom ] ")"
18880 required-atom = mark / expunge / mark-and-expunge / files /
18881 exclude-files / read-only / touched
18882 optional-atom = adapt / local / eval
18883 mark = "mark" space nil-or-number
18884 nil-or-number = "nil" / <integer>
18885 expunge = "expunge" space nil-or-number
18886 mark-and-expunge = "mark-and-expunge" space nil-or-number
18887 files = "files" *[ space <string> ]
18888 exclude-files = "exclude-files" *[ space <string> ]
18889 read-only = "read-only" [ space "nil" / space "t" ]
18890 adapt = "adapt" [ space "ignore" / space "t" / space adapt-rule ]
18891 adapt-rule = "(" *[ <string> *[ "(" <string> <integer> ")" ] ")"
18892 local = "local" *[ space "(" <string> space <form> ")" ]
18893 eval = "eval" space <form>
18894 space = *[ " " / <TAB> / <NEWLINE> ]
18895 @end example
18896
18897 Any unrecognized elements in a score file should be ignored, but not
18898 discarded.
18899
18900 As you can see, white space is needed, but the type and amount of white
18901 space is irrelevant. This means that formatting of the score file is
18902 left up to the programmer---if it's simpler to just spew it all out on
18903 one looong line, then that's ok.
18904
18905 The meaning of the various atoms are explained elsewhere in this
18906 manual (@pxref{Score File Format}).
18907
18908
18909 @node Headers
18910 @subsection Headers
18911
18912 Internally Gnus uses a format for storing article headers that
18913 corresponds to the @sc{nov} format in a mysterious fashion. One could
18914 almost suspect that the author looked at the @sc{nov} specification and
18915 just shamelessly @emph{stole} the entire thing, and one would be right.
18916
18917 @dfn{Header} is a severely overloaded term. ``Header'' is used in
18918 RFC1036 to talk about lines in the head of an article (e.g.,
18919 @code{From}). It is used by many people as a synonym for
18920 ``head''---``the header and the body''. (That should be avoided, in my
18921 opinion.) And Gnus uses a format internally that it calls ``header'',
18922 which is what I'm talking about here. This is a 9-element vector,
18923 basically, with each header (ouch) having one slot.
18924
18925 These slots are, in order: @code{number}, @code{subject}, @code{from},
18926 @code{date}, @code{id}, @code{references}, @code{chars}, @code{lines},
18927 @code{xref}. There are macros for accessing and setting these
18928 slots---they all have predictable names beginning with
18929 @code{mail-header-} and @code{mail-header-set-}, respectively.
18930
18931 The @code{xref} slot is really a @code{misc} slot. Any extra info will
18932 be put in there.
18933
18934
18935 @node Ranges
18936 @subsection Ranges
18937
18938 @sc{gnus} introduced a concept that I found so useful that I've started
18939 using it a lot and have elaborated on it greatly.
18940
18941 The question is simple: If you have a large amount of objects that are
18942 identified by numbers (say, articles, to take a @emph{wild} example)
18943 that you want to qualify as being ``included'', a normal sequence isn't
18944 very useful. (A 200,000 length sequence is a bit long-winded.)
18945
18946 The solution is as simple as the question: You just collapse the
18947 sequence.
18948
18949 @example
18950 (1 2 3 4 5 6 10 11 12)
18951 @end example
18952
18953 is transformed into
18954
18955 @example
18956 ((1 . 6) (10 . 12))
18957 @end example
18958
18959 To avoid having those nasty @samp{(13 . 13)} elements to denote a
18960 lonesome object, a @samp{13} is a valid element:
18961
18962 @example
18963 ((1 . 6) 7 (10 . 12))
18964 @end example
18965
18966 This means that comparing two ranges to find out whether they are equal
18967 is slightly tricky:
18968
18969 @example
18970 ((1 . 5) 7 8 (10 . 12))
18971 @end example
18972
18973 and
18974
18975 @example
18976 ((1 . 5) (7 . 8) (10 . 12))
18977 @end example
18978
18979 are equal. In fact, any non-descending list is a range:
18980
18981 @example
18982 (1 2 3 4 5)
18983 @end example
18984
18985 is a perfectly valid range, although a pretty long-winded one. This is
18986 also valid:
18987
18988 @example
18989 (1 . 5)
18990 @end example
18991
18992 and is equal to the previous range.
18993
18994 Here's a BNF definition of ranges. Of course, one must remember the
18995 semantic requirement that the numbers are non-descending. (Any number
18996 of repetition of the same number is allowed, but apt to disappear in
18997 range handling.)
18998
18999 @example
19000 range = simple-range / normal-range
19001 simple-range = "(" number " . " number ")"
19002 normal-range = "(" start-contents ")"
19003 contents = "" / simple-range *[ " " contents ] /
19004 number *[ " " contents ]
19005 @end example
19006
19007 Gnus currently uses ranges to keep track of read articles and article
19008 marks. I plan on implementing a number of range operators in C if The
19009 Powers That Be are willing to let me. (I haven't asked yet, because I
19010 need to do some more thinking on what operators I need to make life
19011 totally range-based without ever having to convert back to normal
19012 sequences.)
19013
19014
19015 @node Group Info
19016 @subsection Group Info
19017
19018 Gnus stores all permanent info on groups in a @dfn{group info} list.
19019 This list is from three to six elements (or more) long and exhaustively
19020 describes the group.
19021
19022 Here are two example group infos; one is a very simple group while the
19023 second is a more complex one:
19024
19025 @example
19026 ("no.group" 5 (1 . 54324))
19027
19028 ("nnml:my.mail" 3 ((1 . 5) 9 (20 . 55))
19029 ((tick (15 . 19)) (replied 3 6 (19 . 3)))
19030 (nnml "")
19031 ((auto-expire . t) (to-address . "ding@@gnus.org")))
19032 @end example
19033
19034 The first element is the @dfn{group name}---as Gnus knows the group,
19035 anyway. The second element is the @dfn{subscription level}, which
19036 normally is a small integer. (It can also be the @dfn{rank}, which is a
19037 cons cell where the @code{car} is the level and the @code{cdr} is the
19038 score.) The third element is a list of ranges of read articles. The
19039 fourth element is a list of lists of article marks of various kinds.
19040 The fifth element is the select method (or virtual server, if you like).
19041 The sixth element is a list of @dfn{group parameters}, which is what
19042 this section is about.
19043
19044 Any of the last three elements may be missing if they are not required.
19045 In fact, the vast majority of groups will normally only have the first
19046 three elements, which saves quite a lot of cons cells.
19047
19048 Here's a BNF definition of the group info format:
19049
19050 @example
19051 info = "(" group space ralevel space read
19052 [ "" / [ space marks-list [ "" / [ space method [ "" /
19053 space parameters ] ] ] ] ] ")"
19054 group = quote <string> quote
19055 ralevel = rank / level
19056 level = <integer in the range of 1 to inf>
19057 rank = "(" level "." score ")"
19058 score = <integer in the range of 1 to inf>
19059 read = range
19060 marks-lists = nil / "(" *marks ")"
19061 marks = "(" <string> range ")"
19062 method = "(" <string> *elisp-forms ")"
19063 parameters = "(" *elisp-forms ")"
19064 @end example
19065
19066 Actually that @samp{marks} rule is a fib. A @samp{marks} is a
19067 @samp{<string>} consed on to a @samp{range}, but that's a bitch to say
19068 in pseudo-BNF.
19069
19070 If you have a Gnus info and want to access the elements, Gnus offers a
19071 series of macros for getting/setting these elements.
19072
19073 @table @code
19074 @item gnus-info-group
19075 @itemx gnus-info-set-group
19076 @findex gnus-info-group
19077 @findex gnus-info-set-group
19078 Get/set the group name.
19079
19080 @item gnus-info-rank
19081 @itemx gnus-info-set-rank
19082 @findex gnus-info-rank
19083 @findex gnus-info-set-rank
19084 Get/set the group rank (@pxref{Group Score}).
19085
19086 @item gnus-info-level
19087 @itemx gnus-info-set-level
19088 @findex gnus-info-level
19089 @findex gnus-info-set-level
19090 Get/set the group level.
19091
19092 @item gnus-info-score
19093 @itemx gnus-info-set-score
19094 @findex gnus-info-score
19095 @findex gnus-info-set-score
19096 Get/set the group score (@pxref{Group Score}).
19097
19098 @item gnus-info-read
19099 @itemx gnus-info-set-read
19100 @findex gnus-info-read
19101 @findex gnus-info-set-read
19102 Get/set the ranges of read articles.
19103
19104 @item gnus-info-marks
19105 @itemx gnus-info-set-marks
19106 @findex gnus-info-marks
19107 @findex gnus-info-set-marks
19108 Get/set the lists of ranges of marked articles.
19109
19110 @item gnus-info-method
19111 @itemx gnus-info-set-method
19112 @findex gnus-info-method
19113 @findex gnus-info-set-method
19114 Get/set the group select method.
19115
19116 @item gnus-info-params
19117 @itemx gnus-info-set-params
19118 @findex gnus-info-params
19119 @findex gnus-info-set-params
19120 Get/set the group parameters.
19121 @end table
19122
19123 All the getter functions take one parameter---the info list. The setter
19124 functions take two parameters---the info list and the new value.
19125
19126 The last three elements in the group info aren't mandatory, so it may be
19127 necessary to extend the group info before setting the element. If this
19128 is necessary, you can just pass on a non-@code{nil} third parameter to
19129 the three final setter functions to have this happen automatically.
19130
19131
19132 @node Extended Interactive
19133 @subsection Extended Interactive
19134 @cindex interactive
19135 @findex gnus-interactive
19136
19137 Gnus extends the standard Emacs @code{interactive} specification
19138 slightly to allow easy use of the symbolic prefix (@pxref{Symbolic
19139 Prefixes}). Here's an example of how this is used:
19140
19141 @lisp
19142 (defun gnus-summary-increase-score (&optional score symp)
19143 (interactive (gnus-interactive "P\ny"))
19144 ...
19145 )
19146 @end lisp
19147
19148 The best thing to do would have been to implement
19149 @code{gnus-interactive} as a macro which would have returned an
19150 @code{interactive} form, but this isn't possible since Emacs checks
19151 whether a function is interactive or not by simply doing an @code{assq}
19152 on the lambda form. So, instead we have @code{gnus-interactive}
19153 function that takes a string and returns values that are usable to
19154 @code{interactive}.
19155
19156 This function accepts (almost) all normal @code{interactive} specs, but
19157 adds a few more.
19158
19159 @table @samp
19160 @item y
19161 @vindex gnus-current-prefix-symbol
19162 The current symbolic prefix---the @code{gnus-current-prefix-symbol}
19163 variable.
19164
19165 @item Y
19166 @vindex gnus-current-prefix-symbols
19167 A list of the current symbolic prefixes---the
19168 @code{gnus-current-prefix-symbol} variable.
19169
19170 @item A
19171 The current article number---the @code{gnus-summary-article-number}
19172 function.
19173
19174 @item H
19175 The current article header---the @code{gnus-summary-article-header}
19176 function.
19177
19178 @item g
19179 The current group name---the @code{gnus-group-group-name}
19180 function.
19181
19182 @end table
19183
19184
19185 @node Emacs/XEmacs Code
19186 @subsection Emacs/XEmacs Code
19187 @cindex XEmacs
19188 @cindex Emacsen
19189
19190 While Gnus runs under Emacs, XEmacs and Mule, I decided that one of the
19191 platforms must be the primary one. I chose Emacs. Not because I don't
19192 like XEmacs or Mule, but because it comes first alphabetically.
19193
19194 This means that Gnus will byte-compile under Emacs with nary a warning,
19195 while XEmacs will pump out gigabytes of warnings while byte-compiling.
19196 As I use byte-compilation warnings to help me root out trivial errors in
19197 Gnus, that's very useful.
19198
19199 I've also consistently used Emacs function interfaces, but have used
19200 Gnusey aliases for the functions. To take an example: Emacs defines a
19201 @code{run-at-time} function while XEmacs defines a @code{start-itimer}
19202 function. I then define a function called @code{gnus-run-at-time} that
19203 takes the same parameters as the Emacs @code{run-at-time}. When running
19204 Gnus under Emacs, the former function is just an alias for the latter.
19205 However, when running under XEmacs, the former is an alias for the
19206 following function:
19207
19208 @lisp
19209 (defun gnus-xmas-run-at-time (time repeat function &rest args)
19210 (start-itimer
19211 "gnus-run-at-time"
19212 `(lambda ()
19213 (,function ,@@args))
19214 time repeat))
19215 @end lisp
19216
19217 This sort of thing has been done for bunches of functions. Gnus does
19218 not redefine any native Emacs functions while running under XEmacs---it
19219 does this @code{defalias} thing with Gnus equivalents instead. Cleaner
19220 all over.
19221
19222 In the cases where the XEmacs function interface was obviously cleaner,
19223 I used it instead. For example @code{gnus-region-active-p} is an alias
19224 for @code{region-active-p} in XEmacs, whereas in Emacs it is a function.
19225
19226 Of course, I could have chosen XEmacs as my native platform and done
19227 mapping functions the other way around. But I didn't. The performance
19228 hit these indirections impose on Gnus under XEmacs should be slight.
19229
19230
19231 @node Various File Formats
19232 @subsection Various File Formats
19233
19234 @menu
19235 * Active File Format:: Information on articles and groups available.
19236 * Newsgroups File Format:: Group descriptions.
19237 @end menu
19238
19239
19240 @node Active File Format
19241 @subsubsection Active File Format
19242
19243 The active file lists all groups available on the server in
19244 question. It also lists the highest and lowest current article numbers
19245 in each group.
19246
19247 Here's an excerpt from a typical active file:
19248
19249 @example
19250 soc.motss 296030 293865 y
19251 alt.binaries.pictures.fractals 3922 3913 n
19252 comp.sources.unix 1605 1593 m
19253 comp.binaries.ibm.pc 5097 5089 y
19254 no.general 1000 900 y
19255 @end example
19256
19257 Here's a pseudo-BNF definition of this file:
19258
19259 @example
19260 active = *group-line
19261 group-line = group space high-number space low-number space flag <NEWLINE>
19262 group = <non-white-space string>
19263 space = " "
19264 high-number = <non-negative integer>
19265 low-number = <positive integer>
19266 flag = "y" / "n" / "m" / "j" / "x" / "=" group
19267 @end example
19268
19269 For a full description of this file, see the manual pages for
19270 @samp{innd}, in particular @samp{active(5)}.
19271
19272
19273 @node Newsgroups File Format
19274 @subsubsection Newsgroups File Format
19275
19276 The newsgroups file lists groups along with their descriptions. Not all
19277 groups on the server have to be listed, and not all groups in the file
19278 have to exist on the server. The file is meant purely as information to
19279 the user.
19280
19281 The format is quite simple; a group name, a tab, and the description.
19282 Here's the definition:
19283
19284 @example
19285 newsgroups = *line
19286 line = group tab description <NEWLINE>
19287 group = <non-white-space string>
19288 tab = <TAB>
19289 description = <string>
19290 @end example
19291
19292
19293 @page
19294 @node Emacs for Heathens
19295 @section Emacs for Heathens
19296
19297 Believe it or not, but some people who use Gnus haven't really used
19298 Emacs much before they embarked on their journey on the Gnus Love Boat.
19299 If you are one of those unfortunates whom ``@kbd{M-C-a}'', ``kill the
19300 region'', and ``set @code{gnus-flargblossen} to an alist where the key
19301 is a regexp that is used for matching on the group name'' are magical
19302 phrases with little or no meaning, then this appendix is for you. If
19303 you are already familiar with Emacs, just ignore this and go fondle your
19304 cat instead.
19305
19306 @menu
19307 * Keystrokes:: Entering text and executing commands.
19308 * Emacs Lisp:: The built-in Emacs programming language.
19309 @end menu
19310
19311
19312 @node Keystrokes
19313 @subsection Keystrokes
19314
19315 @itemize @bullet
19316 @item
19317 Q: What is an experienced Emacs user?
19318
19319 @item
19320 A: A person who wishes that the terminal had pedals.
19321 @end itemize
19322
19323 Yes, when you use Emacs, you are apt to use the control key, the shift
19324 key and the meta key a lot. This is very annoying to some people
19325 (notably @code{vi}le users), and the rest of us just love the hell out
19326 of it. Just give up and submit. Emacs really does stand for
19327 ``Escape-Meta-Alt-Control-Shift'', and not ``Editing Macros'', as you
19328 may have heard from other disreputable sources (like the Emacs author).
19329
19330 The shift keys are normally located near your pinky fingers, and are
19331 normally used to get capital letters and stuff. You probably use it all
19332 the time. The control key is normally marked ``CTRL'' or something like
19333 that. The meta key is, funnily enough, never marked as such on any
19334 keyboard. The one I'm currently at has a key that's marked ``Alt'',
19335 which is the meta key on this keyboard. It's usually located somewhere
19336 to the left hand side of the keyboard, usually on the bottom row.
19337
19338 Now, us Emacs people don't say ``press the meta-control-m key'',
19339 because that's just too inconvenient. We say ``press the @kbd{M-C-m}
19340 key''. @kbd{M-} is the prefix that means ``meta'' and ``C-'' is the
19341 prefix that means ``control''. So ``press @kbd{C-k}'' means ``press
19342 down the control key, and hold it down while you press @kbd{k}''.
19343 ``Press @kbd{M-C-k}'' means ``press down and hold down the meta key and
19344 the control key and then press @kbd{k}''. Simple, ay?
19345
19346 This is somewhat complicated by the fact that not all keyboards have a
19347 meta key. In that case you can use the ``escape'' key. Then @kbd{M-k}
19348 means ``press escape, release escape, press @kbd{k}''. That's much more
19349 work than if you have a meta key, so if that's the case, I respectfully
19350 suggest you get a real keyboard with a meta key. You can't live without
19351 it.
19352
19353
19354
19355 @node Emacs Lisp
19356 @subsection Emacs Lisp
19357
19358 Emacs is the King of Editors because it's really a Lisp interpreter.
19359 Each and every key you tap runs some Emacs Lisp code snippet, and since
19360 Emacs Lisp is an interpreted language, that means that you can configure
19361 any key to run any arbitrary code. You just, like, do it.
19362
19363 Gnus is written in Emacs Lisp, and is run as a bunch of interpreted
19364 functions. (These are byte-compiled for speed, but it's still
19365 interpreted.) If you decide that you don't like the way Gnus does
19366 certain things, it's trivial to have it do something a different way.
19367 (Well, at least if you know how to write Lisp code.) However, that's
19368 beyond the scope of this manual, so we are simply going to talk about
19369 some common constructs that you normally use in your @file{.emacs} file
19370 to customize Gnus.
19371
19372 If you want to set the variable @code{gnus-florgbnize} to four (4), you
19373 write the following:
19374
19375 @lisp
19376 (setq gnus-florgbnize 4)
19377 @end lisp
19378
19379 This function (really ``special form'') @code{setq} is the one that can
19380 set a variable to some value. This is really all you need to know. Now
19381 you can go and fill your @code{.emacs} file with lots of these to change
19382 how Gnus works.
19383
19384 If you have put that thing in your @code{.emacs} file, it will be read
19385 and @code{eval}ed (which is lisp-ese for ``run'') the next time you
19386 start Emacs. If you want to change the variable right away, simply say
19387 @kbd{C-x C-e} after the closing parenthesis. That will @code{eval} the
19388 previous ``form'', which is a simple @code{setq} statement here.
19389
19390 Go ahead---just try it, if you're located at your Emacs. After you
19391 @kbd{C-x C-e}, you will see @samp{4} appear in the echo area, which
19392 is the return value of the form you @code{eval}ed.
19393
19394 Some pitfalls:
19395
19396 If the manual says ``set @code{gnus-read-active-file} to @code{some}'',
19397 that means:
19398
19399 @lisp
19400 (setq gnus-read-active-file 'some)
19401 @end lisp
19402
19403 On the other hand, if the manual says ``set @code{gnus-nntp-server} to
19404 @samp{nntp.ifi.uio.no}'', that means:
19405
19406 @lisp
19407 (setq gnus-nntp-server "nntp.ifi.uio.no")
19408 @end lisp
19409
19410 So be careful not to mix up strings (the latter) with symbols (the
19411 former). The manual is unambiguous, but it can be confusing.
19412
19413 @page
19414 @include gnus-faq.texi
19415
19416 @node Index
19417 @chapter Index
19418 @printindex cp
19419
19420 @node Key Index
19421 @chapter Key Index
19422 @printindex ky
19423
19424 @summarycontents
19425 @contents
19426 @bye
19427
19428
19429 @c End:
19430