[Top] [Contents] [Index] [ ? ]

Message Manual

All message composition (both mail and news) takes place in Message mode buffers.

1. Interface  Setting up message buffers.
2. Commands  Commands you can execute in message mode buffers.
3. Variables  Customizing the message buffers.
4. Index  Variable, function and concept index.
5. Key Index  List of Message mode keys.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1. Interface

When a program (or a person) wants to respond to a message -- reply, follow up, forward, cancel -- the program (or person) should just put point in the buffer where the message is and call the required command. Message will then pop up a new message mode buffer with appropriate headers filled out, and the user can edit the message before sending it.

1.1 New Mail Message  Editing a brand new mail message.
1.2 New News Message  Editing a brand new news message.
1.3 Reply  Replying via mail.
1.4 Wide Reply  Responding to all people via mail.
1.5 Followup  Following up via news.
1.6 Canceling News  Canceling a news article.
1.7 Superseding  Superseding a message.
1.8 Forwarding  Forwarding a message via news or mail.
1.9 Resending  Resending a mail message.
1.10 Bouncing  Bouncing a mail message.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.1 New Mail Message

The message-mail command pops up a new message buffer.

Two optional parameters are accepted: The first will be used as the To header and the second as the Subject header. If these aren't present, those two headers will be empty.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.2 New News Message

The message-news command pops up a new message buffer.

This function accepts two optional parameters. The first will be used as the Newsgroups header and the second as the Subject header. If these aren't present, those two headers will be empty.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.3 Reply

The message-reply function pops up a message buffer that's a reply to the message in the current buffer.

Message uses the normal methods to determine where replies are to go, but you can change the behavior to suit your needs by fiddling with the message-reply-to-function variable.

If you want the replies to go to the Sender instead of the From, you could do something like this:

 
(setq message-reply-to-function
      (lambda ()
       (cond ((equal (mail-fetch-field "from") "somebody")
               (mail-fetch-field "sender"))     
             (t 
              nil))))

This function will be called narrowed to the head of the article that is being replied to.

As you can see, this function should return a string if it has an opinion as to what the To header should be. If it does not, it should just return nil, and the normal methods for determining the To header will be used.

This function can also return a list. In that case, each list element should be a cons, where the car should be the name of an header (eg. Cc) and the cdr should be the header value (eg. `larsi@ifi.uio.no'). All these headers will be inserted into the head of the outgoing mail.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.4 Wide Reply

The message-wide-reply pops up a message buffer that's a wide reply to the message in the current buffer.

Message uses the normal methods to determine where wide replies are to go, but you can change the behavior to suit your needs by fiddling with the message-wide-reply-to-function. It is used in the same way as message-reply-to-function (see section 1.3 Reply).

Addresses that matches the rmail-dont-reply-to-names regular expression will be removed from the Cc header.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.5 Followup

The message-followup command pops up a message buffer that's a followup to the message in the current buffer.

Message uses the normal methods to determine where followups are to go, but you can change the behavior to suit your needs by fiddling with the message-followup-to-function. It is used in the same way as message-reply-to-function (see section 1.3 Reply).

The message-use-followup-to variable says what to do about Followup-To headers. If it is use, always use the value. If it is ask (which is the default), ask whether to use the value. If it is t, use the value unless it is `poster'. If it is nil, don't use the value.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.6 Canceling News

The message-cancel-news command cancels the article in the current buffer.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.7 Superseding

The message-supersede command pops up a message buffer that will supersede the message in the current buffer.

Headers matching the message-ignored-supersedes-headers are removed before popping up the new message buffer. The default is `^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:'.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.8 Forwarding

The message-forward command pops up a message buffer to forward the message in the current buffer. If given a prefix, forward using news.

message-forward-start-separator
Delimiter inserted before forwarded messages. The default is `------- Start of forwarded message -------\n'.

message-forward-end-separator
Delimiter inserted after forwarded messages. The default is `------- End of forwarded message -------\n'.

message-signature-before-forwarded-message
If this variable is t, which it is by default, your personal signature will be inserted before the forwarded message. If not, the forwarded message will be inserted first in the new mail.

message-included-forward-headers
Regexp matching header lines to be included in forwarded messages.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.9 Resending

The message-resend command will prompt the user for an address and resend the message in the current buffer to that address.

Headers the match the message-ignored-resent-headers regexp will be removed before sending the message. The default is `^Return-receipt'.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1.10 Bouncing

The message-bounce command will, if the current buffer contains a bounced mail message, pop up a message buffer stripped of the bounce information.

Headers that match the message-ignored-bounced-headers regexp will be removed before popping up the buffer. The default is `^Received:'.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2. Commands

2.1 Header Commands  Commands for moving to headers.
2.2 Movement  Moving around in message buffers.
2.3 Insertion  Inserting things into message buffers.
2.4 Various Commands  Various things.
2.5 Sending  Actually sending the message.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.1 Header Commands

All these commands move to the header in question. If it doesn't exist, it will be inserted.

C-c ?
Describe the message mode.

C-c C-f C-t
Go to the To header (message-goto-to).

C-c C-f C-b
Go to the Bcc header (message-goto-bcc).

C-c C-f C-f
Go to the Fcc header (message-goto-fcc).

C-c C-f C-c
Go to the Cc header (message-goto-cc).

C-c C-f C-s
Go to the Subject header (message-goto-subject).

C-c C-f C-r
Go to the Reply-To header (message-goto-reply-to).

C-c C-f C-n
Go to the Newsgroups header (message-goto-newsgroups).

C-c C-f C-d
Go to the Distribution header (message-goto-distribution).

C-c C-f C-o
Go to the Followup-To header (message-goto-followup-to).

C-c C-f C-k
Go to the Keywords header (message-goto-keywords).

C-c C-f C-u
Go to the Summary header (message-goto-summary).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.2 Movement

C-c C-b
Move to the beginning of the body of the message (message-goto-body).

C-c C-i
Move to the signature of the message (message-goto-signature).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.3 Insertion

C-c C-y
Yank the message that's being replied to into the message buffer (message-yank-original).

C-c C-q
Fill the yanked message (message-fill-yanked-message).

C-c C-w
Insert a signature at the end of the buffer (message-insert-signature).

message-ignored-cited-headers
All headers that match this regexp will be removed from yanked messages. The default is `.', which means that all headers will be removed.

message-citation-line-function
Function called to insert the citation line. The default is message-insert-citation-line.

message-yank-prefix
When you are replying to or following up an article, you normally want to quote the person you are answering. Inserting quoted text is done by yanking, and each quoted line you yank will have message-yank-prefix prepended to it. The default is `> '. If it is nil, just indent the message.

message-indentation-spaces
Number of spaces to indent yanked messages.

message-cite-function
Function for citing an original message. The default is message-cite-original. You can also set it to sc-cite-original to use Supercite.

message-indent-citation-function
Function for modifying a citation just inserted in the mail buffer. This can also be a list of functions. Each function can find the citation between (point) and (mark t). And each function should leave point and mark around the citation text as modified.

message-signature
String to be inserted at the end of the message buffer. If t (which is the default), the message-signature-file file will be inserted instead. If a function, the result from the function will be used instead. If a form, the result from the form will be used instead. If this variable is nil, no signature will be inserted at all.

message-signature-file
File containing the signature to be inserted at the end of the buffer. The default is `~/.signature'.

Note that RFC1036 says that a signature should be preceded by the three characters `-- ' on a line by themselves. This is to make it easier for the recipient to automatically recognize and process the signature. So don't remove those characters, even though you might feel that they ruin you beautiful design, like, totally.

Also note that no signature should be more than four lines long. Including ASCII graphics is an efficient way to get everybody to believe that you are silly and have nothing important to say.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.4 Various Commands

C-c C-r
Caesar rotate (aka. rot13) the current message (message-caesar-buffer-body). If narrowing is in effect, just rotate the visible portion of the buffer. A numerical prefix says how many places to rotate the text. The default is 13.

C-c C-t
Insert a To header that contains the Reply-To or From header of the message you're following up (message-insert-to).

C-c C-n
Insert a Newsgroups header that reflects the Followup-To or Newsgroups header of the article you're replying to (message-insert-newsgroups).

C-c M-r
Rename the buffer (message-rename-buffer). If given a prefix, prompt for a new buffer name.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.5 Sending

C-c C-c
Send the message and bury the current buffer (message-send-and-exit).

C-c C-s
Send the message (message-send).

C-c C-d
Bury the message buffer and exit (message-dont-send).

C-c C-k
Kill the message buffer and exit (message-kill-buffer).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3. Variables

3.1 Message Headers  General message header stuff.
3.2 Mail Headers  Customizing mail headers.
3.3 Mail Variables  Other mail variables.
3.4 News Headers  Customizing news headers.
3.5 News Variables  Other news variables.
3.6 Various Message Variables  Other message variables.
3.7 Sending Variables  Variables for sending.
3.8 Message Buffers  How Message names its buffers.
3.9 Message Actions  Actions to be performed when exiting.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1 Message Headers

Message is quite aggressive on the message generation front. It has to be -- it's a combined news and mail agent. To be able to send combined messages, it has to generate all headers itself to ensure that mail and news copies of messages look sufficiently similar.

message-generate-headers-first
If non-nil, generate all headers before starting to compose the message.

message-from-style
Specifies how From headers should look. There are four legal values:

nil
Just the address -- `king@grassland.com'.

parens
`king@grassland.com (Elvis Parsley)'.

angles
`Elvis Parsley <king@grassland.com>'.

default
Look like angles if that doesn't require quoting, and parens if it does. If even parens requires quoting, use angles anyway.

message-deletable-headers
Headers in this list that were previously generated by Message will be deleted before posting. Let's say you post an article. Then you decide to post it again to some other group, you naughty boy, so you jump back to the *post-buf* buffer, edit the Newsgroups line, and ship it off again. By default, this variable makes sure that the old generated Message-ID is deleted, and a new one generated. If this isn't done, the entire empire would probably crumble, anarchy would prevail, and cats would start walking on two legs and rule the world. Allegedly.

message-default-headers
This string is inserted at the end of the headers in all message buffers.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.2 Mail Headers

message-required-mail-headers
See see section 3.4 News Headers for the syntax of this variable. It is (From Date Subject (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) by default.

message-ignored-mail-headers
Regexp of headers to be removed before mailing. The default is `^Gcc:\\|^Fcc:'.

message-default-mail-headers
This string is inserted at the end of the headers in all message buffers that are initialized as mail.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3 Mail Variables

message-send-mail-function
Function used to send the current buffer as mail. The default is message-send-mail-with-sendmail. If you prefer using MH instead, set this variable to message-send-mail-with-mh.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.4 News Headers

message-required-news-headers a list of header symbols. These headers will either be automatically generated, or, if that's impossible, they will be prompted for. The following symbols are legal:

From
This required header will be filled out with the result of the message-make-from function, which depends on the message-from-style, user-full-name, user-mail-address variables.

Subject
This required header will be prompted for if not present already.

Newsgroups
This required header says which newsgroups the article is to be posted to. If it isn't present already, it will be prompted for.

Organization
This optional header will be filled out depending on the message-user-organization variable. message-user-organization-file will be used if that variable is t.

Lines
This optional header will be computed by Message.

Message-ID
This required header will be generated by Message. A unique ID will be created based on date, time, user name and system name. Message will use mail-host-address as the fully qualified domain name (FQDN) of the machine if that variable is define. If not, it will use system-name, which doesn't report a FQDN on some machines -- notably Suns.

X-Newsreader
This optional header will be filled out according to the message-newsreader local variable.

X-Mailer
This optional header will be filled out according to the message-mailer local variable, unless there already is an X-Newsreader header present.

In-Reply-To
This optional header is filled out using the Date and From header of the article being replied.

Expires
This extremely optional header will be inserted according to the message-expires variable. It is highly deprecated and shouldn't be used unless you know what you're doing.

Distribution
This optional header is filled out according to the message-distribution-function variable. It is a deprecated and much misunderstood header.

Path
This extremely optional header should probably not ever be used. However, some very old servers require that this header is present. message-user-path further controls how this Path header is to look. If is is nil, the the server name as the leaf node. If is is a string, use the string. If it is neither a string nor nil, use the user name only. However, it is highly unlikely that you should need to fiddle with this variable at all.

In addition, you can enter conses into this list. The car of this cons should be a symbol. This symbol's name is the name of the header, and the cdr can either be a string to be entered verbatim as the value of this header, or it can be a function to be called. This function should return a string to be inserted. For instance, if you want to insert Mime-Version: 1.0, you should enter (Mime-Version . "1.0") into the list. If you want to insert a funny quote, you could enter something like (X-Yow . yow) into the list. The function yow will then be called without any arguments.

If the list contains a cons where the car of the cons is optional, the cdr of this cons will only be inserted if it is non-nil.

Other variables for customizing outgoing news articles:

message-syntax-checks
If non-nil, message will attempt to check the legality of the headers, as well as some other stuff, before posting. You can control the granularity of the check by adding or removing elements from this list. Legal elements are:

subject-cmsg
Check the subject for commands.
sender
Insert a new Sender header if the From header looks odd.
multiple-headers
Check for the existence of multiple equal headers.
sendsys
Check for the existence of version and sendsys commands.
message-id
Check whether the Message-ID looks ok.
from
Check whether the From header seems nice.
long-lines
Check for too long lines.
control-chars
Check for illegal characters.
size
Check for excessive size.
new-text
Check whether there is any new text in the messages.
signature
Check the length of the signature.
approved
Check whether the article has an Approved header, which is something only moderators should include.
empty
Check whether the article is empty.
empty-headers
Check whether any of the headers are empty.
existing-newsgroups
Check whether the newsgroups mentioned in the Newsgroups and Followup-To headers exist.
valid-newsgroups
Check whether the Newsgroups and Followup-To headers are valid syntactially.

All these conditions are checked by default.

message-ignored-news-headers
Regexp of headers to be removed before posting. The default is `^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:'.

message-default-news-headers
This string is inserted at the end of the headers in all message buffers that are initialized as news.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.5 News Variables

message-send-news-function
Function used to send the current buffer as news. The default is message-send-news.

message-post-method
Method used for posting a prepared news message.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.6 Various Message Variables

message-signature-separator
Regexp matching the signature separator. It is `^-- *$' by default.

mail-header-separator
String used to separate the headers from the body. It is `--text follows this line--' by default.

message-directory
Directory used by many mailey things. The default is `~/Mail/'.

message-autosave-directory
Directory where message buffers will be autosaved to.

message-signature-setup-hook
Hook run when initializing the message buffer. It is run after the headers have been inserted but before the signature has been inserted.

message-setup-hook
Hook run as the last thing when the message buffer has been initialized.

message-header-setup-hook
Hook called narrowed to the headers after initializing the headers.

message-send-hook
Hook run before sending messages.

message-sent-hook
Hook run after sending messages.

message-mode-syntax-table
Syntax table used in message mode buffers.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.7 Sending Variables

message-fcc-handler-function
A function called to save outgoing articles. This function will be called with the name of the file to store the article in. The default function is rmail-output which saves in Unix mailbox format.

message-courtesy-message
When sending combined messages, this string is inserted at the start of the mailed copy. If this variable is nil, no such courtesy message will be added.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.8 Message Buffers

Message will generate new buffers with unique buffer names when you request a message buffer. When you send the message, the buffer isn't normally killed off. It's name is changed and a certain number of old message buffers are kept alive.

message-generate-new-buffers
If non-nil, generate new buffers. The default is t. If this is a function, call that function with three parameters: The type, the to address and the group name. (Any of these may be nil.) The function should return the new buffer name.

message-max-buffers
This variable says how many old message buffers to keep. If there are more message buffers than this, the oldest buffer will be killed. The default is 10. If this variable is nil, no old message buffers will ever be killed.

message-send-rename-function
After sending a message, the buffer is renamed from, for instance, `*reply to Lars*' to `*sent reply to Lars*'. If you don't like this, set this variable to a function that renames the buffer in a manner you like. If you don't want to rename the buffer at all, you can say:

 
(setq message-send-rename-function 'ignore)

message-kill-buffer-on-exit
If non-nil, kill the buffer immediately on exit.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.9 Message Actions

When Message is being used from a news/mail reader, the reader is likely to want to perform some task after the message has been sent. Perhaps return to the previous window configuration or mark an article as replied.

The user may exit from the message buffer in various ways. The most common is C-c C-c, which sends the message and exits. Other possibilities are C-c C-s which just sends the message, C-c C-d which postpones the message editing and buries the message buffer, and C-c C-k which kills the message buffer. Each of these actions have lists associated with them that contains actions to be executed: message-send-actions, message-exit-actions, message-postpone-actions, and message-kill-actions.

Message provides a function to interface with these lists: message-add-action. The first parameter is the action to be added, and the rest of the arguments are which lists to add this action to. Here's an example from Gnus:

 
  (message-add-action
   `(set-window-configuration ,(current-window-configuration))
   'exit 'postpone 'kill)

This restores the Gnus window configuration when the message buffer is killed, postponed or exited.

An action can be either a normal function; or a list where the car is a function and the cdr is the list of arguments; or a form to be evaled.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4. Index

Jump to:   A   D   E   F   L   M   N   O   P   Q   R   S   U   X   Y  

Index Entry Section

A
approved3.4 News Headers

D
Distribution3.4 News Headers

E
Expires3.4 News Headers

F
From3.4 News Headers

L
Lines3.4 News Headers
long lines3.4 News Headers

M
mail-header-separator3.6 Various Message Variables
mail-host-address3.4 News Headers
message-autosave-directory3.6 Various Message Variables
message-bounce1.10 Bouncing
message-caesar-buffer-body2.4 Various Commands
message-cancel-news1.6 Canceling News
message-citation-line-function2.3 Insertion
message-cite-function2.3 Insertion
message-cite-original2.3 Insertion
message-courtesy-message3.7 Sending Variables
message-default-headers3.1 Message Headers
message-default-mail-headers3.2 Mail Headers
message-default-news-headers3.4 News Headers
message-deletable-headers3.1 Message Headers
message-directory3.6 Various Message Variables
message-dont-send2.5 Sending
message-exit-actions3.9 Message Actions
message-fcc-handler-function3.7 Sending Variables
message-fill-yanked-message2.3 Insertion
message-followup1.5 Followup
message-followup-to-function1.5 Followup
message-forward1.8 Forwarding
message-forward-end-separator1.8 Forwarding
message-forward-end-separator1.8 Forwarding
message-forward-start-separator1.8 Forwarding
message-from-style3.1 Message Headers
message-generate-headers-first3.1 Message Headers
message-generate-new-buffers3.8 Message Buffers
message-goto-bcc2.1 Header Commands
message-goto-body2.2 Movement
message-goto-cc2.1 Header Commands
message-goto-distribution2.1 Header Commands
message-goto-fcc2.1 Header Commands
message-goto-followup-to2.1 Header Commands
message-goto-keywords2.1 Header Commands
message-goto-newsgroups2.1 Header Commands
message-goto-reply-to2.1 Header Commands
message-goto-signature2.2 Movement
message-goto-subject2.1 Header Commands
message-goto-summary2.1 Header Commands
message-goto-to2.1 Header Commands
message-goto-to2.1 Header Commands
message-header-setup-hook3.6 Various Message Variables
Message-ID3.4 News Headers
message-ignored-bounced-headers1.10 Bouncing
message-ignored-cited-headers2.3 Insertion
message-ignored-mail-headers3.2 Mail Headers
message-ignored-news-headers3.4 News Headers
message-ignored-resent-headers1.9 Resending
message-ignored-supersedes-headers1.7 Superseding
message-included-forward-headers1.8 Forwarding
message-indent-citation-function2.3 Insertion
message-indentation-spaces2.3 Insertion
message-insert-newsgroups2.4 Various Commands
message-insert-signature2.3 Insertion
message-insert-to2.4 Various Commands
message-kill-actions3.9 Message Actions
message-kill-buffer2.5 Sending
message-kill-buffer-on-exit3.8 Message Buffers
message-mail1.1 New Mail Message
message-max-buffers3.8 Message Buffers
message-mode-syntax-table3.6 Various Message Variables
message-news1.2 New News Message
message-post-method3.5 News Variables
message-postpone-actions3.9 Message Actions
message-rename-buffer2.4 Various Commands
message-reply1.3 Reply
message-reply-to-function1.3 Reply
message-required-mail-headers3.2 Mail Headers
message-required-news-headers3.4 News Headers
message-resend1.9 Resending
message-send2.5 Sending
message-send-actions3.9 Message Actions
message-send-and-exit2.5 Sending
message-send-hook3.6 Various Message Variables
message-send-mail-function3.3 Mail Variables
message-send-news-function3.5 News Variables
message-send-rename-function3.8 Message Buffers
message-sent-hook3.6 Various Message Variables
message-setup-hook3.6 Various Message Variables
message-signature2.3 Insertion
message-signature-before-forwarded-message1.8 Forwarding
message-signature-file2.3 Insertion
message-signature-separator3.6 Various Message Variables
message-signature-setup-hook3.6 Various Message Variables
message-supersede1.7 Superseding
message-syntax-checks3.4 News Headers
message-use-followup-to1.5 Followup
message-wide-reply1.4 Wide Reply
message-wide-reply-to-function1.4 Wide Reply
message-yank-original2.3 Insertion
message-yank-prefix2.3 Insertion
Mime-Version3.4 News Headers

N
Newsgroups3.4 News Headers

O
organization3.4 News Headers

P
path3.4 News Headers

Q
quoting2.3 Insertion

R
rmail-dont-reply-to-names1.4 Wide Reply

S
sc-cite-original2.3 Insertion
Sender3.4 News Headers
sendsys3.4 News Headers
Subject3.4 News Headers
Sun3.4 News Headers
Supercite2.3 Insertion
system-name3.4 News Headers

U
user-full-name3.4 News Headers
user-mail-address3.4 News Headers

X
X-Newsreader3.4 News Headers

Y
yanking2.3 Insertion
yow3.4 News Headers

Jump to:   A   D   E   F   L   M   N   O   P   Q   R   S   U   X   Y  


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5. Key Index

Jump to:   C  

Index Entry Section

C
C-c ?2.1 Header Commands
C-c C-b2.2 Movement
C-c C-c2.5 Sending
C-c C-d2.5 Sending
C-c C-f C-b2.1 Header Commands
C-c C-f C-c2.1 Header Commands
C-c C-f C-d2.1 Header Commands
C-c C-f C-f2.1 Header Commands
C-c C-f C-k2.1 Header Commands
C-c C-f C-n2.1 Header Commands
C-c C-f C-o2.1 Header Commands
C-c C-f C-r2.1 Header Commands
C-c C-f C-s2.1 Header Commands
C-c C-f C-t2.1 Header Commands
C-c C-f C-u2.1 Header Commands
C-c C-i2.2 Movement
C-c C-k2.5 Sending
C-c C-n2.4 Various Commands
C-c C-q2.3 Insertion
C-c C-r2.4 Various Commands
C-c C-s2.5 Sending
C-c C-t2.4 Various Commands
C-c C-w2.3 Insertion
C-c C-y2.3 Insertion
C-c M-r2.4 Various Commands

Jump to:   C  


[Top] [Contents] [Index] [ ? ]

Table of Contents


[Top] [Contents] [Index] [ ? ]

Short Table of Contents

1. Interface
2. Commands
3. Variables
4. Index
5. Key Index

[Top] [Contents] [Index] [ ? ]

About this document

This document was generated by GNU software owner on June, 11 2000 using texi2html

The buttons in the navigation panels have the following meaning:

Button Name Go to From 1.2.3 go to
[ < ] Back previous section in reading order 1.2.2
[ > ] Forward next section in reading order 1.2.4
[ << ] FastBack previous or up-and-previous section 1.1
[ Up ] Up up section 1.2
[ >> ] FastForward next or up-and-next section 1.3
[Top] Top cover (top) of document  
[Contents] Contents table of contents  
[Index] Index concept index  
[ ? ] About this page  

where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure:

This document was generated by GNU software owner on June, 11 2000 using texi2html