Next: Deleting Messages, Previous: Commands, Up: Commands
The most basic thing to do with a message is to read it. The way to do this in IMAIL is to select the message. The usual practice is to move sequentially through the folder, since this is the order of receipt of messages. When you enter IMAIL, you are positioned at the first message that you have not yet seen (that is, the first one that has the `unseen' flag; see Flags). Move forward to see the other new messages; move backward to reexamine old messages.
imail-next-undeleted-message
).
imail-previous-undeleted-message
).
imail-next-message
).
imail-previous-message
).
imail-select-message
).
imail-last-message
).
imail-first-message
).
imail-first-unseen-message
).
imail-search
).
imail-next-same-subject
).
imail-previous-same-subject
).
n and p are the usual way of moving among messages in
IMAIL. They move through the messages sequentially, but skip
over deleted messages, which is usually what you want to do. Their
command definitions are named imail-next-undeleted-message
and
imail-previous-undeleted-message
. If you do not want to skip
deleted messages—for example, if you want to move to a message to
undelete it—use the variants M-n and M-p
(imail-next-message
and imail-previous-message
). A
numeric argument to any of these commands serves as a repeat count.
In IMAIL, you can specify a numeric argument by typing just the digits. You don't need to type C-u first.
The M-s (imail-search
) command is IMAIL's version
of search. The usual incremental search command C-s works in
IMAIL, but it searches only within the current message. The
purpose of M-s is to search for another message. It reads a
string nonincrementally, then searches starting at the beginning of the
following message for a match. It then selects that message. If
string is empty, M-s reuses the string used the previous
time.
To search backward in the folder for another message, give M-s a negative argument. In IMAIL you can do this with - M-s.
It is also possible to search for a message based on flags. See Flags.
To find the next message with the same subject as the current message,
use C-c C-n (imail-next-same-subject
). This is useful for
following the thread of an email conversation. C-c C-p
(imail-previous-same-subject
) finds the previous message with the
same subject.
To move to a message specified by absolute message number, use j
(imail-select-message
) with the message number as argument. With
no argument, j selects the first message. <
(imail-first-message
) also selects the first message. >
(imail-last-message
) selects the last message. M-u selects
the first unseen message (imail-first-unseen-message
).