| [Top] | [Contents] | [Index] | [ ? ] |
@insertcopying
All message composition from Gnus (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. Compatibility | Making Message backwards compatible. | |
| 5. Appendices | More technical things. | |
| 6. GNU Free Documentation License | The license for this documentation. | |
| 7. Index | Variable, function and concept index. | |
| 8. Key Index | List of Message mode keys. |
Message is distributed with Gnus. The Gnus distribution corresponding to this manual is No Gnus v0.11.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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. | |
| 1.11 Mailing Lists | Send mail to mailing lists. |
You can customize the Message Mode tool bar, see M-x customize-apropos RET message-tool-bar. This feature is only available in Emacs.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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
are nil, those two headers will be empty.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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 are nil, those two headers will be empty.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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
(see section 5.1 Responses), 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")
(list (cons 'To (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 list. In this case, it
returns ((To . "Whom")) 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.
Each list element should be a cons, where the CAR should be the
name of a header (e.g. Cc) and the CDR should be the header
value (e.g. `larsi@ifi.uio.no'). All these headers will be
inserted into the head of the outgoing mail.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The message-wide-reply pops up a message buffer that's a wide
reply to the message in the current buffer. A wide reply is a
reply that goes out to all people listed in the To, From
(or Reply-to) and Cc headers.
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 match the message-dont-reply-to-names regular
expression (or list of regular expressions) will be removed from the
Cc header. A value of nil means exclude your name only.
message-prune-recipient-rules is used to prune the addresses
used when doing a wide reply. It's meant to be used to remove
duplicate addresses and the like. It's a list of lists, where the
first element is a regexp to match the address to trigger the rule,
and the second is a regexp that will be expanded based on the first,
to match addresses to be pruned.
It's complicated to explain, but it's easy to use.
For instance, if you get an email from `foo@example.org', but
`foo@zot.example.org' is also in the Cc list, then your
wide reply will go out to both these addresses, since they are unique.
To avoid this, do something like the following:
(setq message-prune-recipient-rules
'(("^\\([^@]+\\)@\\(.*\\)" "\\1@.*[.]\\2")))
|
If, for instance, you want all wide replies that involve messages from `cvs@example.org' to go to that address, and nowhere else (i.e., remove all other recipients if `cvs@example.org' is in the recipient list:
(setq message-prune-recipient-rules
'(("cvs@example.org" ".")))
|
If message-wide-reply-confirm-recipients is non-nil you
will be asked to confirm that you want to reply to multiple
recipients. The default is nil.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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] | [ ? ] |
The message-cancel-news command cancels the article in the
current buffer.
The value of message-cancel-message is inserted in the body of
the cancel message. The default is `I am canceling my own
article.'.
When Message posts news messages, it inserts Cancel-Lock
headers by default. This is a cryptographic header that ensures that
only you can cancel your own messages, which is nice. The downside
is that if you lose your `.emacs' file (which is where Gnus
stores the secret cancel lock password (which is generated
automatically the first time you use this feature)), you won't be
able to cancel your message. If you want to manage a password yourself,
you can put something like the following in your `~/.gnus.el' file:
(setq canlock-password "geheimnis"
canlock-password-for-verify canlock-password)
|
Whether to insert the header or not is controlled by the
message-insert-canlock variable.
Not many news servers respect the Cancel-Lock header yet, but
this is expected to change in the future.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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:\\|^X-Trace:\\|^X-Complaints-To:\\|
Return-Path:\\|^Supersedes:\\|^NNTP-Posting-Date:\\|^X-Trace:\\|
^X-Complaints-To:\\|^Cancel-Lock:\\|^Cancel-Key:\\|^X-Hashcash:\\|
^X-Payment:\\|^Approved:'.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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-ignored-headers
message-make-forward-subject-function
The provided functions are:
message-forward-subject-author-subject
message-forward-subject-fwd
message-wash-forwarded-subjects
t, the subjects of forwarded messages have
the evidence of previous forwards (such as `Fwd:', `Re:',
`(fwd)') removed before the new subject is
constructed. The default value is nil.
message-forward-as-mime
t (the default), forwarded messages are
included as inline MIME RFC822 parts. If it's nil, forwarded
messages will just be copied inline to the new message, like previous,
non MIME-savvy versions of Gnus would do.
message-forward-before-signature
nil, put forwarded message before signature, else after.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The message-resend command will prompt the user for an address
and resend the message in the current buffer to that address.
Headers that match the message-ignored-resent-headers regexp will
be removed before sending the message.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The message-bounce command will, if the current buffer contains a
bounced mail message, pop up a message buffer stripped of the bounce
information. A bounced message is typically a mail you've sent
out that has been returned by some mailer-daemon as
undeliverable.
Headers that match the message-ignored-bounced-headers regexp
will be removed before popping up the buffer. The default is
`^\\(Received\\|Return-Path\\|Delivered-To\\):'.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Sometimes while posting to mailing lists, the poster needs to direct followups to the post to specific places. The Mail-Followup-To (MFT) was created to enable just this. Three example scenarios where this is useful:
Gnus honors the MFT header in other's messages (i.e. while following up to someone else's post) and also provides support for generating sensible MFT headers for outgoing messages as well.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The first step in getting Gnus to automagically generate a MFT header in posts you make is to give Gnus a list of the mailing lists addresses you are subscribed to. You can do this in more than one way. The following variables would come in handy.
message-subscribed-addresses
nil. Example:
(setq message-subscribed-addresses
'("ding@gnus.org" "bing@noose.org"))
|
message-subscribed-regexps
nil. Example: If you
want to achieve the same result as above:
(setq message-subscribed-regexps
'("\\(ding@gnus\\)\\|\\(bing@noose\\)\\.org")
|
message-subscribed-address-functions
nil.
There is a pre-defined function in Gnus that is a good candidate for
this variable. gnus-find-subscribed-addresses is a function
that returns a list of addresses corresponding to the groups that have
the subscribed (see section `Group Parameters' in The Gnus Manual) group parameter set to a non-nil value.
This is how you would do it.
(setq message-subscribed-address-functions
'(gnus-find-subscribed-addresses))
|
message-subscribed-address-file
You can use one or more of the above variables. All their values are "added" in some way that works :-)
Now you are all set. Just start composing a message as you normally do. And just send it; as always. Just before the message is sent out, Gnus' MFT generation thingy kicks in and checks if the message already has a MFT field. If there is one, it is left alone. (Except if it's empty - in that case, the field is removed and is not replaced with an automatically generated one. This lets you disable MFT generation on a per-message basis.) If there is none, then the list of recipient addresses (in the To: and Cc: headers) is checked to see if one of them is a list address you are subscribed to. If none of them is a list address, then no MFT is generated; otherwise, a MFT is added to the other headers and set to the value of all addresses in To: and Cc:
Hm. "So", you ask, "what if I send an email to a list I am not
subscribed to? I want my MFT to say that I want an extra copy." (This
is supposed to be interpreted by others the same way as if there were no
MFT, but you can use an explicit MFT to override someone else's
to-address group parameter.) The function
message-generate-unsubscribed-mail-followup-to might come in
handy. It is bound to C-c C-f C-a by default. In any case, you
can insert a MFT of your own choice; C-c C-f C-m
(message-goto-mail-followup-to) will help you get started.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
When you followup to a post on a mailing list, and the post has a MFT
header, Gnus' action will depend on the value of the variable
message-use-mail-followup-to. This variable can be one of:
use
nil
ask
It is considered good netiquette to honor MFT, as it is assumed the fellow who posted a message knows where the followups need to go better than you do.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 2.1 Buffer Entry | Commands after entering a Message buffer. | |
| 2.2 Header Commands | Commands for moving headers or changing headers. | |
| 2.3 Movement | Moving around in message buffers. | |
| 2.4 Insertion | Inserting things into message buffers. | |
| 2.5 MIME | MIME considerations. | |
| 2.6 IDNA | Non-ASCII domain name considerations. | |
| 2.7 Security | Signing and encrypting messages. | |
| 2.8 Various Commands | Various things. | |
| 2.9 Sending | Actually sending the message. | |
| 2.10 Mail Aliases | How to use mail aliases. | |
| 2.11 Spelling | Having Emacs check your spelling. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
You most often end up in a Message buffer when responding to some other message of some sort. Message does lots of handling of quoted text, and may remove signatures, reformat the text, or the like--depending on which used settings you're using. Message usually gets things right, but sometimes it stumbles. To help the user unwind these stumblings, Message sets the undo boundary before each major automatic action it takes. If you press the undo key (usually located at C-_) a few times, you will get back the un-edited message you're responding to.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
These following commands move to the header in question. If it doesn't exist, it will be inserted.
To header (message-goto-to).
From header (message-goto-from). (The "o"
in the key binding is for Originator.)
Bcc header (message-goto-bcc).
Fcc header (message-goto-fcc).
Cc header (message-goto-cc).
Subject header (message-goto-subject).
Reply-To header (message-goto-reply-to).
Newsgroups header (message-goto-newsgroups).
Distribution header (message-goto-distribution).
Followup-To header (message-goto-followup-to).
Keywords header (message-goto-keywords).
Summary header (message-goto-summary).
user-mail-address.
If the optional argument include-cc is non-nil, the
addresses in the `Cc:' header are also put into the
`Mail-Followup-To:' header.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-header-format-alist
(message-sort-headers).
To header that contains the Reply-To or
From header of the message you're following up
(message-insert-to).
Newsgroups header that reflects the Followup-To
or Newsgroups header of the article you're replying to
(message-insert-newsgroups).
To: and Cc: headers.
message-insert-disposition-notification-to).
This means that if the recipient supports RFC 2298 she might send you a
notification that she received the message.
message-subject-trailing-was-query
(see section 3.1 Message Headers).
message-cross-post-default is nil or if this command is
called with a prefix-argument, only the `FollowUp-To' header will
be set but the target newsgroup will not be added to the
`Newsgroups' header. The function to insert a note is controlled
by the message-cross-post-note-function variable.
message-archive-header and message-archive-note. When
called with a prefix argument, ask for a text to insert. If you don't
want the note in the body, set message-archive-note to
nil.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-goto-body).
message-goto-signature).
message-beginning-of-line.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-yank-original).
message-yank-buffer).
message-fill-yanked-message). Warning:
Can severely mess up the yanked text if its quoting conventions are
strange. You'll quickly get a feel for when it's safe, though. Anyway,
just remember that C-x u (undo) is available and you'll be
all right.
message-insert-signature).
message-insert-headers).
message-mark-insert-begin and message-mark-insert-end.
When called with a prefix argument, use slrn style verbatim marks
(`#v+' and `#v-').
message-mark-insert-begin and message-mark-insert-end.
When called with a prefix argument, use slrn style verbatim marks
(`#v+' and `#v-').
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Message is a MIME-compliant posting agent. The user generally
doesn't have to do anything to make the MIME happen--Message will
automatically add the Content-Type and
Content-Transfer-Encoding headers.
The most typical thing users want to use the multipart things in MIME for is to add "attachments" to mail they send out. This can be done with the C-c C-a command (M-x mml-attach-file), which will prompt for a file name and a MIME type.
If your Emacs supports drag and drop, you can also drop the file in the
Message buffer. The variable mml-dnd-protocol-alist specifies
what kind of action is done when you drop a file into the Message
buffer. The variable mml-dnd-attach-options controls which
MIME options you want to specify when dropping a file. If it
is a list, valid members are type, description and
disposition. disposition implies type. If it is
nil, don't ask for options. If it is t, ask the user
whether or not to specify options.
You can also create arbitrarily complex multiparts using the MML language (see section `Composing' in The Emacs MIME Manual).
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Message is a IDNA-compliant posting agent. The user
generally doesn't have to do anything to make the IDNA
happen--Message will encode non-ASCII domain names in From,
To, and Cc headers automatically.
Until IDNA becomes more well known, Message queries you whether IDNA encoding of the domain name really should occur. Some users might not be aware that domain names can contain non-ASCII now, so this gives them a safety net if they accidently typed a non-ASCII domain name.
The message-use-idna variable control whether IDNA is
used. If the variable is nil no IDNA encoding will
ever happen, if it is set to the symbol ask the user will be
queried, and if set to t (which is the default if IDNA
is fully available) IDNA encoding happens automatically.
If you want to experiment with the IDNA encoding, you can invoke M-x message-idna-to-ascii-rhs RET in the message buffer to have the non-ASCII domain names encoded while you edit the message.
Note that you must have GNU Libidn installed in order to use this functionality.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Using the MML language, Message is able to create digitally signed and digitally encrypted messages. Message (or rather MML) currently support PGP (RFC 1991), PGP/MIME (RFC 2015/3156) and S/MIME.
| 2.7.1 Signing and encrypting commands | ||
| 2.7.2 Using S/MIME | ||
| 2.7.3 Using PGP/MIME | ||
| 2.7.4 Compatibility with older implementations |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Instructing MML to perform security operations on a MIME part is done using the C-c C-m s key map for signing and the C-c C-m c key map for encryption, as follows.
Digitally sign current message using S/MIME.
Digitally sign current message using PGP.
Digitally sign current message using PGP/MIME.
Digitally encrypt current message using S/MIME.
Digitally encrypt current message using PGP.
Digitally encrypt current message using PGP/MIME.
These commands do not immediately sign or encrypt the message, they merely insert the proper MML secure tag to instruct the MML engine to perform that operation when the message is actually sent. They may perform other operations too, such as locating and retrieving a S/MIME certificate of the person you wish to send encrypted mail to. When the mml parsing engine converts your MML into a properly encoded MIME message, the secure tag will be replaced with either a part or a multipart tag. If your message contains other mml parts, a multipart tag will be used; if no other parts are present in your message a single part tag will be used. This way, message mode will do the Right Thing (TM) with signed/encrypted multipart messages.
Since signing and especially encryption often is used when sensitive
information is sent, you may want to have some way to ensure that your
mail is actually signed or encrypted. After invoking the above
sign/encrypt commands, it is possible to preview the raw article by
using C-u C-c RET P (mml-preview). Then you can
verify that your long rant about what your ex-significant other or
whomever actually did with that funny looking person at that strange
party the other night, actually will be sent encrypted.
Note! Neither PGP/MIME nor S/MIME encrypt/signs RFC822 headers. They only operate on the MIME object. Keep this in mind before sending mail with a sensitive Subject line.
By default, when encrypting a message, Gnus will use the
"signencrypt" mode, which means the message is both signed and
encrypted. If you would like to disable this for a particular
message, give the mml-secure-message-encrypt-* command a prefix
argument, e.g., C-u C-c C-m c p.
Actually using the security commands above is not very difficult. At least not compared with making sure all involved programs talk with each other properly. Thus, we now describe what external libraries or programs are required to make things work, and some small general hints.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Note! This section assume you have a basic familiarity with modern cryptography, S/MIME, various PKCS standards, OpenSSL and so on.
The S/MIME support in Message (and MML) require OpenSSL. OpenSSL performs the actual S/MIME sign/encrypt operations. OpenSSL can be found at http://www.openssl.org/. OpenSSL 0.9.6 and later should work. Version 0.9.5a cannot extract mail addresses from certificates, and it insert a spurious CR character into MIME separators so you may wish to avoid it if you would like to avoid being regarded as someone who send strange mail. (Although by sending S/MIME messages you've probably already lost that contest.)
To be able to send encrypted mail, a personal certificate is not
required. Message (MML) need a certificate for the person to whom you
wish to communicate with though. You're asked for this when you type
C-c C-m c s. Currently there are two ways to retrieve this
certificate, from a local file or from DNS. If you chose a local
file, it need to contain a X.509 certificate in PEM format.
If you chose DNS, you're asked for the domain name where the
certificate is stored, the default is a good guess. To my belief,
Message (MML) is the first mail agent in the world to support
retrieving S/MIME certificates from DNS, so you're not
likely to find very many certificates out there. At least there
should be one, stored at the domain simon.josefsson.org. LDAP
is a more popular method of distributing certificates, support for it
is planned. (Meanwhile, you can use ldapsearch from the
command line to retrieve a certificate into a file and use it.)
As for signing messages, OpenSSL can't perform signing operations
without some kind of configuration. Especially, you need to tell it
where your private key and your certificate is stored. MML
uses an Emacs interface to OpenSSL, aptly named smime.el, and it
contain a custom group used for this configuration. So, try
M-x customize-group RET smime RET and look around.
Currently there is no support for talking to a CA (or RA) to create your own certificate. None is planned either. You need to do this manually with OpenSSL or using some other program. I used Netscape and got a free S/MIME certificate from one of the big CA's on the net. Netscape is able to export your private key and certificate in PKCS #12 format. Use OpenSSL to convert this into a plain X.509 certificate in PEM format as follows.
$ openssl pkcs12 -in ns.p12 -clcerts -nodes > key+cert.pem |
The `key+cert.pem' file should be pointed to from the
smime-keys variable. You should now be able to send signed mail.
Note! Your private key is now stored unencrypted in the file,
so take care in handling it. Storing encrypted keys on the disk are
supported, and Gnus will ask you for a passphrase before invoking
OpenSSL. Read the OpenSSL documentation for how to achieve this. If
you use unencrypted keys (e.g., if they are on a secure storage, or if
you are on a secure single user machine) simply press RET at
the passphrase prompt.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
PGP/MIME requires an external OpenPGP implementation, such
as GNU Privacy Guard. Pre-OpenPGP
implementations such as PGP 2.x and PGP 5.x are also supported. One
Emacs interface to the PGP implementations, PGG (see section `PGG' in PGG Manual), is included, but Mailcrypt and Florian Weimer's
gpg.el are also supported. See section 2.7.4 Compatibility with older implementations.
Message internally calls GnuPG (the gpg command) to perform
data encryption, and in certain cases (decrypting or signing for
example), gpg requires user's passphrase. Currently the
recommended way to supply your passphrase to gpg is to use the
gpg-agent program.
To use gpg-agent in Emacs, you need to run the following
command from the shell before starting Emacs.
eval `gpg-agent --daemon` |
This will invoke gpg-agent and set the environment variable
GPG_AGENT_INFO to allow gpg to communicate with it.
It might be good idea to put this command in your `.xsession' or
`.bash_profile'. See section `Invoking GPG-AGENT' in Using the GNU Privacy Guard.
Once your gpg-agent is set up, it will ask you for a
passphrase as needed for gpg. Under the X Window System,
you will see a new passphrase input dialog appear. The dialog is
provided by PIN Entry (the pinentry command), and as of
version 0.7.2, pinentry cannot cooperate with Emacs on a
single tty. So, if you are using a text console, you may need to put
a passphrase into gpg-agent's cache beforehand. The following command
does the trick.
gpg --use-agent --sign < /dev/null > /dev/null |
The Lisp variable pgg-gpg-use-agent controls whether to use
gpg-agent. See also See section `Caching passphrase' in The PGG Manual.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Note, if you are using the gpg.el you must make sure that the
directory specified by gpg-temp-directory have permissions
0700.
Creating your own key is described in detail in the documentation of your PGP implementation, so we refer to it.
If you have imported your old PGP 2.x key into GnuPG, and want to send
signed and encrypted messages to your fellow PGP 2.x users, you'll
discover that the receiver cannot understand what you send. One
solution is to use PGP 2.x instead (i.e., if you use pgg, set
pgg-default-scheme to pgp). If you do want to use
GnuPG, you can use a compatibility script called gpg-2comp
available from
http://muppet.faveve.uni-stuttgart.de/~gero/gpg-2comp/. You
could also convince your fellow PGP 2.x users to convert to GnuPG.
As a final workaround, you can make the sign and encryption work in
two steps; separately sign, then encrypt a message. If you would like
to change this behavior you can customize the
mml-signencrypt-style-alist variable. For example:
(setq mml-signencrypt-style-alist '(("smime" separate)
("pgp" separate)
("pgpauto" separate)
("pgpmime" separate)))
|
This causes to sign and encrypt in two passes, thus generating a message that can be understood by PGP version 2.
(Refer to http://www.gnupg.org/gph/en/pgp2x.html for more information about the problem.)
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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.
message-elide-region).
The text is killed and replaced with the contents of the variable
message-elide-ellipsis. The default value is to use an ellipsis
(`[...]').
message-kill-to-signature).
message-delete-not-region).
Here's an example:
> This is some quoted text. And here's more quoted text. |
If point is before `And' and you press M-RET, you'll get:
> This is some quoted text. * > And here's more quoted text. |
`*' says where point will be placed.
message-rename-buffer). If given a prefix,
prompt for a new buffer name.
message-tab-body-function is non-nil, execute the
function it specifies. Otherwise use the function bound to TAB in
text-mode-map or global-map.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-send-and-exit).
message-send).
message-dont-send).
message-kill-buffer).
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The message-mail-alias-type variable controls what type of mail
alias expansion to use. Currently two forms are supported:
mailabbrev and ecomplete. If this variable is
nil, no mail alias expansion will be performed.
mailabbrev works by parsing the `/etc/mailrc' and
`~/.mailrc' files. These files look like:
alias lmi "Lars Magne Ingebrigtsen <larsi@ifi.uio.no>" alias ding "ding@ifi.uio.no (ding mailing list)" |
After adding lines like this to your `~/.mailrc' file, you should
be able to just write `lmi' in the To or Cc (and so
on) headers and press SPC to expand the alias.
No expansion will be performed upon sending of the message--all expansions have to be done explicitly.
If you're using ecomplete, all addresses from To and
Cc headers will automatically be put into the
`~/.ecompleterc' file. When you enter text in the To and
Cc headers, ecomplete will check out the values stored
there and "electrically" say what completions are possible. To
choose one of these completions, use the M-n command to move
down to the list. Use M-n and M-p to move down and up the
list, and RET to choose a completion.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
There are two popular ways to have Emacs spell-check your messages:
ispell and flyspell. ispell is the older and
probably more popular package. You typically first write the message,
and then run the entire thing through ispell and fix all the
typos. To have this happen automatically when you send a message, put
something like the following in your `.emacs' file:
(add-hook 'message-send-hook 'ispell-message) |
If you're in the habit of writing in different languages, this can be
controlled by the ispell-message-dictionary-alist variable:
(setq ispell-message-dictionary-alist
'(("^Newsgroups:.*\\bde\\." . "deutsch8")
(".*" . "default")))
|
ispell depends on having the external `ispell' command
installed.
The other popular method is using flyspell. This package checks
your spelling while you're writing, and marks any mis-spelled words in
various ways.
To use flyspell, put something like the following in your
`.emacs' file:
(defun my-message-setup-routine () (flyspell-mode 1)) (add-hook 'message-setup-hook 'my-message-setup-routine) |
flyspell depends on having the external `ispell' command
installed.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 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 Insertion Variables | Customizing how things are inserted. | |
| 3.7 Various Message Variables | Other message variables. | |
| 3.8 Sending Variables | Variables for sending. | |
| 3.9 Message Buffers | How Message names its buffers. | |
| 3.10 Message Actions | Actions to be performed when exiting. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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 (instead of letting the mail/news system do it) to ensure that mail and news copies of messages look sufficiently similar.
message-generate-headers-first
t, generate all required headers before starting to
compose the message. This can also be a list of headers to generate:
(setq message-generate-headers-first
'(References))
|
The variables message-required-headers,
message-required-mail-headers and
message-required-news-headers specify which headers are
required.
Note that some headers will be removed and re-generated before posting,
because of the variable message-deletable-headers (see below).
message-draft-headers
message-draft-headers says which headers
should be generated when a draft is written to the draft group.
message-from-style
From headers should look. There are four valid
values:
nil
parens
angles
default
angles if that doesn't require quoting, and
parens if it does. If even parens requires quoting, use
angles anyway.
message-deletable-headers
*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
message-subject-re-regexp
Here's an example of a value to deal with these headers when responding to a message:
(setq message-subject-re-regexp
(concat
"^[ \t]*"
"\\("
"\\("
"[Aa][Nn][Tt][Ww]\\.?\\|" ; antw
"[Aa][Ww]\\|" ; aw
"[Ff][Ww][Dd]?\\|" ; fwd
"[Oo][Dd][Pp]\\|" ; odp
"[Rr][Ee]\\|" ; re
"[Rr][\311\351][Ff]\\.?\\|" ; ref
"[Ss][Vv]" ; sv
"\\)"
"\\(\\[[0-9]*\\]\\)"
"*:[ \t]*"
"\\)"
"*[ \t]*"
))
|
message-subject-trailing-was-query
nil, leave the subject unchanged. If it is the symbol
ask, query the user what to do. In this case, the subject is
matched against message-subject-trailing-was-ask-regexp. If
message-subject-trailing-was-query is t, always strip the
trailing old subject. In this case,
message-subject-trailing-was-regexp is used.
message-alternative-emails
For example, if you have two secondary email addresses john@home.net and john.doe@work.com and want to use them in the From field when composing a reply to a message addressed to one of them, you could set this variable like this:
(setq message-alternative-emails
(regexp-opt '("john@home.net" "john.doe@work.com")))
|
This variable has precedence over posting styles and anything that runs
off message-setup-hook.
message-allow-no-recipients
Gcc or Fcc. If it is always, the posting is
allowed. If it is never, the posting is not allowed. If it is
ask (the default), you are prompted.
message-hidden-headers
not and the rest are regexps. It says which headers to keep
hidden when composing a message.
(setq message-hidden-headers
'(not "From" "Subject" "To" "Cc" "Newsgroups"))
|
Headers are hidden using narrowing, you can use M-x widen to expose them in the buffer.
message-header-synonyms
Cc and To, then
message-carefully-insert-headers will not insert a To
header when the message is already Cced to the recipient.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-required-mail-headers
(From Subject Date (optional . In-Reply-To) Message-ID
(optional . User-Agent)) by default.
message-ignored-mail-headers
message-default-mail-headers
message-generate-hashcash
opportunistic, only generate the headers
when it doesn't lead to the user having to wait.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-send-mail-function
message-send-mail-with-sendmail, or smtpmail-send-it
according to the system. Other valid values include
message-send-mail-with-mailclient,
message-send-mail-with-mh, message-send-mail-with-qmail,
message-smtpmail-send-it and feedmail-send-it.
The function
message-send-mail-with-sendmail pipes your article to the
sendmail binary for further queuing and sending. When your local
system is not configured for sending mail using sendmail, and you
have access to a remote SMTP server, you can set
message-send-mail-function to smtpmail-send-it and make
sure to setup the smtpmail package correctly. An example:
(setq message-send-mail-function 'smtpmail-send-it
smtpmail-default-smtp-server "YOUR SMTP HOST")
|
To the thing similar to this, there is
message-smtpmail-send-it. It is useful if your ISP
requires the POP-before-SMTP authentication.
See section `POP before SMTP' in The Gnus Manual.
message-mh-deletable-headers
nil (which is
the default), these headers will be removed before mailing when sending
messages via MH. Set it to nil if your MH can handle these
headers.
message-qmail-inject-program
message-qmail-inject-args
For e.g., if you wish to set the envelope sender address so that bounces
go to the right place or to deal with listserv's usage of that address, you
might set this variable to '("-f" "you@some.where").
message-sendmail-f-is-evil
nil means don't add `-f username' to the sendmail
command line. Doing so would be even more evil than leaving it out.
message-sendmail-envelope-from
message-sendmail-f-is-evil is nil, this specifies
the address to use in the SMTP envelope. If it is
nil, use user-mail-address. If it is the symbol
header, use the `From' header of the message.
message-mailer-swallows-blank-line
nil if the system's mailer runs the header and
body together. (This problem exists on SunOS 4 when sendmail is run
in remote mode.) The value should be an expression to test whether
the problem will actually occur.
message-send-mail-partially-limit
nil (which is the default), the
size is unlimited.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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 valid:
From
message-make-from function, which depends on the
message-from-style, user-full-name,
user-mail-address variables.
Subject
Newsgroups
Organization
message-user-organization variable.
message-user-organization-file will be used if this variable is
t. This variable can also be a string (in which case this string
will be used), or it can be a function (which will be called with no
parameters and should return a string to be used).
Lines
Message-ID
message-user-fqdn, system-name, mail-host-address
and message-user-mail-address (i.e. user-mail-address)
until a probably valid fully qualified domain name (FQDN) was found.
User-Agent
message-newsreader local variable.
In-Reply-To
Date and From
header of the article being replied to.
Expires
message-expires variable. It is highly deprecated and shouldn't
be used unless you know what you're doing.
Distribution
message-distribution-function variable. It is a deprecated and
much misunderstood header.
Path
message-user-path further controls how this
Path header is to look. If it is nil, use the server name
as the leaf node. If it 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.
If you want to delete an entry from this list, the following Lisp snippet might be useful. Adjust accordingly if you want to remove another element.
(setq message-required-news-headers
(delq 'Message-ID message-required-news-headers))
|
Other variables for customizing outgoing news articles:
message-syntax-checks
(signature . disabled) |
to this list.
Valid checks are:
approved
Approved header, which is
something only moderators should include.
continuation-headers
control-chars
empty
existing-newsgroups
Newsgroups and
Followup-To headers exist.
from
From header seems nice.
illegible-text
invisible-text
long-header-lines
long-lines
message-id
Message-ID looks syntactically ok.
multiple-headers
new-text
newsgroups
Newsgroups header exists and is not empty.
quoting-style
repeated-newsgroups
Newsgroups and Followup-to headers
contains repeated group names.
reply-to
Reply-To header looks ok.
sender
Sender header if the From header looks odd.
sendsys
shoot
Message-ID header looks ok.
shorten-followup-to
Followup-to header to shorten the number
of groups to post to.
signature
size
subject
Subject header exists and is not empty.
subject-cmsg
valid-newsgroups
Newsgroups and Followup-to headers
are valid syntactically.
All these conditions are checked by default, except for sender
for which the check is disabled by default if
message-insert-canlock is non-nil (see section 1.6 Canceling News).
message-ignored-news-headers
message-default-news-headers
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-send-news-function
message-send-news.
message-post-method
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-ignored-cited-headers
message-cite-prefix-regexp
message-citation-line-function
message-insert-citation-line, which will lead to citation lines
that look like:
Hallvard B Furuseth <h.b.furuseth@usit.uio.no> writes: |
Point will be at the beginning of the body of the message when this function is called.
Note that Gnus provides a feature where clicking on `writes:' hides the
cited text. If you change the citation line too much, readers of your
messages will have to adjust their Gnus, too. See the variable
gnus-cite-attribution-suffix. See section `Article Highlighting' in The Gnus Manual, for details.
message-yank-prefix
message-yank-prefix prepended to it (except for quoted lines
which use message-yank-cited-prefix and empty lines which use
message-yank-empty-prefix). The default is `> '.
message-yank-cited-prefix
message-yank-prefix.
message-yank-empty-prefix
message-yank-prefix.
message-indentation-spaces
message-cite-function
message-cite-original, which simply inserts the original message
and prepends `> ' to each line.
message-cite-original-without-signature does the same, but elides
the signature.
message-indent-citation-function
(point) and (mark t). And each function
should leave point and mark around the citation text as modified.
message-mark-insert-begin
message-mark-insert-end
message-signature
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
message-signature-directory is ignored, even if set.
The default is `~/.signature'.
message-signature-directory
nil (the default), message-signature-file is expected
to specify the directory if needed.
message-signature-insert-empty-line
t (the default value) an empty line is inserted before the
signature separator.
Note that RFC1036bis 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 your 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] | [ ? ] |
message-default-charset
iso-8859-1 on non-MULE Emacsen; otherwise nil,
which means ask the user. (This variable is used only on non-MULE
Emacsen.) See section `Charset Translation' in Emacs MIME Manual, for details on the MULE-to-MIME
translation process.
message-fill-column
message-signature-separator
mail-header-separator
message-directory
message-directory.
message-auto-save-directory
nil, Message won't auto-save. The default is `~/Mail/drafts/'.
message-signature-setup-hook
message-setup-hook
message-header-setup-hook
For instance, if you're running Gnus and wish to insert a `Mail-Copies-To' header in all your news articles and all messages you send to mailing lists, you could do something like the following:
(defun my-message-header-setup-hook ()
(let ((group (or gnus-newsgroup-name "")))
(when (or (message-fetch-field "newsgroups")
(gnus-group-find-parameter group 'to-address)
(gnus-group-find-parameter group 'to-list))
(insert "Mail-Copies-To: never\n"))))
(add-hook 'message-header-setup-hook
'my-message-header-setup-hook)
|
message-send-hook
If you want to add certain headers before sending, you can use the
message-add-header function in this hook. For instance:
(add-hook 'message-send-hook 'my-message-add-content) (defun my-message-add-content () (message-add-header "X-In-No-Sense: Nonsense") (message-add-header "X-Whatever: no")) |
This function won't add the header if the header is already present.
message-send-mail-hook
message-send-news-hook
message-sent-hook
message-cancel-hook
message-mode-syntax-table
message-cite-articles-with-x-no-archive
nil, don't strip quoted text from articles that have
`X-No-Archive' set. Even if this variable isn't set, you can
undo the stripping by hitting the undo keystroke.
message-strip-special-text-properties
message-send-method-alist
(type predicate function) |
nil.
function is called with one parameter--the prefix.
The default is:
((news message-news-p message-send-via-news) (mail message-mail-p message-send-via-mail)) |
The message-news-p function returns non-nil if the message
looks like news, and the message-send-via-news function sends the
message according to the message-send-news-function variable
(see section 3.5 News Variables). The message-mail-p function returns
non-nil if the message looks like mail, and the
message-send-via-mail function sends the message according to the
message-send-mail-function variable (see section 3.3 Mail Variables).
All the elements in this alist will be tried in order, so a message containing both a valid `Newsgroups' header and a valid `To' header, for example, will be sent as news, and then as mail.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
message-fcc-handler-function
message-output which saves in Unix mailbox format.
message-courtesy-message
nil, no such courtesy message will be added.
The default value is `"The following message is a courtesy copy of
an article\\nthat has been posted to %s as well.\\n\\n"'.
message-fcc-externalize-attachments
nil, attach files as normal parts in Fcc copies; if it is
non-nil, attach local files as external parts.
message-interactive
nil wait for and display errors when sending a message;
if nil let the mailer mail back a message to report errors.
message-confirm-send
nil, Gnus will ask for confirmation when sending a
message.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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. Its name is changed and a certain number of old message buffers are kept alive.
message-generate-new-buffers
nil
unique
t
unsent
unique but the buffer name begins with "*unsent ".
standard
nil but the buffer name is simpler like *mail
message*.
nil). The function should return the new buffer name.
The default value is unique.
message-max-buffers
nil, no old message buffers
will ever be killed.
message-send-rename-function
(setq message-send-rename-function 'ignore) |
message-kill-buffer-on-exit
nil, kill the buffer immediately on exit.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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] | [ ? ] |
Message uses virtually only its own variables--older mail-
variables aren't consulted. To force Message to take those variables
into account, you can put the following in your `.emacs' file:
(require 'messcompat) |
This will initialize many Message variables from the values in the corresponding mail variables.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| 5.1 Responses | Standard rules for determining where responses go. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
To determine where a message is to go, the following algorithm is used by default.
Reply-To
From
To/Cc headers:
From
Reply-To, in which case that is used instead).
Cc
To
If a Mail-Copies-To header is present, it will also be included
in the list of mailboxes. If this header is `never', that means
that the From (or Reply-To) mailbox will be suppressed.
Followup-To
Newsgroups
If a Mail-Copies-To header is present, it will be used as the
basis of the new Cc header, except if this header is
`never'.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. |
The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.
This License is a kind of "copyleft," which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.
We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.
This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document," below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you." You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.
A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.
The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.
The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.
A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque."
Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.
The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.
A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements," "Dedications," "Endorsements," or "History.") To "Preserve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this definition.
The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.
You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly display copies.
If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.
If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.
It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.
You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History," Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications,"
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements." Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled "Endorsements," provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.
You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version.
You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "History"; likewise combine any sections Entitled "Acknowledgements," and any sections Entitled "Dedications." You must delete all sections Entitled "Endorsements."
You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document.
A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate.
Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.
If a section in the Document is Entitled "Acknowledgements," "Dedications," or "History," the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title.
You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page:
Copyright (C) year your name. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License.'' |
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the "with...Texts." line with this:
with the Invariant Sections being list their titles, with the Front-Cover Texts being list, and with the Back-Cover Texts being list. |
If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation.
If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| Jump to: | A C D E F G I L M N O P Q R S U X Y |
|---|
| Jump to: | A C D E F G I L M N O P Q R S U X Y |
|---|
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| Jump to: | C M T |
|---|
| Jump to: | C M T |
|---|
| [Top] | [Contents] | [Index] | [ ? ] |
1. Interface
1.1 New Mail Message2. Commands
1.2 New News Message
1.3 Reply
1.4 Wide Reply
1.5 Followup
1.6 Canceling News
1.7 Superseding
1.8 Forwarding
1.9 Resending
1.10 Bouncing
1.11 Mailing Lists
1.11.1 Composing a correct MFT header automagically
1.11.2 Honoring an MFT post
2.1 Buffer Entry3. Variables
2.2 Header Commands
2.2.1 Commands for moving to headers2.3 Movement
2.2.2 Commands to change headers
2.4 Insertion
2.5 MIME
2.6 IDNA
2.7 Security
2.7.1 Signing and encrypting commands2.8 Various Commands
2.7.2 Using S/MIME
2.7.3 Using PGP/MIME
2.7.4 Compatibility with older implementations
2.9 Sending
2.10 Mail Aliases
2.11 Spelling
3.1 Message Headers4. Compatibility
3.2 Mail Headers
3.3 Mail Variables
3.4 News Headers
3.5 News Variables
3.6 Insertion Variables
3.7 Various Message Variables
3.8 Sending Variables
3.9 Message Buffers
3.10 Message Actions
5. Appendices
5.1 Responses6. GNU Free Documentation License
ADDENDUM: How to use this License for your documents7. Index
8. Key Index
| [Top] | [Contents] | [Index] | [ ? ] |
1. Interface
2. Commands
3. Variables
4. Compatibility
5. Appendices
6. GNU Free Documentation License
7. Index
8. Key Index
| [Top] | [Contents] | [Index] | [ ? ] |
| 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 | beginning of this chapter or previous chapter | 1 |
| [ Up ] | Up | up section | 1.2 |
| [ >> ] | FastForward | next chapter | 2 |
| [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: