Fix more minor mode docstrings.
[bpt/emacs.git] / doc / emacs / rmail.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
73b0cd50 2@c Copyright (C) 1985-1987, 1993-1995, 1997, 2001-2011
8838673e 3@c Free Software Foundation, Inc.
6bf7aab6 4@c See file emacs.texi for copying conditions.
856ce114 5@node Rmail
6bf7aab6
DL
6@chapter Reading Mail with Rmail
7@cindex Rmail
8@cindex reading mail
9@findex rmail
10@findex rmail-mode
11@vindex rmail-mode-hook
12
9dd617a6 13 Rmail is an Emacs subsystem for reading and disposing of mail that
49b5c0e8 14you receive. Rmail stores mail messages in files called Rmail files.
9d5de6f8 15Reading the messages in an Rmail file is done in a special major mode,
49b5c0e8 16Rmail mode, which redefines most letters to run commands for managing mail.
6bf7aab6
DL
17@menu
18* Basic: Rmail Basics. Basic concepts of Rmail, and simple use.
19* Scroll: Rmail Scrolling. Scrolling through a message.
20* Motion: Rmail Motion. Moving to another message.
21* Deletion: Rmail Deletion. Deleting and expunging messages.
22* Inbox: Rmail Inbox. How mail gets into the Rmail file.
23* Files: Rmail Files. Using multiple Rmail files.
8838673e 24* Output: Rmail Output. Copying messages out to files.
6bf7aab6
DL
25* Labels: Rmail Labels. Classifying messages by labeling them.
26* Attrs: Rmail Attributes. Certain standard labels, called attributes.
27* Reply: Rmail Reply. Sending replies to messages you are viewing.
28* Summary: Rmail Summary. Summaries show brief info on many messages.
29* Sort: Rmail Sorting. Sorting messages in Rmail.
30* Display: Rmail Display. How Rmail displays a message; customization.
358f71fd 31* Coding: Rmail Coding. How Rmail handles decoding character sets.
6bf7aab6
DL
32* Editing: Rmail Editing. Editing message text and headers in Rmail.
33* Digest: Rmail Digest. Extracting the messages from a digest message.
8838673e 34* Rot13: Rmail Rot13. Reading messages encoded in the rot13 code.
ea20444b 35* Movemail:: More details of fetching new mail.
79fc530e
GM
36* Remote Mailboxes:: Retrieving mail from remote mailboxes.
37* Other Mailbox Formats:: Retrieving mail from local mailboxes in
38 various formats.
6bf7aab6
DL
39@end menu
40
41@node Rmail Basics
42@section Basic Concepts of Rmail
43
44@cindex primary Rmail file
45@vindex rmail-file-name
46 Using Rmail in the simplest fashion, you have one Rmail file
47@file{~/RMAIL} in which all of your mail is saved. It is called your
48@dfn{primary Rmail file}. The command @kbd{M-x rmail} reads your primary
49Rmail file, merges new mail in from your inboxes, displays the first
50message you haven't read yet, and lets you begin reading. The variable
51@code{rmail-file-name} specifies the name of the primary Rmail file.
52
5f50b807 53 Rmail displays only one message in the Rmail file at a time.
6bf7aab6
DL
54The message that is shown is called the @dfn{current message}. Rmail
55mode's special commands can do such things as delete the current
56message, copy it into another file, send a reply, or move to another
57message. You can also create multiple Rmail files and use Rmail to move
58messages between them.
59
60@cindex message number
61 Within the Rmail file, messages are normally arranged sequentially in
04242bdc
GM
62order of receipt; you can specify other ways to sort them (@pxref{Rmail
63Sorting}). Messages are identified by consecutive integers which are
64their @dfn{message numbers}. The number of the current message is
65displayed in Rmail's mode line, followed by the total number of messages
66in the file. You can move to a message by specifying its message number
67with the @kbd{j} key (@pxref{Rmail Motion}).
6bf7aab6
DL
68
69@kindex s @r{(Rmail)}
00aa62e5 70@findex rmail-expunge-and-save
6bf7aab6 71 Following the usual conventions of Emacs, changes in an Rmail file
9dd617a6 72become permanent only when you save the file. You can save it with
00aa62e5
RS
73@kbd{s} (@code{rmail-expunge-and-save}), which also expunges deleted
74messages from the file first (@pxref{Rmail Deletion}). To save the
75file without expunging, use @kbd{C-x C-s}. Rmail also saves the Rmail
76file after merging new mail from an inbox file (@pxref{Rmail Inbox}).
6bf7aab6
DL
77
78@kindex q @r{(Rmail)}
79@findex rmail-quit
80@kindex b @r{(Rmail)}
81@findex rmail-bury
32823124
LT
82 You can exit Rmail with @kbd{q} (@code{rmail-quit}); this expunges
83and saves the Rmail file, then buries the Rmail buffer as well as its
d190d8c8 84summary buffer, if present (@pxref{Rmail Summary}). But there is no
32823124 85need to ``exit'' formally. If you switch from Rmail to editing in
9dd617a6
RS
86other buffers, and never switch back, you have exited. Just make sure
87to save the Rmail file eventually (like any other file you have
88changed). @kbd{C-x s} is a suitable way to do this (@pxref{Save
89Commands}). The Rmail command @kbd{b}, @code{rmail-bury}, buries the
90Rmail buffer and its summary buffer without expunging and saving the
91Rmail file.
6bf7aab6
DL
92
93@node Rmail Scrolling
94@section Scrolling Within a Message
95
96 When Rmail displays a message that does not fit on the screen, you
177c0ea7 97must scroll through it to read the rest. You could do this with
6bf7aab6 98@kbd{C-v}, @kbd{M-v} and @kbd{M-<}, but in Rmail scrolling is so
9dd617a6 99frequent that it deserves to be easier.
6bf7aab6
DL
100
101@table @kbd
102@item @key{SPC}
550f41cd 103Scroll forward (@code{scroll-up-command}).
6bf7aab6 104@item @key{DEL}
550f41cd 105Scroll backward (@code{scroll-down-command}).
6bf7aab6
DL
106@item .
107Scroll to start of message (@code{rmail-beginning-of-message}).
a941a443
CY
108@item /
109Scroll to end of message (@code{rmail-end-of-message}).
6bf7aab6
DL
110@end table
111
112@kindex SPC @r{(Rmail)}
113@kindex DEL @r{(Rmail)}
550f41cd
CY
114 Since the most common thing to do while reading a message is to
115scroll through it by screenfuls, Rmail makes @key{SPC} and @key{DEL}
116do the same as @kbd{C-v} (@code{scroll-up-command}) and @kbd{M-v}
117(@code{scroll-down-command}) respectively.
6bf7aab6
DL
118
119@kindex . @r{(Rmail)}
a941a443 120@kindex / @r{(Rmail)}
6bf7aab6 121@findex rmail-beginning-of-message
a941a443 122@findex rmail-end-of-message
6bf7aab6
DL
123 The command @kbd{.} (@code{rmail-beginning-of-message}) scrolls back to the
124beginning of the selected message. This is not quite the same as @kbd{M-<}:
125for one thing, it does not set the mark; for another, it resets the buffer
04242bdc 126boundaries of the current message if you have changed them. Similarly,
a941a443
CY
127the command @kbd{/} (@code{rmail-end-of-message}) scrolls forward to the end
128of the selected message.
9d5de6f8
GM
129@c The comment about buffer boundaries is still true in mbox Rmail, if
130@c less likely to be relevant.
6bf7aab6
DL
131
132@node Rmail Motion
133@section Moving Among Messages
134
135 The most basic thing to do with a message is to read it. The way to
136do this in Rmail is to make the message current. The usual practice is
137to move sequentially through the file, since this is the order of
138receipt of messages. When you enter Rmail, you are positioned at the
139first message that you have not yet made current (that is, the first one
140that has the @samp{unseen} attribute; @pxref{Rmail Attributes}). Move
b8f86df3 141forward to see the other new messages; move backward to re-examine old
6bf7aab6
DL
142messages.
143
144@table @kbd
145@item n
146Move to the next nondeleted message, skipping any intervening deleted
147messages (@code{rmail-next-undeleted-message}).
148@item p
149Move to the previous nondeleted message
150(@code{rmail-previous-undeleted-message}).
151@item M-n
152Move to the next message, including deleted messages
153(@code{rmail-next-message}).
154@item M-p
155Move to the previous message, including deleted messages
156(@code{rmail-previous-message}).
505e70c3
GM
157@item C-c C-n
158Move to the next message with the same subject as the current one
159(@code{rmail-next-same-subject}).
160@item C-c C-p
161Move to the previous message with the same subject as the current one
162(@code{rmail-previous-same-subject}).
6bf7aab6
DL
163@item j
164Move to the first message. With argument @var{n}, move to
165message number @var{n} (@code{rmail-show-message}).
166@item >
167Move to the last message (@code{rmail-last-message}).
168@item <
169Move to the first message (@code{rmail-first-message}).
170
171@item M-s @var{regexp} @key{RET}
172Move to the next message containing a match for @var{regexp}
173(@code{rmail-search}).
174
175@item - M-s @var{regexp} @key{RET}
176Move to the previous message containing a match for @var{regexp}.
177@end table
178
179@kindex n @r{(Rmail)}
180@kindex p @r{(Rmail)}
181@kindex M-n @r{(Rmail)}
182@kindex M-p @r{(Rmail)}
183@findex rmail-next-undeleted-message
184@findex rmail-previous-undeleted-message
185@findex rmail-next-message
186@findex rmail-previous-message
187 @kbd{n} and @kbd{p} are the usual way of moving among messages in
188Rmail. They move through the messages sequentially, but skip over
189deleted messages, which is usually what you want to do. Their command
190definitions are named @code{rmail-next-undeleted-message} and
191@code{rmail-previous-undeleted-message}. If you do not want to skip
192deleted messages---for example, if you want to move to a message to
193undelete it---use the variants @kbd{M-n} and @kbd{M-p}
194(@code{rmail-next-message} and @code{rmail-previous-message}). A
195numeric argument to any of these commands serves as a repeat
9dd617a6 196count.
6bf7aab6
DL
197
198 In Rmail, you can specify a numeric argument by typing just the
199digits. You don't need to type @kbd{C-u} first.
200
201@kindex M-s @r{(Rmail)}
202@findex rmail-search
203@cindex searching in Rmail
204 The @kbd{M-s} (@code{rmail-search}) command is Rmail's version of
205search. The usual incremental search command @kbd{C-s} works in Rmail,
206but it searches only within the current message. The purpose of
207@kbd{M-s} is to search for another message. It reads a regular
208expression (@pxref{Regexps}) nonincrementally, then searches starting at
209the beginning of the following message for a match. It then selects
210that message. If @var{regexp} is empty, @kbd{M-s} reuses the regexp
211used the previous time.
212
213 To search backward in the file for another message, give @kbd{M-s} a
9d5de6f8
GM
214negative argument. In Rmail you can do this with @kbd{- M-s}. This
215begins searching from the end of the previous message.
6bf7aab6
DL
216
217 It is also possible to search for a message based on labels.
218@xref{Rmail Labels}.
219
505e70c3
GM
220@kindex C-c C-n @r{(Rmail)}
221@kindex C-c C-p @r{(Rmail)}
222@findex rmail-next-same-subject
223@findex rmail-previous-same-subject
224 The @kbd{C-c C-n} (@code{rmail-next-same-subject}) command moves to
225the next message with the same subject as the current one. A prefix
226argument serves as a repeat count. With a negative argument, this
227command moves backward, acting like @kbd{C-c C-p}
749c6447 228(@code{rmail-previous-same-subject}). When comparing subjects, these
04242bdc 229commands ignore the prefixes typically added to the subjects of replies.
505e70c3 230
6bf7aab6
DL
231@kindex j @r{(Rmail)}
232@kindex > @r{(Rmail)}
233@kindex < @r{(Rmail)}
234@findex rmail-show-message
235@findex rmail-last-message
236@findex rmail-first-message
237 To move to a message specified by absolute message number, use @kbd{j}
238(@code{rmail-show-message}) with the message number as argument. With
239no argument, @kbd{j} selects the first message. @kbd{<}
240(@code{rmail-first-message}) also selects the first message. @kbd{>}
241(@code{rmail-last-message}) selects the last message.
242
243@node Rmail Deletion
244@section Deleting Messages
245
246@cindex deletion (Rmail)
247 When you no longer need to keep a message, you can @dfn{delete} it. This
248flags it as ignorable, and some Rmail commands pretend it is no longer
249present; but it still has its place in the Rmail file, and still has its
250message number.
251
252@cindex expunging (Rmail)
253 @dfn{Expunging} the Rmail file actually removes the deleted messages.
04242bdc
GM
254The remaining messages are renumbered consecutively.
255@c The following is neither true (there is also unforward, sorting,
256@c etc), nor especially interesting.
257@c Expunging is the only action that changes the message number of any
258@c message, except for undigestifying (@pxref{Rmail Digest}).
6bf7aab6
DL
259
260@table @kbd
261@item d
262Delete the current message, and move to the next nondeleted message
263(@code{rmail-delete-forward}).
264@item C-d
265Delete the current message, and move to the previous nondeleted
266message (@code{rmail-delete-backward}).
267@item u
9d5de6f8
GM
268Undelete the current message, or move back to the previous deleted
269message and undelete it (@code{rmail-undelete-previous-message}).
6bf7aab6
DL
270@item x
271Expunge the Rmail file (@code{rmail-expunge}).
272@end table
273
274@kindex d @r{(Rmail)}
275@kindex C-d @r{(Rmail)}
276@findex rmail-delete-forward
277@findex rmail-delete-backward
278 There are two Rmail commands for deleting messages. Both delete the
279current message and select another message. @kbd{d}
280(@code{rmail-delete-forward}) moves to the following message, skipping
281messages already deleted, while @kbd{C-d} (@code{rmail-delete-backward})
282moves to the previous nondeleted message. If there is no nondeleted
3d963b67
GM
283message to move to in the specified direction, the message that was just
284deleted remains current. @kbd{d} with a prefix argument is equivalent
285to @kbd{C-d}. Note that the Rmail summary versions of these commands
286behave slightly differently (@pxref{Rmail Summary Edit}).
6bf7aab6 287
9d5de6f8 288@c mention other hooks, eg show message hook?
6bf7aab6 289@vindex rmail-delete-message-hook
b8f86df3 290 Whenever Rmail deletes a message, it runs the hook
6bf7aab6
DL
291@code{rmail-delete-message-hook}. When the hook functions are invoked,
292the message has been marked deleted, but it is still the current message
293in the Rmail buffer.
294
295@cindex undeletion (Rmail)
296@kindex x @r{(Rmail)}
297@findex rmail-expunge
298@kindex u @r{(Rmail)}
299@findex rmail-undelete-previous-message
300 To make all the deleted messages finally vanish from the Rmail file,
301type @kbd{x} (@code{rmail-expunge}). Until you do this, you can still
302@dfn{undelete} the deleted messages. The undeletion command, @kbd{u}
303(@code{rmail-undelete-previous-message}), is designed to cancel the
304effect of a @kbd{d} command in most cases. It undeletes the current
305message if the current message is deleted. Otherwise it moves backward
306to previous messages until a deleted message is found, and undeletes
307that message.
308
309 You can usually undo a @kbd{d} with a @kbd{u} because the @kbd{u}
310moves back to and undeletes the message that the @kbd{d} deleted. But
311this does not work when the @kbd{d} skips a few already-deleted messages
312that follow the message being deleted; then the @kbd{u} command
313undeletes the last of the messages that were skipped. There is no clean
314way to avoid this problem. However, by repeating the @kbd{u} command,
315you can eventually get back to the message that you intend to
316undelete. You can also select a particular deleted message with
317the @kbd{M-p} command, then type @kbd{u} to undelete it.
318
319 A deleted message has the @samp{deleted} attribute, and as a result
320@samp{deleted} appears in the mode line when the current message is
321deleted. In fact, deleting or undeleting a message is nothing more than
322adding or removing this attribute. @xref{Rmail Attributes}.
323
324@node Rmail Inbox
325@section Rmail Files and Inboxes
326@cindex inbox file
327
1be48cfa
RS
328 When you receive mail locally, the operating system places incoming
329mail for you in a file that we call your @dfn{inbox}. When you start
330up Rmail, it runs a C program called @code{movemail} to copy the new
331messages from your local inbox into your primary Rmail file, which
332also contains other messages saved from previous Rmail sessions. It
333is in this file that you actually read the mail with Rmail. This
334operation is called @dfn{getting new mail}. You can get new mail at
335any time in Rmail by typing @kbd{g}.
6bf7aab6
DL
336
337@vindex rmail-primary-inbox-list
60a96371 338@cindex @env{MAIL} environment variable
6bf7aab6
DL
339 The variable @code{rmail-primary-inbox-list} contains a list of the
340files which are inboxes for your primary Rmail file. If you don't set
9d5de6f8
GM
341this variable explicitly, Rmail uses the @env{MAIL} environment
342variable, or, as a last resort, a default inbox based on
343@code{rmail-spool-directory}. The default inbox file depends on your
344operating system; often it is @file{/var/mail/@var{username}},
345@file{/var/spool/mail/@var{username}}, or
346@file{/usr/spool/mail/@var{username}}.
6bf7aab6 347
9d5de6f8
GM
348 You can specify the inbox file(s) for any Rmail file for the current
349session with the command @code{set-rmail-inbox-list}; see @ref{Rmail
350Files}.
6bf7aab6
DL
351
352 There are two reasons for having separate Rmail files and inboxes.
353
354@enumerate
355@item
356The inbox file format varies between operating systems and according to
357the other mail software in use. Only one part of Rmail needs to know
358about the alternatives, and it need only understand how to convert all
359of them to Rmail's own format.
360
361@item
362It is very cumbersome to access an inbox file without danger of losing
363mail, because it is necessary to interlock with mail delivery.
364Moreover, different operating systems use different interlocking
365techniques. The strategy of moving mail out of the inbox once and for
366all into a separate Rmail file avoids the need for interlocking in all
367the rest of Rmail, since only Rmail operates on the Rmail file.
368@end enumerate
369
9d5de6f8
GM
370 Rmail was originally written to use the Babyl format as its internal
371format. Since then, we have recognized that the usual inbox format
372(@samp{mbox}) on Unix and GNU systems is adequate for the job, and so
373since Emacs 23 Rmail uses that as its internal format. The Rmail file
374is still separate from the inbox file, even though their format is the
375same.
6bf7aab6 376
1be48cfa 377@vindex rmail-preserve-inbox
9dd617a6
RS
378 When getting new mail, Rmail first copies the new mail from the
379inbox file to the Rmail file; then it saves the Rmail file; then it
380clears out the inbox file. This way, a system crash may cause
381duplication of mail between the inbox and the Rmail file, but cannot
382lose mail. If @code{rmail-preserve-inbox} is non-@code{nil}, then
383Rmail does not clear out the inbox file when it gets new mail. You
384may wish to set this, for example, on a portable computer you use to
385check your mail via POP while traveling, so that your mail will remain
386on the server and you can save it later on your workstation.
1be48cfa
RS
387
388 In some cases, Rmail copies the new mail from the inbox file
389indirectly. First it runs the @code{movemail} program to move the mail
390from the inbox to an intermediate file called
9d5de6f8
GM
391@file{.newmail-@var{inboxname}}, in the same directory as the Rmail
392file. Then Rmail merges the new mail from that file, saves the Rmail
393file, and only then deletes the intermediate file. If there is a crash
394at the wrong time, this file continues to exist, and Rmail will use it
395again the next time it gets new mail from that inbox.
1be48cfa
RS
396
397 If Rmail is unable to convert the data in
9d5de6f8
GM
398@file{.newmail-@var{inboxname}} into mbox format, it renames the file to
399@file{RMAILOSE.@var{n}} (@var{n} is an integer chosen to make the name
400unique) so that Rmail will not have trouble with the data again. You
401should look at the file, find whatever message confuses Rmail (probably
402one that includes the control-underscore character, octal code 037), and
403delete it. Then you can use @kbd{1 g} to get new mail from the
404corrected file.
1be48cfa 405
6bf7aab6
DL
406@node Rmail Files
407@section Multiple Rmail Files
408
409 Rmail operates by default on your @dfn{primary Rmail file}, which is named
410@file{~/RMAIL} and receives your incoming mail from your system inbox file.
411But you can also have other Rmail files and edit them with Rmail. These
412files can receive mail through their own inboxes, or you can move messages
413into them with explicit Rmail commands (@pxref{Rmail Output}).
414
415@table @kbd
416@item i @var{file} @key{RET}
417Read @var{file} into Emacs and run Rmail on it (@code{rmail-input}).
418
419@item M-x set-rmail-inbox-list @key{RET} @var{files} @key{RET}
420Specify inbox file names for current Rmail file to get mail from.
421
422@item g
423Merge new mail from current Rmail file's inboxes
424(@code{rmail-get-new-mail}).
425
426@item C-u g @var{file} @key{RET}
427Merge new mail from inbox file @var{file}.
428@end table
429
430@kindex i @r{(Rmail)}
431@findex rmail-input
9dd617a6 432 To run Rmail on a file other than your primary Rmail file, you can use
6bf7aab6
DL
433the @kbd{i} (@code{rmail-input}) command in Rmail. This visits the file
434in Rmail mode. You can use @kbd{M-x rmail-input} even when not in
9dd617a6
RS
435Rmail, but it is easier to type @kbd{C-u M-x rmail}, which does the
436same thing.
6bf7aab6 437
5f50b807
RS
438 The file you read with @kbd{i} should normally be a valid mbox file.
439If it is not, Rmail tries to convert its text to mbox format, and
440visits the converted text in the buffer. If you save the buffer, that
441converts the file.
442
443 If you specify a file name that doesn't exist, @kbd{i} initializes a
444new buffer for creating a new Rmail file.
6bf7aab6
DL
445
446@vindex rmail-secondary-file-directory
447@vindex rmail-secondary-file-regexp
9dd617a6
RS
448 You can also select an Rmail file from a menu. In the Classify menu,
449choose the Input Rmail File item; then choose the Rmail file you want.
450The variables @code{rmail-secondary-file-directory} and
6bf7aab6
DL
451@code{rmail-secondary-file-regexp} specify which files to offer in the
452menu: the first variable says which directory to find them in; the
9d5de6f8
GM
453second says which files in that directory to offer (all those that match
454the regular expression). If no files match, you cannot select this menu
455item. These variables also apply to choosing a file for output
456(@pxref{Rmail Output}).
6bf7aab6 457
5f50b807 458@ignore
6bf7aab6
DL
459@findex set-rmail-inbox-list
460 Each Rmail file can contain a list of inbox file names; you can specify
461this list with @kbd{M-x set-rmail-inbox-list @key{RET} @var{files}
462@key{RET}}. The argument can contain any number of file names, separated
463by commas. It can also be empty, which specifies that this file should
9dd617a6
RS
464have no inboxes. Once you specify a list of inboxes in an Rmail file,
465the Rmail file remembers it permanently until you specify a different list.
5f50b807 466@end ignore
6bf7aab6 467
5f50b807
RS
468@vindex rmail-inbox-list
469 The inbox files to use are specified by the variable
470@code{rmail-inbox-list}, which is buffer-local in Rmail mode. As a
9d5de6f8
GM
471special exception, if you have specified no inbox files for your primary
472Rmail file, it uses the @env{MAIL} environment variable, or your
473standard system inbox.
6bf7aab6
DL
474
475@kindex g @r{(Rmail)}
476@findex rmail-get-new-mail
477 The @kbd{g} command (@code{rmail-get-new-mail}) merges mail into the
9dd617a6
RS
478current Rmail file from its inboxes. If the Rmail file has no
479inboxes, @kbd{g} does nothing. The command @kbd{M-x rmail} also
480merges new mail into your primary Rmail file.
6bf7aab6
DL
481
482 To merge mail from a file that is not the usual inbox, give the
483@kbd{g} key a numeric argument, as in @kbd{C-u g}. Then it reads a file
484name and merges mail from that file. The inbox file is not deleted or
485changed in any way when @kbd{g} with an argument is used. This is,
486therefore, a general way of merging one file of messages into another.
487
488@node Rmail Output
489@section Copying Messages Out to Files
490
491 These commands copy messages from an Rmail file into another file.
492
493@table @kbd
494@item o @var{file} @key{RET}
5f50b807
RS
495Append a full copy of the current message to the file @var{file}
496(@code{rmail-output}).
6bf7aab6
DL
497
498@item C-o @var{file} @key{RET}
5f50b807
RS
499Append a copy of the current message, as displayed, to the file
500@var{file} (@code{rmail-output-as-seen}).
6bf7aab6
DL
501
502@item w @var{file} @key{RET}
503Output just the message body to the file @var{file}, taking the default
504file name from the message @samp{Subject} header.
505@end table
506
507@kindex o @r{(Rmail)}
5f50b807 508@findex rmail-output-as-seen
6bf7aab6
DL
509@kindex C-o @r{(Rmail)}
510@findex rmail-output
511 The commands @kbd{o} and @kbd{C-o} copy the current message into a
5f50b807
RS
512specified file, adding it at the end. The two commands differ mainly
513in how much to copy: @kbd{o} copies the full message headers, even if
514they are not all visible, while @kbd{C-o} copies exactly the headers
515currently displayed and no more. @xref{Rmail Display}. In addition,
516@kbd{o} converts the message to Babyl format (used by Rmail in Emacs
517version 22 and before) if the file is in Babyl format; @kbd{C-o}
518cannot output to Babyl files at all.
519
520 If the output file is currently visited in an Emacs buffer, the
521output commands append the message to that buffer. It is up to you to
522save the buffer eventually in its file.
6bf7aab6
DL
523
524@kindex w @r{(Rmail)}
525@findex rmail-output-body-to-file
526 Sometimes you may receive a message whose body holds the contents of a
527file. You can save the body to a file (excluding the message header)
528with the @kbd{w} command (@code{rmail-output-body-to-file}). Often
529these messages contain the intended file name in the @samp{Subject}
530field, so the @kbd{w} command uses the @samp{Subject} field as the
531default for the output file name. However, the file name is read using
532the minibuffer, so you can specify a different name if you wish.
533
534 You can also output a message to an Rmail file chosen with a menu.
9dd617a6
RS
535In the Classify menu, choose the Output Rmail File menu item; then
536choose the Rmail file you want. This outputs the current message to
537that file, like the @kbd{o} command. The variables
538@code{rmail-secondary-file-directory} and
6bf7aab6
DL
539@code{rmail-secondary-file-regexp} specify which files to offer in the
540menu: the first variable says which directory to find them in; the
9dd617a6 541second says which files in that directory to offer (all those that
9d5de6f8
GM
542match the regular expression). If no files match, you cannot select
543this menu item.
6bf7aab6
DL
544
545@vindex rmail-delete-after-output
32823124
LT
546 Copying a message with @kbd{o} or @kbd{C-o} gives the original copy
547of the message the @samp{filed} attribute, so that @samp{filed}
5f50b807
RS
548appears in the mode line when such a message is current.
549
550 If you like to keep just a single copy of every mail message, set
551the variable @code{rmail-delete-after-output} to @code{t}; then the
552@kbd{o}, @kbd{C-o} and @kbd{w} commands delete the original message
553after copying it. (You can undelete it afterward if you wish.)
6bf7aab6
DL
554
555@vindex rmail-output-file-alist
556 The variable @code{rmail-output-file-alist} lets you specify
557intelligent defaults for the output file, based on the contents of the
558current message. The value should be a list whose elements have this
559form:
560
561@example
562(@var{regexp} . @var{name-exp})
563@end example
564
565@noindent
566If there's a match for @var{regexp} in the current message, then the
567default file name for output is @var{name-exp}. If multiple elements
568match the message, the first matching element decides the default file
569name. The subexpression @var{name-exp} may be a string constant giving
570the file name to use, or more generally it may be any Lisp expression
571that returns a file name as a string. @code{rmail-output-file-alist}
572applies to both @kbd{o} and @kbd{C-o}.
573
574@node Rmail Labels
575@section Labels
576@cindex label (Rmail)
577@cindex attribute (Rmail)
578
579 Each message can have various @dfn{labels} assigned to it as a means
580of classification. Each label has a name; different names are different
581labels. Any given label is either present or absent on a particular
582message. A few label names have standard meanings and are given to
583messages automatically by Rmail when appropriate; these special labels
584are called @dfn{attributes}.
4714476b 585@ifnottex
6bf7aab6 586(@xref{Rmail Attributes}.)
4714476b 587@end ifnottex
6bf7aab6
DL
588All other labels are assigned only by users.
589
590@table @kbd
591@item a @var{label} @key{RET}
592Assign the label @var{label} to the current message (@code{rmail-add-label}).
593@item k @var{label} @key{RET}
594Remove the label @var{label} from the current message (@code{rmail-kill-label}).
595@item C-M-n @var{labels} @key{RET}
596Move to the next message that has one of the labels @var{labels}
597(@code{rmail-next-labeled-message}).
598@item C-M-p @var{labels} @key{RET}
599Move to the previous message that has one of the labels @var{labels}
600(@code{rmail-previous-labeled-message}).
32823124
LT
601@item l @var{labels} @key{RET}
602@itemx C-M-l @var{labels} @key{RET}
6bf7aab6
DL
603Make a summary of all messages containing any of the labels @var{labels}
604(@code{rmail-summary-by-labels}).
605@end table
606
607@kindex a @r{(Rmail)}
608@kindex k @r{(Rmail)}
609@findex rmail-add-label
610@findex rmail-kill-label
611 The @kbd{a} (@code{rmail-add-label}) and @kbd{k}
612(@code{rmail-kill-label}) commands allow you to assign or remove any
613label on the current message. If the @var{label} argument is empty, it
614means to assign or remove the same label most recently assigned or
615removed.
616
617 Once you have given messages labels to classify them as you wish, there
04242bdc 618are three ways to use the labels: in moving, in summaries, and in sorting.
6bf7aab6
DL
619
620@kindex C-M-n @r{(Rmail)}
621@kindex C-M-p @r{(Rmail)}
622@findex rmail-next-labeled-message
623@findex rmail-previous-labeled-message
ae742cb5 624 @kbd{C-M-n @var{labels} @key{RET}}
6bf7aab6 625(@code{rmail-next-labeled-message}) moves to the next message that has
ae742cb5
CY
626one of the labels @var{labels}. The argument @var{labels} specifies
627one or more label names, separated by commas. @kbd{C-M-p}
628(@code{rmail-previous-labeled-message}) is similar, but moves
629backwards to previous messages. A numeric argument to either command
630serves as a repeat count.
6bf7aab6
DL
631
632 The command @kbd{C-M-l @var{labels} @key{RET}}
633(@code{rmail-summary-by-labels}) displays a summary containing only the
634messages that have at least one of a specified set of labels. The
635argument @var{labels} is one or more label names, separated by commas.
9dd617a6 636@xref{Rmail Summary}, for information on summaries.
6bf7aab6
DL
637
638 If the @var{labels} argument to @kbd{C-M-n}, @kbd{C-M-p} or
639@kbd{C-M-l} is empty, it means to use the last set of labels specified
640for any of these commands.
641
04242bdc
GM
642 @xref{Rmail Sorting}, for information on sorting messages with labels.
643
6bf7aab6
DL
644@node Rmail Attributes
645@section Rmail Attributes
646
647 Some labels such as @samp{deleted} and @samp{filed} have built-in
9dd617a6
RS
648meanings, and Rmail assigns them to messages automatically at
649appropriate times; these labels are called @dfn{attributes}. Here is
650a list of Rmail attributes:
6bf7aab6
DL
651
652@table @samp
653@item unseen
654Means the message has never been current. Assigned to messages when
655they come from an inbox file, and removed when a message is made
656current. When you start Rmail, it initially shows the first message
657that has this attribute.
658@item deleted
659Means the message is deleted. Assigned by deletion commands and
660removed by undeletion commands (@pxref{Rmail Deletion}).
661@item filed
662Means the message has been copied to some other file. Assigned by the
32823124 663@kbd{o} and @kbd{C-o} file output commands (@pxref{Rmail Output}).
6bf7aab6
DL
664@item answered
665Means you have mailed an answer to the message. Assigned by the @kbd{r}
666command (@code{rmail-reply}). @xref{Rmail Reply}.
667@item forwarded
668Means you have forwarded the message. Assigned by the @kbd{f} command
669(@code{rmail-forward}). @xref{Rmail Reply}.
670@item edited
671Means you have edited the text of the message within Rmail.
672@xref{Rmail Editing}.
673@item resent
674Means you have resent the message. Assigned by the command @kbd{M-x
675rmail-resend}. @xref{Rmail Reply}.
5f50b807
RS
676@item retried
677Means you have retried a failed outgoing message. Assigned by the
678command @kbd{M-x rmail-retry-failure}. @xref{Rmail Reply}.
6bf7aab6
DL
679@end table
680
9dd617a6 681 All other labels are assigned or removed only by users, and have no
6bf7aab6
DL
682standard meaning.
683
684@node Rmail Reply
685@section Sending Replies
686
e73c2434
CY
687 Rmail has several commands to send outgoing mail. @xref{Sending
688Mail}, for information on using Message mode, including certain
689features meant to work with Rmail. What this section documents are
690the special commands of Rmail for entering the mail buffer. Note that
691the usual keys for sending mail---@kbd{C-x m}, @kbd{C-x 4 m}, and
692@kbd{C-x 5 m}---also work normally in Rmail mode.
6bf7aab6
DL
693
694@table @kbd
695@item m
696Send a message (@code{rmail-mail}).
697@item c
698Continue editing the already started outgoing message (@code{rmail-continue}).
699@item r
700Send a reply to the current Rmail message (@code{rmail-reply}).
701@item f
702Forward the current message to other users (@code{rmail-forward}).
703@item C-u f
704Resend the current message to other users (@code{rmail-resend}).
705@item M-m
706Try sending a bounced message a second time (@code{rmail-retry-failure}).
707@end table
708
709@kindex r @r{(Rmail)}
710@findex rmail-reply
711@cindex reply to a message
9dd617a6
RS
712 The most common reason to send a message while in Rmail is to reply
713to the message you are reading. To do this, type @kbd{r}
714(@code{rmail-reply}). This displays the @samp{*mail*} buffer in
715another window, much like @kbd{C-x 4 m}, but preinitializes the
716@samp{Subject}, @samp{To}, @samp{CC}, @samp{In-reply-to} and
717@samp{References} header fields based on the message you are replying
718to. The @samp{To} field starts out as the address of the person who
719sent the message you received, and the @samp{CC} field starts out with
720all the other recipients of that message.
6bf7aab6
DL
721
722@vindex rmail-dont-reply-to-names
3d963b67
GM
723 You can exclude certain recipients from being included automatically
724in replies, using the variable @code{rmail-dont-reply-to-names}. Its
21b6bf3b
GM
725value should be a regular expression; any recipients that match are
726excluded from the @samp{CC} field. They are also excluded from the
727@samp{To} field, unless this would leave the field empty. If this
728variable is nil, then the first time you compose a reply it is
729initialized to a default value that matches your own address, and any
730name starting with @samp{info-}. (Those names are excluded because
731there is a convention of using them for large mailing lists to broadcast
732announcements.)
6bf7aab6
DL
733
734 To omit the @samp{CC} field completely for a particular reply, enter
735the reply command with a numeric argument: @kbd{C-u r} or @kbd{1 r}.
9dd617a6 736This means to reply only to the sender of the original message.
6bf7aab6
DL
737
738 Once the @samp{*mail*} buffer has been initialized, editing and
e73c2434
CY
739sending the mail goes as usual (@pxref{Sending Mail}). You can edit
740the presupplied header fields if they are not what you want. You can
741also use commands such as @kbd{C-c C-y}, which yanks in the message
742that you are replying to (@pxref{Mail Commands}). You can also switch
743to the Rmail buffer, select a different message there, switch back,
744and yank the new current message.
6bf7aab6
DL
745
746@kindex M-m @r{(Rmail)}
747@findex rmail-retry-failure
748@cindex retrying a failed message
749@vindex rmail-retry-ignored-headers
750 Sometimes a message does not reach its destination. Mailers usually
751send the failed message back to you, enclosed in a @dfn{failure
752message}. The Rmail command @kbd{M-m} (@code{rmail-retry-failure})
753prepares to send the same message a second time: it sets up a
754@samp{*mail*} buffer with the same text and header fields as before. If
755you type @kbd{C-c C-c} right away, you send the message again exactly
756the same as the first time. Alternatively, you can edit the text or
757headers and then send it. The variable
758@code{rmail-retry-ignored-headers}, in the same format as
759@code{rmail-ignored-headers} (@pxref{Rmail Display}), controls which
00aa62e5 760headers are stripped from the failed message when retrying it.
6bf7aab6
DL
761
762@kindex f @r{(Rmail)}
763@findex rmail-forward
764@cindex forwarding a message
765 Another frequent reason to send mail in Rmail is to @dfn{forward} the
766current message to other users. @kbd{f} (@code{rmail-forward}) makes
767this easy by preinitializing the @samp{*mail*} buffer with the current
768message as the text, and a subject designating a forwarded message. All
769you have to do is fill in the recipients and send. When you forward a
770message, recipients get a message which is ``from'' you, and which has
771the original message in its contents.
772
773@findex unforward-rmail-message
774 Forwarding a message encloses it between two delimiter lines. It also
775modifies every line that starts with a dash, by inserting @w{@samp{- }}
776at the start of the line. When you receive a forwarded message, if it
777contains something besides ordinary text---for example, program source
778code---you might find it useful to undo that transformation. You can do
779this by selecting the forwarded message and typing @kbd{M-x
780unforward-rmail-message}. This command extracts the original forwarded
781message, deleting the inserted @w{@samp{- }} strings, and inserts it
782into the Rmail file as a separate message immediately following the
783current one.
784
785@findex rmail-resend
786 @dfn{Resending} is an alternative similar to forwarding; the
787difference is that resending sends a message that is ``from'' the
788original sender, just as it reached you---with a few added header fields
04242bdc 789(@samp{Resent-From} and @samp{Resent-To}) to indicate that it came via
6bf7aab6 790you. To resend a message in Rmail, use @kbd{C-u f}. (@kbd{f} runs
3d963b67
GM
791@code{rmail-forward}, which invokes @code{rmail-resend} if you provide a
792numeric argument.)
6bf7aab6
DL
793
794@kindex m @r{(Rmail)}
795@findex rmail-mail
5f50b807 796 Use the @kbd{m} (@code{rmail-mail}) command to start editing an
6bf7aab6
DL
797outgoing message that is not a reply. It leaves the header fields empty.
798Its only difference from @kbd{C-x 4 m} is that it makes the Rmail buffer
799accessible for @kbd{C-c C-y}, just as @kbd{r} does. Thus, @kbd{m} can be
800used to reply to or forward a message; it can do anything @kbd{r} or @kbd{f}
9dd617a6 801can do.
6bf7aab6
DL
802
803@kindex c @r{(Rmail)}
804@findex rmail-continue
805 The @kbd{c} (@code{rmail-continue}) command resumes editing the
806@samp{*mail*} buffer, to finish editing an outgoing message you were
9dd617a6 807already composing, or to alter a message you have sent.
6bf7aab6
DL
808
809@vindex rmail-mail-new-frame
810 If you set the variable @code{rmail-mail-new-frame} to a
811non-@code{nil} value, then all the Rmail commands to start sending a
812message create a new frame to edit it in. This frame is deleted when
00aa62e5 813you send the message, or when you use the @samp{Cancel} item in the
6bf7aab6
DL
814@samp{Mail} menu.
815
816 All the Rmail commands to send a message use the mail-composition
817method that you have chosen (@pxref{Mail Methods}).
818
819@node Rmail Summary
820@section Summaries
821@cindex summary (Rmail)
822
823 A @dfn{summary} is a buffer containing one line per message to give
824you an overview of the mail in an Rmail file. Each line shows the
00aa62e5
RS
825message number and date, the sender, the line count, the labels, and
826the subject. Moving point in the summary buffer selects messages as
827you move to their summary lines. Almost all Rmail commands are valid
828in the summary buffer also; when used there, they apply to the message
829described by the current line of the summary.
6bf7aab6
DL
830
831 A summary buffer applies to a single Rmail file only; if you are
832editing multiple Rmail files, each one can have its own summary buffer.
833The summary buffer name is made by appending @samp{-summary} to the
834Rmail buffer's name. Normally only one summary buffer is displayed at a
835time.
836
837@menu
8838673e
GM
838* Rmail Make Summary:: Making various sorts of summaries.
839* Rmail Summary Edit:: Manipulating messages from the summary.
6bf7aab6
DL
840@end menu
841
842@node Rmail Make Summary
843@subsection Making Summaries
844
3d963b67
GM
845 Here are the commands to create a summary for the current Rmail
846buffer. Once the Rmail buffer has a summary, changes in the Rmail
847buffer (such as deleting or expunging messages, and getting new mail)
6bf7aab6
DL
848automatically update the summary.
849
850@table @kbd
851@item h
852@itemx C-M-h
853Summarize all messages (@code{rmail-summary}).
854@item l @var{labels} @key{RET}
855@itemx C-M-l @var{labels} @key{RET}
856Summarize messages that have one or more of the specified labels
857(@code{rmail-summary-by-labels}).
858@item C-M-r @var{rcpts} @key{RET}
2340abde 859Summarize messages that match the specified recipients
6bf7aab6
DL
860(@code{rmail-summary-by-recipients}).
861@item C-M-t @var{topic} @key{RET}
862Summarize messages that have a match for the specified regexp
863@var{topic} in their subjects (@code{rmail-summary-by-topic}).
2340abde 864@item C-M-s @var{regexp} @key{RET}
3d963b67
GM
865Summarize messages whose headers match the specified regular expression
866@var{regexp} (@code{rmail-summary-by-regexp}).
2340abde
GM
867@item C-M-f @var{senders} @key{RET}
868Summarize messages that match the specified senders.
869(@code{rmail-summary-by-senders}).
6bf7aab6
DL
870@end table
871
872@kindex h @r{(Rmail)}
873@findex rmail-summary
874 The @kbd{h} or @kbd{C-M-h} (@code{rmail-summary}) command fills the summary buffer
3d963b67 875for the current Rmail buffer with a summary of all the messages in the buffer.
6bf7aab6
DL
876It then displays and selects the summary buffer in another window.
877
878@kindex l @r{(Rmail)}
879@kindex C-M-l @r{(Rmail)}
880@findex rmail-summary-by-labels
881 @kbd{C-M-l @var{labels} @key{RET}} (@code{rmail-summary-by-labels}) makes
882a partial summary mentioning only the messages that have one or more of the
883labels @var{labels}. @var{labels} should contain label names separated by
9dd617a6 884commas.
6bf7aab6
DL
885
886@kindex C-M-r @r{(Rmail)}
887@findex rmail-summary-by-recipients
888 @kbd{C-M-r @var{rcpts} @key{RET}} (@code{rmail-summary-by-recipients})
3d963b67 889makes a partial summary mentioning only the messages that have one or
2340abde
GM
890more recipients matching the regular expression @var{rcpts}. You can
891use commas to separate multiple regular expressions. These are matched
3d963b67
GM
892against the @samp{To}, @samp{From}, and @samp{CC} headers (with a prefix
893argument, this header is not included).
6bf7aab6
DL
894
895@kindex C-M-t @r{(Rmail)}
896@findex rmail-summary-by-topic
897 @kbd{C-M-t @var{topic} @key{RET}} (@code{rmail-summary-by-topic})
898makes a partial summary mentioning only the messages whose subjects have
2340abde 899a match for the regular expression @var{topic}. You can use commas to
3d963b67
GM
900separate multiple regular expressions. With a prefix argument, the
901match is against the whole message, not just the subject.
6bf7aab6 902
a99d2d64
EZ
903@kindex C-M-s @r{(Rmail)}
904@findex rmail-summary-by-regexp
b8f86df3 905 @kbd{C-M-s @var{regexp} @key{RET}} (@code{rmail-summary-by-regexp})
3d963b67 906makes a partial summary that mentions only the messages whose headers
a99d2d64
EZ
907(including the date and the subject lines) match the regular
908expression @var{regexp}.
909
2340abde
GM
910@kindex C-M-f @r{(Rmail)}
911@findex rmail-summary-by-senders
912 @kbd{C-M-f @var{senders} @key{RET}} (@code{rmail-summary-by-senders})
913makes a partial summary that mentions only the messages whose @samp{From}
914fields match the regular expression @var{senders}. You can use commas to
915separate multiple regular expressions.
916
3d963b67 917 Note that there is only one summary buffer for any Rmail buffer;
9dd617a6 918making any kind of summary discards any previous summary.
6bf7aab6
DL
919
920@vindex rmail-summary-window-size
921@vindex rmail-summary-line-count-flag
922 The variable @code{rmail-summary-window-size} says how many lines to
923use for the summary window. The variable
924@code{rmail-summary-line-count-flag} controls whether the summary line
3d963b67
GM
925for a message should include the line count of the message. Setting
926this option to nil might speed up the generation of summaries.
6bf7aab6
DL
927
928@node Rmail Summary Edit
929@subsection Editing in Summaries
930
931 You can use the Rmail summary buffer to do almost anything you can do
932in the Rmail buffer itself. In fact, once you have a summary buffer,
933there's no need to switch back to the Rmail buffer.
934
935 You can select and display various messages in the Rmail buffer, from
936the summary buffer, just by moving point in the summary buffer to
937different lines. It doesn't matter what Emacs command you use to move
938point; whichever line point is on at the end of the command, that
939message is selected in the Rmail buffer.
940
941 Almost all Rmail commands work in the summary buffer as well as in the
942Rmail buffer. Thus, @kbd{d} in the summary buffer deletes the current
36e2ae50
LT
943message, @kbd{u} undeletes, and @kbd{x} expunges. (However, in the
944summary buffer, a numeric argument to @kbd{d}, @kbd{C-d} and @kbd{u}
945serves as a repeat count. A negative argument reverses the meaning of
3d963b67
GM
946@kbd{d} and @kbd{C-d}. Also, if there are no more undeleted messages in
947the relevant direction, the delete commands go to the first or last
948message, rather than staying on the current message.) @kbd{o} and
949@kbd{C-o} output the current message to a FILE; @kbd{r} starts a reply
2340abde 950to it; etc. You can scroll the current message while remaining in the
3d963b67 951summary buffer using @key{SPC} and @key{DEL}.
2340abde
GM
952@c rmail-summary-scroll-between-messages not mentioned.
953
954@findex rmail-summary-undelete-many
955@kbd{M-u} (@code{rmail-summary-undelete-many}) undeletes all deleted
956messages in the summary. A prefix argument means to undelete that many
957of the previous deleted messages.
6bf7aab6
DL
958
959 The Rmail commands to move between messages also work in the summary
960buffer, but with a twist: they move through the set of messages included
961in the summary. They also ensure the Rmail buffer appears on the screen
962(unlike cursor motion commands, which update the contents of the Rmail
963buffer but don't display it in a window unless it already appears).
964Here is a list of these commands:
965
966@table @kbd
967@item n
968Move to next line, skipping lines saying `deleted', and select its
2340abde 969message (@code{rmail-summary-next-msg}).
6bf7aab6
DL
970@item p
971Move to previous line, skipping lines saying `deleted', and select
2340abde 972its message (@code{rmail-summary-previous-msg}).
6bf7aab6 973@item M-n
2340abde 974Move to next line and select its message (@code{rmail-summary-next-all}).
6bf7aab6 975@item M-p
2340abde
GM
976Move to previous line and select its message
977(@code{rmail-summary-previous-all}).
6bf7aab6 978@item >
2340abde
GM
979Move to the last line, and select its message
980(@code{rmail-summary-last-message}).
6bf7aab6 981@item <
2340abde
GM
982Move to the first line, and select its message
983(@code{rmail-summary-first-message}).
32823124
LT
984@item j
985@itemx @key{RET}
2340abde
GM
986Select the message on the current line (ensuring that the Rmail buffer
987appears on the screen; @code{rmail-summary-goto-msg}). With argument
988@var{n}, select message number @var{n} and move to its line in the
989summary buffer; this signals an error if the message is not listed in
990the summary buffer.
6bf7aab6
DL
991@item M-s @var{pattern} @key{RET}
992Search through messages for @var{pattern} starting with the current
993message; select the message found, and move point in the summary buffer
2340abde
GM
994to that message's line (@code{rmail-summary-search}). A prefix argument
995acts as a repeat count; a negative argument means search backward
996(equivalent to @code{rmail-summary-search-backward}.)
997@item C-M-n @var{labels} @key{RET}
998Move to the next message with at least one of the specified labels
999(@code{rmail-summary-next-labeled-message}). @var{labels} is a
1000comma-separated list of labels. A prefix argument acts as a repeat
1001count.
1002@item C-M-p @var{labels} @key{RET}
1003Move to the previous message with at least one of the specified labels
1004(@code{rmail-summary-previous-labeled-message}).
04242bdc
GM
1005@item C-c C-n @key{RET}
1006Move to the next message with the same subject as the current message
1007(@code{rmail-summary-next-same-subject}). A prefix argument acts as a
1008repeat count.
1009@item C-c C-p @key{RET}
1010Move to the previous message with the same subject as the current message
1011(@code{rmail-summary-previous-same-subject}).
6bf7aab6
DL
1012@end table
1013
1014@vindex rmail-redisplay-summary
1015 Deletion, undeletion, and getting new mail, and even selection of a
1016different message all update the summary buffer when you do them in the
1017Rmail buffer. If the variable @code{rmail-redisplay-summary} is
1018non-@code{nil}, these actions also bring the summary buffer back onto
1019the screen.
1020
1021@kindex Q @r{(Rmail summary)}
1022@findex rmail-summary-wipe
1023@kindex q @r{(Rmail summary)}
1024@findex rmail-summary-quit
3d963b67
GM
1025@kindex b @r{(Rmail summary)}
1026@findex rmail-summary-bury
6bf7aab6
DL
1027 When you are finished using the summary, type @kbd{Q}
1028(@code{rmail-summary-wipe}) to delete the summary buffer's window. You
1029can also exit Rmail while in the summary: @kbd{q}
1030(@code{rmail-summary-quit}) deletes the summary window, then exits from
1031Rmail by saving the Rmail file and switching to another buffer.
3d963b67
GM
1032Alternatively, @kbd{b} (@code{rmail-summary-bury}) simply buries the
1033Rmail summary and buffer.
6bf7aab6
DL
1034
1035@node Rmail Sorting
1036@section Sorting the Rmail File
c1209b97
EZ
1037@cindex sorting Rmail file
1038@cindex Rmail file sorting
6bf7aab6
DL
1039
1040@table @kbd
c1209b97 1041@findex rmail-sort-by-date
00cfe22c
GM
1042@item C-c C-s C-d
1043@itemx M-x rmail-sort-by-date
1044Sort messages of current Rmail buffer by date.
6bf7aab6 1045
c1209b97 1046@findex rmail-sort-by-subject
00cfe22c
GM
1047@item C-c C-s C-s
1048@itemx M-x rmail-sort-by-subject
1049Sort messages of current Rmail buffer by subject.
6bf7aab6 1050
c1209b97 1051@findex rmail-sort-by-author
00cfe22c
GM
1052@item C-c C-s C-a
1053@itemx M-x rmail-sort-by-author
1054Sort messages of current Rmail buffer by author's name.
6bf7aab6 1055
c1209b97 1056@findex rmail-sort-by-recipient
00cfe22c
GM
1057@item C-c C-s C-r
1058@itemx M-x rmail-sort-by-recipient
1059Sort messages of current Rmail buffer by recipient's names.
6bf7aab6 1060
c1209b97 1061@findex rmail-sort-by-correspondent
00cfe22c
GM
1062@item C-c C-s C-c
1063@itemx M-x rmail-sort-by-correspondent
1064Sort messages of current Rmail buffer by the name of the other
6bf7aab6
DL
1065correspondent.
1066
c1209b97 1067@findex rmail-sort-by-lines
00cfe22c
GM
1068@item C-c C-s C-l
1069@itemx M-x rmail-sort-by-lines
1070Sort messages of current Rmail buffer by number of lines.
1071
1072@findex rmail-sort-by-labels
1073@item C-c C-s C-k @key{RET} @var{labels} @key{RET}
1074@itemx M-x rmail-sort-by-labels @key{RET} @var{labels} @key{RET}
1075Sort messages of current Rmail buffer by labels. The argument
6bf7aab6
DL
1076@var{labels} should be a comma-separated list of labels. The order of
1077these labels specifies the order of messages; messages with the first
1078label come first, messages with the second label come second, and so on.
00cfe22c 1079Messages that have none of these labels come last.
6bf7aab6
DL
1080@end table
1081
1082 The Rmail sort commands perform a @emph{stable sort}: if there is no
1083reason to prefer either one of two messages, their order remains
1084unchanged. You can use this to sort by more than one criterion. For
1085example, if you use @code{rmail-sort-by-date} and then
1086@code{rmail-sort-by-author}, messages from the same author appear in
1087order by date.
1088
00cfe22c 1089 With a prefix argument, all these commands reverse the order of
6bf7aab6
DL
1090comparison. This means they sort messages from newest to oldest, from
1091biggest to smallest, or in reverse alphabetical order.
1092
00cfe22c
GM
1093 The same keys in the summary buffer run similar functions; for
1094example, @kbd{C-c C-s C-l} runs @code{rmail-summary-sort-by-lines}.
1095Note that these commands always sort the whole Rmail buffer, even if the
1096summary is only showing a subset of messages.
1097
1098 Note that you cannot undo a sort, so you may wish to save the Rmail
1099buffer before sorting it.
1100
6bf7aab6
DL
1101@node Rmail Display
1102@section Display of Messages
1103
89dc29d9
CY
1104 This section describes how Rmail displays mail headers,
1105@acronym{MIME} sections and attachments, and URLs.
6bf7aab6
DL
1106
1107@table @kbd
1108@item t
1109Toggle display of complete header (@code{rmail-toggle-header}).
1110@end table
1111
6bf7aab6
DL
1112@kindex t @r{(Rmail)}
1113@findex rmail-toggle-header
89dc29d9
CY
1114 Before displaying each message for the first time, Rmail reformats
1115its header, hiding uninteresting header fields to reduce clutter. The
1116@kbd{t} (@code{rmail-toggle-header}) command toggles this, switching
1117between showing the reformatted header fields and showing the
1118complete, original header. With a positive prefix argument, the
1119command shows the reformatted header; with a zero or negative prefix
1120argument, it shows the full header. Selecting the message again also
1121reformats it if necessary.
6bf7aab6 1122
89dc29d9
CY
1123@vindex rmail-ignored-headers
1124@vindex rmail-displayed-headers
1125@vindex rmail-nonignored-headers
1126 The variable @code{rmail-ignored-headers} holds a regular expression
1127specifying the header fields to hide; any matching header line will be
1128hidden. The variable @code{rmail-nonignored-headers} overrides this:
1129any header field matching that regular expression is shown even if it
1130matches @code{rmail-ignored-headers} too. The variable
1131@code{rmail-displayed-headers} is an alternative to these two
1132variables; if non-@code{nil}, this should be a regular expression
1133specifying which headers to display (the default is @code{nil}).
6bf7aab6
DL
1134
1135@vindex rmail-highlighted-headers
3d963b67
GM
1136 Rmail highlights certain header fields that are especially
1137interesting---by default, the @samp{From} and @samp{Subject} fields.
89dc29d9
CY
1138This highlighting uses the @code{rmail-highlight} face. The variable
1139@code{rmail-highlighted-headers} holds a regular expression specifying
1140the header fields to highlight; if it matches the beginning of a
1141header field, that whole field is highlighted. To disable this
1142feature, set @code{rmail-highlighted-headers} to @code{nil}.
358f71fd 1143
505e70c3 1144@cindex MIME messages (Rmail)
7f42ff40 1145@vindex rmail-enable-mime
a41c8660
CY
1146 If a message is in @acronym{MIME} (Multipurpose Internet Mail
1147Extensions) format and contains multiple parts (@acronym{MIME}
1148entities), Rmail displays each part with a @dfn{tagline}. The tagline
1149summarizes the part's index, size, and content type. Depending on the
1150content type, it may also contain one or more buttons; these perform
1151actions such as saving the part into a file.
7f42ff40
KH
1152
1153@table @kbd
1154@findex rmail-mime-toggle-hidden
1155@item @key{RET}
89dc29d9
CY
1156Hide or show the @acronym{MIME} part at point
1157(@code{rmail-mime-toggle-hidden}).
6bf7aab6 1158
7f42ff40
KH
1159@findex rmail-mime-next-item
1160@item @key{TAB}
a41c8660 1161Move point to the next @acronym{MIME} tagline button.
89dc29d9 1162(@code{rmail-mime-next-item}).
7f42ff40
KH
1163
1164@findex rmail-mime-previous-item
1165@item @key{BackTab}
89dc29d9
CY
1166Move point to the previous @acronym{MIME} part
1167(@code{rmail-mime-previous-item}).
7f42ff40 1168
505e70c3 1169@findex rmail-mime
7f42ff40 1170@item v
505e70c3 1171@kindex v @r{(Rmail)}
89dc29d9
CY
1172Toggle between @acronym{MIME} display and raw message
1173(@code{rmail-mime}).
7f42ff40 1174@end table
505e70c3 1175
a41c8660
CY
1176 Each plain-text @acronym{MIME} part is initially displayed
1177immediately after its tagline, as part of the Rmail buffer, while
1178@acronym{MIME} parts of other types are represented only by their
1179taglines, with their actual contents hidden. In either case, you can
1180toggle a @acronym{MIME} part between its ``displayed'' and ``hidden''
1181states by typing @key{RET} anywhere in the part---or anywhere in its
1182tagline, apart from a tagline button for some other action. Type
1183@key{RET} (or click with the mouse) to activate a tagline button, and
1184@key{TAB} to cycle point between tagline buttons.
1185
89dc29d9
CY
1186 The @kbd{v} (@code{rmail-mime}) command toggles between the default
1187@acronym{MIME} display described above, and a ``raw'' display showing
1188the undecoded @acronym{MIME} data. With a prefix argument, this
1189command toggles the display of only an entity at point.
1190
1191 To prevent Rmail from handling MIME decoded messages, change the
1192variable @code{rmail-enable-mime} to @code{nil}. When this is the
1193case, the @kbd{v} (@code{rmail-mime}) command instead creates a
1194temporary buffer to display the current @acronym{MIME} message.
1195
1196 You can highlight and activate URLs in the Rmail buffer using Goto
1197Address mode:
00cfe22c
GM
1198
1199@c FIXME goto-addr.el commentary says to use goto-address instead.
1200@smallexample
1201(add-hook 'rmail-show-message-hook (lambda () (goto-address-mode 1)))
1202@end smallexample
1203
1204@noindent
1205Then you can browse these URLs by clicking on them with @kbd{Mouse-2}
1206(or @kbd{Mouse-1} quickly) or by moving to one and typing @kbd{C-c
1207@key{RET}}. @xref{Goto Address mode, Activating URLs, Activating URLs}.
358f71fd
RS
1208
1209@node Rmail Coding
1210@section Rmail and Coding Systems
6c21cdc0 1211
eed0ee77 1212@cindex decoding mail messages (Rmail)
76dd3692 1213 Rmail automatically decodes messages which contain non-@acronym{ASCII}
b8f86df3
EZ
1214characters, just as Emacs does with files you visit and with subprocess
1215output. Rmail uses the standard @samp{charset=@var{charset}} header in
1216the message, if any, to determine how the message was encoded by the
1217sender. It maps @var{charset} into the corresponding Emacs coding
1218system (@pxref{Coding Systems}), and uses that coding system to decode
95009a13
RS
1219message text. If the message header doesn't have the @samp{charset}
1220specification, or if @var{charset} is not recognized,
b8f86df3
EZ
1221Rmail chooses the coding system with the usual Emacs heuristics and
1222defaults (@pxref{Recognize Coding}).
eed0ee77 1223
eed0ee77 1224@cindex fixing incorrectly decoded mail messages
358f71fd
RS
1225 Occasionally, a message is decoded incorrectly, either because Emacs
1226guessed the wrong coding system in the absence of the @samp{charset}
1227specification, or because the specification was inaccurate. For
1228example, a misconfigured mailer could send a message with a
1229@samp{charset=iso-8859-1} header when the message is actually encoded
1230in @code{koi8-r}. When you see the message text garbled, or some of
0eb025fb
EZ
1231its characters displayed as hex codes or empty boxes, this may have
1232happened.
eed0ee77 1233
358f71fd
RS
1234@findex rmail-redecode-body
1235 You can correct the problem by decoding the message again using the
1236right coding system, if you can figure out or guess which one is
1237right. To do this, invoke the @kbd{M-x rmail-redecode-body} command.
763e01c4
EZ
1238It reads the name of a coding system, and then redecodes the message
1239using the coding system you specified. If you specified the right
358f71fd
RS
1240coding system, the result should be readable.
1241
6bf7aab6
DL
1242@node Rmail Editing
1243@section Editing Within a Message
1244
00cfe22c 1245 Most of the usual Emacs keybindings are available in Rmail mode, though a
6bf7aab6
DL
1246few, such as @kbd{C-M-n} and @kbd{C-M-h}, are redefined by Rmail for
1247other purposes. However, the Rmail buffer is normally read only, and
1248most of the letters are redefined as Rmail commands. If you want to
1249edit the text of a message, you must use the Rmail command @kbd{e}.
1250
1251@table @kbd
1252@item e
1253Edit the current message as ordinary text.
1254@end table
1255
1256@kindex e @r{(Rmail)}
1257@findex rmail-edit-current-message
1258 The @kbd{e} command (@code{rmail-edit-current-message}) switches from
1259Rmail mode into Rmail Edit mode, another major mode which is nearly the
1260same as Text mode. The mode line indicates this change.
1261
1262 In Rmail Edit mode, letters insert themselves as usual and the Rmail
00cfe22c 1263commands are not available. You can edit the message body and header
5f50b807
RS
1264fields. When you are finished editing the message, type @kbd{C-c C-c}
1265to switch back to Rmail mode. Alternatively, you can return to Rmail
00cfe22c 1266mode but cancel any editing that you have done, by typing @kbd{C-c C-]}.
6bf7aab6
DL
1267
1268@vindex rmail-edit-mode-hook
5f50b807
RS
1269 Entering Rmail Edit mode runs the hook @code{text-mode-hook}; then
1270it runs the hook @code{rmail-edit-mode-hook} (@pxref{Hooks}).
1271Returning to ordinary Rmail mode adds the attribute @samp{edited} to
1272the message, if you have made any changes in it.
6bf7aab6
DL
1273
1274@node Rmail Digest
1275@section Digest Messages
1276@cindex digest message
1277@cindex undigestify
1278
1279 A @dfn{digest message} is a message which exists to contain and carry
1280several other messages. Digests are used on some moderated mailing
1281lists; all the messages that arrive for the list during a period of time
1282such as one day are put inside a single digest which is then sent to the
1283subscribers. Transmitting the single digest uses much less computer
1284time than transmitting the individual messages even though the total
1285size is the same, because the per-message overhead in network mail
1286transmission is considerable.
1287
1288@findex undigestify-rmail-message
1289 When you receive a digest message, the most convenient way to read it is
1290to @dfn{undigestify} it: to turn it back into many individual messages.
1291Then you can read and delete the individual messages as it suits you.
eca274b1 1292To do this, select the digest message and type the command @kbd{M-x
6bf7aab6
DL
1293undigestify-rmail-message}. This extracts the submessages as separate
1294Rmail messages, and inserts them following the digest. The digest
1295message itself is flagged as deleted.
1296
6bf7aab6
DL
1297@node Rmail Rot13
1298@section Reading Rot13 Messages
1299@cindex rot13 code
1300
1301 Mailing list messages that might offend some readers are sometimes
1302encoded in a simple code called @dfn{rot13}---so named because it
1303rotates the alphabet by 13 letters. This code is not for secrecy, as it
1304provides none; rather, it enables those who might be offended to avoid
444246ca 1305seeing the real text of the message.
6bf7aab6
DL
1306
1307@findex rot13-other-window
444246ca 1308 To view a buffer which uses the rot13 code, use the command @kbd{M-x
6bf7aab6
DL
1309rot13-other-window}. This displays the current buffer in another window
1310which applies the code when displaying the text.
1311
1312@node Movemail
ea20444b 1313@section @code{movemail} program
6bf7aab6
DL
1314@cindex @code{movemail} program
1315
00cfe22c
GM
1316 Rmail uses the @code{movemail} program to move mail from your inbox to
1317your Rmail file (@pxref{Rmail Inbox}). When loaded for the first time,
1318Rmail attempts to locate the @code{movemail} program and determine its
1319version. There are two versions of the @code{movemail} program: the
1320native one, shipped with GNU Emacs (the ``emacs version'') and the one
1321included in GNU mailutils (the ``mailutils version,''
1322@pxref{movemail,,,mailutils,GNU mailutils}). They support the same
1323command line syntax and the same basic subset of options. However, the
1324Mailutils version offers additional features.
1325
1326 The Emacs version of @code{movemail} is able to retrieve mail from the
1be48cfa
RS
1327usual UNIX mailbox formats and from remote mailboxes using the POP3
1328protocol.
1329
1330 The Mailutils version is able to handle a wide set of mailbox
1331formats, such as plain UNIX mailboxes, @code{maildir} and @code{MH}
00cfe22c 1332mailboxes, etc. It is able to access remote mailboxes using the POP3 or
1be48cfa 1333IMAP4 protocol, and can retrieve mail from them using a TLS encrypted
00cfe22c 1334channel. It also accepts mailbox arguments in @acronym{URL} form.
1be48cfa 1335The detailed description of mailbox @acronym{URL}s can be found in
00cfe22c 1336@ref{URL,,,mailutils,Mailbox URL Formats}. In short, a @acronym{URL} is:
ea20444b
EZ
1337
1338@smallexample
1339@var{proto}://[@var{user}[:@var{password}]@@]@var{host-or-file-name}
1340@end smallexample
1341
1342@noindent
1343where square brackets denote optional elements.
1344
1345@table @var
1346@item proto
1347Specifies the @dfn{mailbox protocol}, or @dfn{format} to
1348use. The exact semantics of the rest of @acronym{URL} elements depends
d1019816 1349on the actual value of @var{proto} (see below).
ea20444b
EZ
1350
1351@item user
1352User name to access the remote mailbox.
1353
1354@item password
1355User password to access the remote mailbox.
1356
1357@item host-or-file-name
1358Hostname of the remote server for remote mailboxes or file name of a
1359local mailbox.
1360@end table
1361
d1019816 1362@noindent
ea20444b
EZ
1363@var{Proto} can be one of:
1364
d1019816 1365@table @code
ea20444b
EZ
1366@item mbox
1367Usual UNIX mailbox format. In this case, neither @var{user} nor
1368@var{pass} are used, and @var{host-or-file-name} denotes the file name of
1369the mailbox file, e.g., @code{mbox://var/spool/mail/smith}.
1370
1371@item mh
1372A local mailbox in the @acronym{MH} format. @var{User} and
1373@var{pass} are not used. @var{Host-or-file-name} denotes the name of
1374@acronym{MH} folder, e.g., @code{mh://Mail/inbox}.
1375
1376@item maildir
1377A local mailbox in the @acronym{maildir} format. @var{User} and
1378@var{pass} are not used, and @var{host-or-file-name} denotes the name of
1379@code{maildir} mailbox, e.g., @code{maildir://mail/inbox}.
1380
1381@item file
1382Any local mailbox format. Its actual format is detected automatically
1383by @code{movemail}.
1384
1385@item pop
1386A remote mailbox to be accessed via POP3 protocol. @var{User}
1387specifies the remote user name to use, @var{pass} may be used to
1388specify the user password, @var{host-or-file-name} is the name or IP
1389address of the remote mail server to connect to; e.g.,
1390@code{pop://smith:guessme@@remote.server.net}.
32823124 1391
ea20444b
EZ
1392@item imap
1393A remote mailbox to be accessed via IMAP4 protocol. @var{User}
1394specifies the remote user name to use, @var{pass} may be used to
1395specify the user password, @var{host-or-file-name} is the name or IP
1396address of the remote mail server to connect to;
1397e.g., @code{imap://smith:guessme@@remote.server.net}.
1398@end table
1399
1be48cfa
RS
1400 Alternatively, you can specify the file name of the mailbox to use.
1401This is equivalent to specifying the @samp{file} protocol:
ea20444b
EZ
1402
1403@smallexample
1be48cfa 1404/var/spool/mail/@var{user} @equiv{} file://var/spool/mail/@var{user}
ea20444b
EZ
1405@end smallexample
1406
1407@vindex rmail-movemail-program
1408@vindex rmail-movemail-search-path
1be48cfa
RS
1409 The variable @code{rmail-movemail-program} controls which version of
1410@code{movemail} to use. If that is a string, it specifies the
1411absolute file name of the @code{movemail} executable. If it is
1412@code{nil}, Rmail searches for @code{movemail} in the directories
1413listed in @code{rmail-movemail-search-path} and @code{exec-path}, then
1414in @code{exec-directory}.
32823124 1415
ea20444b
EZ
1416@node Remote Mailboxes
1417@section Retrieving Mail from Remote Mailboxes
1418@pindex movemail
1419
6bf7aab6 1420 Some sites use a method called POP for accessing users' inbox data
00cfe22c
GM
1421instead of storing the data in inbox files. By default, the @code{Emacs
1422movemail} can work with POP (unless the Emacs @code{configure} script
1423was run with the option @samp{--without-pop}).
ea20444b 1424
00cfe22c
GM
1425Similarly, the Mailutils @code{movemail} by default supports POP, unless
1426it was configured with the @samp{--disable-pop} option.
ea20444b
EZ
1427
1428Both versions of @code{movemail} only work with POP3, not with older
6bf7aab6
DL
1429versions of POP.
1430
60a96371 1431@cindex @env{MAILHOST} environment variable
ea20444b
EZ
1432@cindex POP mailboxes
1433 No matter which flavor of @code{movemail} you use, you can specify
00cfe22c 1434a POP inbox by using a POP @dfn{URL} (@pxref{Movemail}). A POP
ea20444b
EZ
1435@acronym{URL} is a ``file name'' of the form
1436@samp{pop://@var{username}@@@var{hostname}}, where
1437@var{hostname} is the host name or IP address of the remote mail
1438server and @var{username} is the user name on that server.
1439Additionally, you may specify the password in the mailbox @acronym{URL}:
1440@samp{pop://@var{username}:@var{password}@@@var{hostname}}. In this
1441case, @var{password} takes preference over the one set by
00cfe22c
GM
1442@code{rmail-remote-password} (see below). This is especially useful
1443if you have several remote mailboxes with different passwords.
1444
1445 For backward compatibility, Rmail also supports an alternative way of
1446specifying remote POP mailboxes. Specifying an inbox name in the form
1447@samp{po:@var{username}:@var{hostname}} is equivalent to
1448@samp{pop://@var{username}@@@var{hostname}}. If you omit the
1449@var{:hostname} part, the @env{MAILHOST} environment variable specifies
1450the machine on which to look for the POP server.
1451
1452@c FIXME mention --with-hesiod "support Hesiod to get the POP server host"?
ea20444b
EZ
1453
1454@cindex IMAP mailboxes
1455 Another method for accessing remote mailboxes is IMAP. This method is
b2c09a2e 1456supported only by the Mailutils @code{movemail}. To specify an IMAP
ea20444b
EZ
1457mailbox in the inbox list, use the following mailbox @acronym{URL}:
1458@samp{imap://@var{username}[:@var{password}]@@@var{hostname}}. The
32823124 1459@var{password} part is optional, as described above.
ea20444b
EZ
1460
1461@vindex rmail-remote-password
1462@vindex rmail-remote-password-required
ea20444b
EZ
1463 Accessing a remote mailbox may require a password. Rmail uses the
1464following algorithm to retrieve it:
1465
1466@enumerate
32823124 1467@item
00cfe22c 1468If a @var{password} is present in the mailbox URL (see above), it is
38be61d5 1469used.
32823124 1470@item
00cfe22c
GM
1471If the variable @code{rmail-remote-password-required} is @code{nil},
1472Rmail assumes no password is required.
1473@item
38be61d5
EZ
1474If the variable @code{rmail-remote-password} is non-@code{nil}, its
1475value is used.
1476@item
00cfe22c 1477Otherwise, Rmail will ask you for the password to use.
ea20444b
EZ
1478@end enumerate
1479
6bf7aab6
DL
1480@vindex rmail-movemail-flags
1481 If you need to pass additional command-line flags to @code{movemail},
1482set the variable @code{rmail-movemail-flags} a list of the flags you
1483wish to use. Do not use this variable to pass the @samp{-p} flag to
1484preserve your inbox contents; use @code{rmail-preserve-inbox} instead.
1485
1486@cindex Kerberos POP authentication
1487 The @code{movemail} program installed at your site may support
00cfe22c
GM
1488Kerberos authentication (the Emacs @code{movemail} does so if Emacs was
1489configured with the option @code{--with-kerberos} or
1490@code{--with-kerberos5}). If it is supported, it is used by default
1491whenever you attempt to retrieve POP mail when
1492@code{rmail-remote-password} and @code{rmail-remote-password-required}
1493are unset.
6bf7aab6 1494
4946337d 1495@cindex reverse order in POP inboxes
6bf7aab6
DL
1496 Some POP servers store messages in reverse order. If your server does
1497this, and you would rather read your mail in the order in which it was
1498received, you can tell @code{movemail} to reverse the order of
1499downloaded messages by adding the @samp{-r} flag to
1500@code{rmail-movemail-flags}.
ab5796a9 1501
ea20444b 1502@cindex TLS encryption (Rmail)
b2c09a2e 1503 Mailutils @code{movemail} supports TLS encryption. If you wish to
ea20444b
EZ
1504use it, add the @samp{--tls} flag to @code{rmail-movemail-flags}.
1505
1506@node Other Mailbox Formats
1507@section Retrieving Mail from Local Mailboxes in Various Formats
1508
1509 If your incoming mail is stored on a local machine in a format other
444246ca
KB
1510than UNIX mailbox, you will need the Mailutils @code{movemail} to
1511retrieve it. @xref{Movemail}, for the detailed description of
1512@code{movemail} versions. For example, to access mail from a inbox in
1513@code{maildir} format located in @file{/var/spool/mail/in}, you would
1514include the following in the Rmail inbox list:
ea20444b
EZ
1515
1516@smallexample
1517maildir://var/spool/mail/in
1518@end smallexample