X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/14c29200cb58d3c4a0830265f2433849781858d0..3cb0055e1daab973b8d5fd1c4706248f031d10df:/doc/gettingstarted.html diff --git a/doc/gettingstarted.html b/doc/gettingstarted.html index 848b35c..feb9db7 100644 --- a/doc/gettingstarted.html +++ b/doc/gettingstarted.html @@ -1,387 +1,389 @@ -Chapter 2. Getting Started

Chapter 2. Getting Started

Table of Contents

1. Moving Around in Menus
2. Editing Input Fields
2.1. Introduction
2.2. History
3. Reading Mail - The Index and Pager
3.1. The Message Index
3.2. The Pager
3.3. Threaded Mode
3.4. Miscellaneous Functions
4. Sending Mail
4.1. Editing the message header
4.2. Using Mutt with PGP
4.3. Sending anonymous messages via mixmaster.
4.4. Sending format=flowed messages
5. Forwarding and Bouncing Mail
6. Postponing Mail

+Chapter 2. Getting Started

Chapter 2. Getting Started

This section is intended as a brief overview of how to use Mutt. There are many other features which are described elsewhere in the manual. There is even more information available in the Mutt FAQ and various web -pages. See the Mutt Page for more details. +pages. See the Mutt homepage for more details.

The keybindings described in this section are the defaults as distributed. Your local system administrator may have altered the defaults for your site. -You can always type ``?'' in any menu to display the current bindings. -

-The first thing you need to do is invoke mutt, simply by typing mutt -at the command line. There are various command-line options, see -either the mutt man page or the reference. -

1. Moving Around in Menus

-Information is presented in menus, very similar to ELM, see Table 2.1, “Most common navigation keys” -for common keys used to navigate menus in Mutt. -

- -

Table 2.1. Most common navigation keys

KeyFunctionDescription
j or Downnext-entrymove to the next entry
k or Upprevious-entrymove to the previous entry
z or PageDnpage-downgo to the next page
Z or PageUppage-upgo to the previous page
= or Homefirst-entryjump to the first entry
* or Endlast-entryjump to the last entry
qquitexit the current menu
?helplist all keybindings for the current menu


- -

2. Editing Input Fields

2.1. Introduction

+You can always type “?” in any menu to display the current bindings. +

+The first thing you need to do is invoke mutt, simply by typing mutt +at the command line. There are various command-line options, see +either the mutt man page or the reference. +

1. Core concepts

+Mutt is a text-based application which interacts with users through +different menus which are mostly line-/entry-based or page-based. A +line-based menu is the so-called “index” menu (listing all messages of +the currently opened folder) or the “alias” menu (allowing you to +select recipients from a list). Examples for page-based menus are the +“pager” (showing one message at a time) or the “help” menu listing +all available key bindings. +

+The user interface consists of a context sensitive help line at the top, +the menu's contents followed by a context sensitive status line and +finally the command line. The command line is used to display +informational and error messages as well as for prompts and for entering +interactive commands. +

+Because Mutt allows for customizing almost all key bindings, there are +so-called “functions” which can be executed manually (using the +command line) or in macros. Macros allow the user to bind a sequence of +commands to a single key or a short key sequence instead of repeating a +sequence of actions over and over. +

+Many commands (such as saving or copying a message to another folder) +can be applied to a single message or a set of messages (so-called +“tagged” messages). To help selecting messages, Mutt provides a rich +set of message patterns (such as recipients, sender, body contents, date +sent/received, etc.) which can be combined into complex expressions +using the boolean and and or +operations as well as negating. These patterns can also be used to (for +example) search for messages or to limit the index to show only matching +messages. +

+Mutt supports a “hook” concept which allows the user to execute +arbitrary configuration commands and functions in certain situations +such as entering a folder, starting a new message or replying to an +existing one. These hooks can be used to highly customize Mutt's +behaviour including managing multiple identities, customizing the +display for a folder or even implementing auto-archiving based on a +per-folder basis and much more. +

2. Moving Around in Menus

+The most important navigation keys common to all menus are shown in +Table 2.1, “Most common navigation keys”. +

Table 2.1. Most common navigation keys

KeyFunctionDescription
j or <Down><next-entry>move to the next entry
k or <Up><previous-entry>move to the previous entry
z or <PageDn><page-down>go to the next page
Z or <PageUp><page-up>go to the previous page
= or <Home><first-entry>jump to the first entry
* or <End><last-entry>jump to the last entry
q<quit>exit the current menu
?<help>list all keybindings for the current menu

3. Editing Input Fields

3.1. Introduction

Mutt has a built-in line editor for inputting text, e.g. email addresses or filenames. The keys used to manipulate text input are -very similar to those of Emacs. See Table 2.2, “Most common line editor keys” for a full +very similar to those of Emacs. See Table 2.2, “Most common line editor keys” for a full reference of available functions, their default key bindings, and short descriptions. -

- -

Table 2.2. Most common line editor keys

KeyFunctionDescription
^A or <Home>bolmove to the start of the line
^B or <Left>backward-charmove back one char
Esc Bbackward-wordmove back one word
^D or <Delete>delete-chardelete the char under the cursor
^E or <End>eolmove to the end of the line
^F or <Right>forward-charmove forward one char
Esc Fforward-wordmove forward one word
<Tab>completecomplete filename or alias
^Tcomplete-querycomplete address with query
^Kkill-eoldelete to the end of the line
ESC dkill-eowdelete to the end ot the word
^Wkill-wordkill the word in front of the cursor
^Ukill-linedelete entire line
^Vquote-charquote the next typed key
<Up>history-uprecall previous string from history
<Down>history-downrecall next string from history
<BackSpace>backspacekill the char in front of the cursor
Esc uupcase-wordconvert word to upper case
Esc ldowncase-wordconvert word to lower case
Esc ccapitalize-wordcapitalize the word
^Gn/aabort
<Return>n/afinish editing


- -

+

Table 2.2. Most common line editor keys

KeyFunctionDescription
^A or <Home><bol>move to the start of the line
^B or <Left><backward-char>move back one char
Esc B<backward-word>move back one word
^D or <Delete><delete-char>delete the char under the cursor
^E or <End><eol>move to the end of the line
^F or <Right><forward-char>move forward one char
Esc F<forward-word>move forward one word
<Tab><complete>complete filename or alias
^T<complete-query>complete address with query
^K<kill-eol>delete to the end of the line
Esc d<kill-eow>delete to the end of the word
^W<kill-word>kill the word in front of the cursor
^U<kill-line>delete entire line
^V<quote-char>quote the next typed key
<Up><history-up>recall previous string from history
<Down><history-down>recall next string from history
<BackSpace><backspace>kill the char in front of the cursor
Esc u<upcase-word>convert word to upper case
Esc l<downcase-word>convert word to lower case
Esc c<capitalize-word>capitalize the word
^Gn/aabort
<Return>n/afinish editing

You can remap the editor functions using the -bind command. For example, to make -the Delete key delete the character in front of -the cursor rather than under, you could use +bind command. For example, to make +the <Delete> key delete the character in front of +the cursor rather than under, you could use:

 bind editor <delete> backspace
-

2.2. History

-The number of items in the built-in editor's history is controlled by -the $history variable. You may -cycle through them at an editor prompt by using the -history-up and/or history-down -commands. +

3.2. History

+Mutt maintains a history for the built-in editor. The number of items +is controlled by the $history +variable and can be made persistent using an external file specified +using $history_file. +You may cycle through them at an editor prompt by using the +<history-up> and/or +<history-down> commands.

Mutt maintains several distinct history lists, one for each of the following categories: -

  • muttrc commands

  • addresses and aliases

  • shell commands

  • filenames

  • patterns

  • everything else

-

Mutt automatically filters out repeated items from the history. It also mimics the behavior of some shells by ignoring items starting -with a space. -

-The latter feature can be useful in macros to not clobber the history's -valuable entries with unwanted entries. -

3. Reading Mail - The Index and Pager

+with a space. The latter feature can be useful in macros to not clobber +the history's valuable entries with unwanted entries. +

4. Reading Mail - The Index and Pager

Similar to many other mail clients, there are two modes in which mail is read in Mutt. The first is the index of messages in the mailbox, which is -called the ``index'' in Mutt. The second mode is the display of the -message contents. This is called the ``pager.'' +called the “index” in Mutt. The second mode is the display of the +message contents. This is called the “pager.”

The next few sections describe the functions provided in each of these modes. -

3.1. The Message Index

+

4.1. The Message Index

Common keys used to navigate through and manage messages in the index -are shown in Table 2.3, “Most common message index keys”. -

- -

Table 2.3. Most common message index keys

KeyDescription
cchange to a different mailbox
ESC cchange to a folder in read-only mode
Ccopy the current message to another mailbox
ESC Cdecode a message and copy it to a folder
ESC sdecode a message and save it to a folder
Ddelete messages matching a pattern
ddelete the current message
Fmark as important
lshow messages matching a pattern
Nmark message as new
ochange the current sort method
Oreverse sort the mailbox
qsave changes and exit
ssave-message
Ttag messages matching a pattern
ttoggle the tag on a message
ESC ttoggle tag on entire message thread
Uundelete messages matching a pattern
uundelete-message
vview-attachments
xabort changes and exit
<Return>display-message
<Tab>jump to the next new or unread message
@show the author's full e-mail address
$save changes to mailbox
/search
ESC /search-reverse
^Lclear and redraw the screen
^Tuntag messages matching a pattern


- -

3.1.1. Status Flags

+are shown in Table 2.3, “Most common message index keys”. How messages are presented +in the index menu can be customized using the +$index_format variable. +

Table 2.3. Most common message index keys

KeyDescription
cchange to a different mailbox
Esc cchange to a folder in read-only mode
Ccopy the current message to another mailbox
Esc Cdecode a message and copy it to a folder
Esc sdecode a message and save it to a folder
Ddelete messages matching a pattern
ddelete the current message
Fmark as important
lshow messages matching a pattern
Nmark message as new
ochange the current sort method
Oreverse sort the mailbox
qsave changes and exit
ssave-message
Ttag messages matching a pattern
ttoggle the tag on a message
Esc ttoggle tag on entire message thread
Uundelete messages matching a pattern
uundelete-message
vview-attachments
xabort changes and exit
<Return>display-message
<Tab>jump to the next new or unread message
@show the author's full e-mail address
$save changes to mailbox
/search
Esc /search-reverse
^Lclear and redraw the screen
^Tuntag messages matching a pattern

In addition to who sent the message and the subject, a short summary of the disposition of each message is printed beside the message number. -Zero or more of the following ``flags'' may appear, which mean: -

-

D

-message is deleted (is marked for deletion) -

d

-message have attachments marked for deletion -

K

-contains a PGP public key -

N

-message is new -

O

-message is old -

P

-message is PGP encrypted -

r

-message has been replied to -

S

-message is signed, and the signature is successfully verified -

s

-message is signed -

!

-message is flagged -

*

-message is tagged -

-

-Some of the status flags can be turned on or off using - -

  • -set-flag (default: w) -

  • -clear-flag (default: W) -

- -

-Furthermore, the following flags reflect who the message is addressed -to. They can be customized with the -$to_chars variable. -

-

+

-message is to you and you only -

T

-message is to you, but also to or cc'ed to others -

C

-message is cc'ed to you -

F

-message is from you -

L

-message is sent to a subscribed mailing list -

-

3.2. The Pager

-By default, Mutt uses its builtin pager to display the body of messages. +Zero or more of the “flags” in Table 2.4, “Message status flags” +may appear, some of which can be turned on or off using these functions: +<set-flag> and +<clear-flag> +bound by default to “w” and “W” respectively. +

+Furthermore, the flags in Table 2.5, “Message recipient flags” reflect +who the message is addressed to. They can be customized with the +$to_chars variable. +

Table 2.4. Message status flags

FlagDescription
Dmessage is deleted (is marked for deletion)
dmessage has attachments marked for deletion
Kcontains a PGP public key
Nmessage is new
Omessage is old
Pmessage is PGP encrypted
rmessage has been replied to
Smessage is signed, and the signature is successfully verified
smessage is signed
!message is flagged
*message is tagged

Table 2.5. Message recipient flags

FlagDescription
+message is to you and you only
Tmessage is to you, but also to or cc'ed to others
Cmessage is cc'ed to you
Fmessage is from you
Lmessage is sent to a subscribed mailing list

4.2. The Pager

+By default, Mutt uses its builtin pager to display the contents of messages. The pager is very similar to the Unix program less though not nearly as featureful. -

- -

Table 2.4. Most common pager keys

KeyDescription
<Return>go down one line
<Space>display the next page (or next message if at the end of a message)
-go back to the previous page
nsearch for next match
Sskip beyond quoted text
Ttoggle display of quoted text
?show keybindings
/search for a regular expression (pattern)
ESC /search backwards for a regular expression
\toggle search pattern coloring
^jump to the top of the message


- -

-In addition to key bindings in Table 2.4, “Most common pager keys”, -many of the functions from the index are available in -the pager, such as delete-message or copy-message (this is one -advantage over using an external pager to view messages). +

Table 2.6. Most common pager keys

KeyDescription
<Return>go down one line
<Space>display the next page (or next message if at the end of a message)
-go back to the previous page
nsearch for next match
Sskip beyond quoted text
Ttoggle display of quoted text
?show keybindings
/regular expression search
Esc /backward regular expression search
\toggle highlighting of search matches
^jump to the top of the message

+In addition to key bindings in Table 2.6, “Most common pager keys”, +many of the functions from the index menu are also available in +the pager, such as <delete-message> or <copy-message> +(this is one advantage over using an external pager to view messages).

Also, the internal pager supports a couple other advanced features. For -one, it will accept and translate the ``standard'' nroff sequences for +one, it will accept and translate the “standard” nroff sequences for bold and underline. These sequences are a series of either the letter, backspace (^H), the letter again for bold or the letter, backspace, -``_'' for denoting underline. Mutt will attempt to display these +“_” for denoting underline. Mutt will attempt to display these in bold and underline respectively if your terminal supports them. If -not, you can use the bold and underline color +not, you can use the bold and underline color objects to specify a color or mono attribute for them.

Additionally, the internal pager supports the ANSI escape sequences for character attributes. Mutt translates them into the correct color and -character settings. The sequences Mutt supports are -'\e[Ps;Ps;..Ps;m' +character settings. The sequences Mutt supports are: +

+\e[Ps;Ps;..Ps;m
+

where Ps can be one of the codes shown in -Table 2.5, “ANSI escape sequences”. -

Table 2.5. ANSI escape sequences

Escape codeDescription
0All Attributes Off
1Bold on
4Underline on
5Blink on
7Reverse video on
3<color>Foreground color is <color> (see Table 2.6, “Color sequences”)
4<color>Background color is <color> (see Table 2.6, “Color sequences”)

Table 2.6. Color sequences

Color codeColor
0Black
1Red
2Green
3Yellow
4Blue
5Magenta
6Cyan
7White

-Mutt uses these attributes for handling text/enriched messages, and they -can also be used by an external autoview -script for highlighting purposes. Note: If you change the colors for your +Table 2.7, “ANSI escape sequences”. +

Table 2.7. ANSI escape sequences

Escape codeDescription
0All attributes off
1Bold on
4Underline on
5Blink on
7Reverse video on
3<color>Foreground color is <color> (see Table 2.8, “Color sequences”)
4<color>Background color is <color> (see Table 2.8, “Color sequences”)

Table 2.8. Color sequences

Color codeColor
0Black
1Red
2Green
3Yellow
4Blue
5Magenta
6Cyan
7White

+Mutt uses these attributes for handling text/enriched +messages, and they can also be used by an external +autoview script for highlighting +purposes. +

Note

+If you change the colors for your display, for example by changing the color associated with color2 for your xterm, then that color will be used instead of green. -

3.3. Threaded Mode

-When the mailbox is sorted by threads, there are +

Note

+Note that the search commands in the pager take regular expressions, +which are not quite the same as the more +complex patterns used by the search +command in the index. This is because the pager only performs simple +text search, whereas the index provides boolean filtering on several +aspects of messages. +

4.3. Threaded Mode

+When the mailbox is sorted by threads, there are a few additional functions available in the index and pager modes -as shown in Table 2.7, “Most common thread mode keys”. -

- -

Table 2.7. Most common thread mode keys

KeyFunctionDescription
^Ddelete-threaddelete all messages in the current thread
^Uundelete-threadundelete all messages in the current thread
^Nnext-threadjump to the start of the next thread
^Pprevious-threadjump to the start of the previous thread
^Rread-threadmark the current thread as read
ESC ddelete-subthreaddelete all messages in the current subthread
ESC uundelete-subthreadundelete all messages in the current subthread
ESC nnext-subthreadjump to the start of the next subthread
ESC pprevious-subthreadjump to the start of the previous subthread
ESC rread-subthreadmark the current subthread as read
ESC ttag-threadtoggle the tag on the current thread
ESC vcollapse-threadtoggle collapse for the current thread
ESC Vcollapse-alltoggle collapse for all threads
Pparent-messagejump to parent message in thread


- -

-Note: Collapsing a thread displays only the first message +as shown in Table 2.9, “Most common thread mode keys”. +

Table 2.9. Most common thread mode keys

KeyFunctionDescription
^D<delete-thread>delete all messages in the current thread
^U<undelete-thread>undelete all messages in the current thread
^N<next-thread>jump to the start of the next thread
^P<previous-thread>jump to the start of the previous thread
^R<read-thread>mark the current thread as read
Esc d<delete-subthread>delete all messages in the current subthread
Esc u<undelete-subthread>undelete all messages in the current subthread
Esc n<next-subthread>jump to the start of the next subthread
Esc p<previous-subthread>jump to the start of the previous subthread
Esc r<read-subthread>mark the current subthread as read
Esc t<tag-thread>toggle the tag on the current thread
Esc v<collapse-thread>toggle collapse for the current thread
Esc V<collapse-all>toggle collapse for all threads
P<parent-message>jump to parent message in thread

Note

+Collapsing a thread displays only the first message in the thread and hides the others. This is useful when threads contain so many messages that you can only see a handful of threads on -the screen. See %M in $index_format. -For example, you could use "%?M?(#%03M)&(%4l)?" in $index_format to optionally +the screen. See %M in $index_format. +For example, you could use "%?M?(#%03M)&(%4l)?" in $index_format to optionally display the number of hidden messages if the thread is collapsed. -

-See also: $strict_threads. -

3.4. Miscellaneous Functions

-create-alias (default: a) - -

+

+See also: $strict_threads. +

4.4. Miscellaneous Functions

+In addition, the index and pager +menus have these interesting functions: +

+<create-alias> (default: a) +

Creates a new alias based upon the current message (or prompts for a -new one). Once editing is complete, an alias -command is added to the file specified by the $alias_file variable for future use. Note: -Specifying an $alias_file -does not add the aliases specified there-in, you must also source the file. -

-check-traditional-pgp (default: ESC P) - -

+new one). Once editing is complete, an alias +command is added to the file specified by +the $alias_file variable +for future use +

Note

+Mutt does not read the $alias_file +upon startup so you must explicitly source the file. +

+<check-traditional-pgp> (default: Esc P) +

This function will search the current message for content signed or -encrypted with PGP the "traditional" way, that is, without proper +encrypted with PGP the “traditional” way, that is, without proper MIME tagging. Technically, this function will temporarily change the MIME content types of the body parts containing PGP data; this -is similar to the edit-type function's +is similar to the <edit-type> function's effect. -

-display-toggle-weed (default: h) - -

-Toggles the weeding of message header fields specified by ignore commands. -

-edit (default: e) - -

-This command (available in the ``index'' and ``pager'') allows you to +

+<edit> (default: e) +

+This command (available in the index and pager) allows you to edit the raw current message as it's present in the mail folder. After you have finished editing, the changed message will be appended to the current folder, and the original message will be -marked for deletion. -

-edit-type - -(default: ^E on the attachment menu, and in the pager and index menus; ^T on the -compose menu) -

+marked for deletion; if the message is unchanged it won't be replaced. +

+<edit-type> (default: +^E on the attachment menu, and in the pager and index menus; +^T on the compose menu) +

This command is used to temporarily edit an attachment's content type to fix, for instance, bogus character set parameters. When invoked from the index or from the pager, you'll have the opportunity to edit the top-level attachment's content type. On the -attachment menu, you can change any +attachment menu, you can change any attachment's content type. These changes are not persistent, and get lost upon changing folders.

-Note that this command is also available on the compose +Note that this command is also available on the compose menu. There, it's used to fine-tune the properties of attachments you are going to send. -

-enter-command (default: ``:'') - -

+

+<enter-command> (default: “:”) +

This command is used to execute any command you would normally put in a configuration file. A common use is to check the settings of variables, or -in conjunction with macros to change settings on the +in conjunction with macros to change settings on the fly. -

-extract-keys (default: ^K) - -

+

+<extract-keys> (default: ^K) +

This command extracts PGP public keys from the current or tagged message(s) and adds them to your PGP public key ring. -

-forget-passphrase (default: +

+<forget-passphrase> (default: ^F) - -

+

This command wipes the passphrase(s) from memory. It is useful, if you misspelled the passphrase. -

-list-reply (default: L) - -

+

+<list-reply> (default: L) +

Reply to the current or tagged message(s) by extracting any addresses which -match the regular expressions given by the lists or subscribe +match the regular expressions given by the lists or subscribe commands, but also honor any Mail-Followup-To header(s) if the -$honor_followup_to +$honor_followup_to configuration variable is set. Using this when replying to messages posted to mailing lists helps avoid duplicate copies being sent to the author of the message you are replying to. -

-pipe-message (default: |) - -

+

+<pipe-message> (default: |) +

Asks for an external Unix command and pipes the current or -tagged message(s) to it. The variables $pipe_decode, $pipe_split, -$pipe_sep and $wait_key control the exact behavior of this function. -

-resend-message (default: ESC e) - -

-With resend-message, mutt takes the current message as a template for a +tagged message(s) to it. The variables $pipe_decode, $pipe_split, +$pipe_sep and $wait_key control the exact behavior of this function. +

+<resend-message> (default: Esc e) +

+Mutt takes the current message as a template for a new message. This function is best described as "recall from arbitrary folders". It can conveniently be used to forward MIME messages while preserving the original mail structure. Note that the amount of headers -included here depends on the value of the $weed +included here depends on the value of the $weed variable.

This function is also available from the attachment menu. You can use this to easily resend a message which was included with a bounce message -as a message/rfc822 body part. -

-shell-escape (default: !) - -

-Asks for an external Unix command and executes it. The $wait_key can be used to control +as a message/rfc822 body part. +

+<shell-escape> (default: !) +

+Asks for an external Unix command and executes it. The $wait_key can be used to control whether Mutt will wait for a key to be pressed when the command returns (presumably to let the user read the output of the command), based on -the return status of the named command. -

-toggle-quoted (default: T) - -

-The pager uses the $quote_regexp variable to detect quoted text when +the return status of the named command. If no command is given, an +interactive shell is executed. +

+<toggle-quoted> (default: T) +

+The pager uses the $quote_regexp variable to detect quoted text when displaying the body of the message. This function toggles the display of the quoted material in the message. It is particularly useful when -are interested in just the response and there is a large amount of +being interested in just the response and there is a large amount of quoted text in the way. -

-skip-quoted (default: S) - -

-This function will go to the next line of non-quoted text which come +

+<skip-quoted> (default: S) +

+This function will go to the next line of non-quoted text which comes after a line of quoted text in the internal pager. -

4. Sending Mail

-The bindings shown in Table 2.8, “Most common mail sending keys” are available in the -index for sending messages. -

- -

Table 2.8. Most common mail sending keys

KeyFunctionDescription
mcomposecompose a new message
rreplyreply to sender
ggroup-replyreply to all recipients
Llist-replyreply to mailing list address
fforwardforward message
bbouncebounce (remail) message
ESC kmail-keymail a PGP public key to someone


- -

-Bouncing a message sends the message as is to the recipient you -specify. Forwarding a message allows you to add comments or +

5. Sending Mail

5.1. Introduction

+The bindings shown in Table 2.10, “Most common mail sending keys” are available in the +index and pager to start a new message. +

Table 2.10. Most common mail sending keys

KeyFunctionDescription
m<compose>compose a new message
r<reply>reply to sender
g<group-reply>reply to all recipients
L<list-reply>reply to mailing list address
f<forward>forward message
b<bounce>bounce (remail) message
Esc k<mail-key>mail a PGP public key to someone

+Bouncing a message sends the message as-is to the recipient you +specify. Forwarding a message allows you to add comments or modify the message you are forwarding. These items are discussed -in greater detail in the next chapter ``Forwarding -and Bouncing Mail.'' +in greater detail in the next chapter “Forwarding +and Bouncing Mail.”

Mutt will then enter the compose menu and prompt you for the -recipients to place on the ``To:'' header field. Next, it will ask -you for the ``Subject:'' field for the message, providing a default if +recipients to place on the “To:” header field. Next, it will ask +you for the “Subject:” field for the message, providing a default if you are replying to or forwarding a message. See also -$askcc, -$askbcc, -$autoedit, -$bounce, -$fast_reply, -and $include +$askcc, +$askbcc, +$autoedit, +$bounce, +$fast_reply, +and $include for changing how Mutt asks these questions.

-Mutt will then automatically start your $editor on the message body. If the $edit_headers variable is set, the headers will be at -the top of the message in your editor. Any messages you are replying -to will be added in sort order to the message, with appropriate $attribution, $indent_string and $post_indent_string. When forwarding a -message, if the $mime_forward +Mutt will then automatically start your $editor +on the message body. If the $edit_headers +variable is set, the headers will be at the top of the message in your editor. +Any messages you are replying to will be added in sort order to the message, +with appropriate $attribution, +$indent_string and +$post_indent_string. +When forwarding a message, if the $mime_forward variable is unset, a copy of the forwarded message will be included. If -you have specified a $signature, it +you have specified a $signature, it will be appended to the message.

Once you have finished editing the body of your mail message, you are returned to the compose menu providing the functions -show in Table 2.9, “Most common compose menu keys”. -

- -

Table 2.9. Most common compose menu keys

KeyFunctionDescription
aattach-fileattach a file
Aattach-messageattach message(s) to the message
ESC kattach-keyattach a PGP public key
dedit-descriptionedit description on attachment
Ddetach-filedetach a file
tedit-toedit the To field
ESC fedit-fromedit the From field
redit-reply-toedit the Reply-To field
cedit-ccedit the Cc field
bedit-bccedit the Bcc field
ysend-messagesend the message
sedit-subjectedit the Subject
Ssmime-menuselect S/MIME options
fedit-fccspecify an ``Fcc'' mailbox
ppgp-menuselect PGP options
Ppostpone-messagepostpone this message until later
qquitquit (abort) sending the message
wwrite-fccwrite the message to a folder
iispellcheck spelling (if available on your system)
^Fforget-passphrasewipe passphrase(s) from memory


- -

-Note: The attach-message function will prompt you for a folder to +shown in Table 2.11, “Most common compose menu keys” to modify, send or postpone the +message. +

Table 2.11. Most common compose menu keys

KeyFunctionDescription
a<attach-file>attach a file
A<attach-message>attach message(s) to the message
Esc k<attach-key>attach a PGP public key
d<edit-description>edit description on attachment
D<detach-file>detach a file
t<edit-to>edit the To field
Esc f<edit-from>edit the From field
r<edit-reply-to>edit the Reply-To field
c<edit-cc>edit the Cc field
b<edit-bcc>edit the Bcc field
y<send-message>send the message
s<edit-subject>edit the Subject
S<smime-menu>select S/MIME options
f<edit-fcc>specify an “Fcc” mailbox
p<pgp-menu>select PGP options
P<postpone-message>postpone this message until later
q<quit>quit (abort) sending the message
w<write-fcc>write the message to a folder
i<ispell>check spelling (if available on your system)
^F<forget-passphrase>wipe passphrase(s) from memory

+The compose menu is also used to edit the attachments for a message which can be either files +or other messages. The <attach-message> function to will prompt you for a folder to attach messages from. You can now tag messages in that folder and they -will be attached to the message you are sending. Note that certain +will be attached to the message you are sending. +

Note

+Note that certain operations like composing a new mail, replying, forwarding, etc. are -not permitted when you are in that folder. The %r in $status_format will change to -a 'A' to indicate that you are in attach-message mode. -

4.1. Editing the message header

-When editing the header of your outgoing message, there are a couple of -special features available. -

+not permitted when you are in that folder. The %r in +$status_format will change to +a “A” to indicate that you are in attach-message mode. +

5.2. Editing the message header

+When editing the header because of $edit_headers +being set, there are a several pseudo headers available which +will not be included in sent messages. +

5.2.1. Fcc: pseudo header

If you specify Fcc: filename -Mutt will pick up filename -just as if you had used the edit-fcc function in the compose menu. -

+as a header, Mutt will pick up filename +just as if you had used the <edit-fcc> function in the compose menu. +

5.2.2. Attach: pseudo header

You can also attach files to your message by specifying Attach: filename [ description ] where filename is the file to attach and description is an optional string to use as the description of the attached file. -

-When replying to messages, if you remove the In-Reply-To: field from -the header field, Mutt will not generate a References: field, which -allows you to create a new message thread. -

-Also see $edit_headers. -

4.2. Using Mutt with PGP

-If you want to use PGP, you can specify -

-Pgp: [ E | S | S<id> ] - -

-``E'' encrypts, ``S'' signs and -``S<id>'' signs with the given key, setting $pgp_sign_as permanently. -

-If you have told mutt to PGP encrypt a message, it will guide you +

5.2.3. Pgp: pseudo header

+If you want to use PGP, you can specify +

+Pgp: [ E | S | S<id> ] + +

+“E” selects encryption, “S” selects signing and +“S<id>” selects signing with the given key, setting +$pgp_sign_as +permanently. +

5.2.4. In-Reply-To: header

+When replying to messages, the In-Reply-To: header contains the +Message-Id of the message(s) you reply to. If you remove its value, Mutt will not generate a +References: field, which allows you to create a new message thread, for example +to create a new message to a mailing list without having to enter the mailing list's address. +

5.3. Sending cryptographically signed/encrypted messages

+If you have told mutt to PGP or S/MIME encrypt a message, it will guide you through a key selection process when you try to send the message. Mutt will not ask you any questions about keys which have a certified user ID matching one of the message recipients' mail @@ -396,42 +398,39 @@ usually, abort this prompt using ^G. When you do s return to the compose screen.

Once you have successfully finished the key selection, the message -will be encrypted using the selected public keys, and sent out. +will be encrypted using the selected public keys when sent out.

-Most fields of the entries in the key selection menu (see also $pgp_entry_format) -have obvious meanings. But some explanations on the capabilities, flags, +Most fields of the entries in the key selection menu (see also $pgp_entry_format) +have obvious meanings. But some explanations on the capabilities, flags, and validity fields are in order.

The flags sequence (%f) will expand to one of the flags in -Table 2.10, “PGP key menu flags”. - -

Table 2.10. PGP key menu flags

FlagDescription
RThe key has been revoked and can't be used.
XThe key is expired and can't be used.
dYou have marked the key as disabled.
cThere are unknown critical self-signature packets.


- -

+Table 2.12, “PGP key menu flags”. +

Table 2.12. PGP key menu flags

FlagDescription
RThe key has been revoked and can't be used.
XThe key is expired and can't be used.
dYou have marked the key as disabled.
cThere are unknown critical self-signature packets.

The capabilities field (%c) expands to a two-character sequence representing a key's capabilities. The first character gives -the key's encryption capabilities: A minus sign (-) means -that the key cannot be used for encryption. A dot (.) means that -it's marked as a signature key in one of the user IDs, but may -also be used for encryption. The letter e indicates that +the key's encryption capabilities: A minus sign (“-”) means +that the key cannot be used for encryption. A dot (“.”) means that +it's marked as a signature key in one of the user IDs, but may +also be used for encryption. The letter “e” indicates that this key can be used for encryption.

-The second character indicates the key's signing capabilities. Once -again, a ``-'' implies ``not for signing'', ``.'' implies +The second character indicates the key's signing capabilities. Once +again, a “-” implies “not for signing”, “.” implies that the key is marked as an encryption key in one of the user-ids, and -``s'' denotes a key which can be used for signing. +“s” denotes a key which can be used for signing.

Finally, the validity field (%t) indicates how well-certified a user-id -is. A question mark (?) indicates undefined validity, a minus -character (-) marks an untrusted association, a space character -means a partially trusted association, and a plus character (+) +is. A question mark (“?”) indicates undefined validity, a minus +character (“-”) marks an untrusted association, a space character +means a partially trusted association, and a plus character (“+”) indicates complete validity. -

4.3. Sending anonymous messages via mixmaster.

-You may also have configured mutt to co-operate with Mixmaster, an +

5.4. Sending anonymous messages via mixmaster

+You may also have compiled mutt to co-operate with Mixmaster, an anonymous remailer. Mixmaster permits you to send your messages -anonymously using a chain of remailers. Mixmaster support in mutt is for -mixmaster version 2.04 (beta 45 appears to be the latest) and 2.03. -It does not support earlier versions or the later so-called version 3 betas, +anonymously using a chain of remailers. Mixmaster support in mutt is for +mixmaster version 2.04 (beta 45 appears to be the latest) and 2.03. +It does not support earlier versions or the later so-called version 3 betas, of which the latest appears to be called 2.9b23.

To use it, you'll have to obey certain restrictions. Most @@ -443,57 +442,57 @@ The chain selection screen is divided into two parts. In the (larger) upper part, you get a list of remailers you may use. In the lower part, you see the currently selected chain of remailers.

-You can navigate in the chain using the chain-prev and -chain-next functions, which are by default bound to the left +You can navigate in the chain using the <chain-prev> and +<chain-next> functions, which are by default bound to the left and right arrows and to the h and l keys (think vi keyboard bindings). To insert a remailer at the current chain -position, use the insert function. To append a remailer behind -the current chain position, use select-entry or append. +position, use the <insert> function. To append a remailer behind +the current chain position, use <select-entry> or <append>. You can also delete entries from the chain, using the corresponding function. Finally, to abandon your changes, leave the menu, or -accept them pressing (by default) the Return key. +<accept> them pressing (by default) the Return key.

Note that different remailers do have different capabilities, indicated in the %c entry of the remailer menu lines (see -$mix_entry_format). Most important is -the ``middleman'' capability, indicated by a capital ``M'': This +$mix_entry_format). Most important is +the “middleman” capability, indicated by a capital “M”: This means that the remailer in question cannot be used as the final element of a chain, but will only forward messages to other mixmaster remailers. For details on the other capabilities, please have a look at the mixmaster documentation. -

4.4. Sending format=flowed messages

4.4.1. Concept

+

5.5. Sending format=flowed messages

5.5.1. Concept

format=flowed-style messages (or f=f for short) are text/plain messages that consist of paragraphs which a receiver's mail client may reformat to its own needs which mostly means to customize line lengths regardless of what the sender sent. Technically this is -achieved by letting lines of a ``flowable'' paragraph end in spaces. +achieved by letting lines of a “flowable” paragraph end in spaces +except for the last line.

While for text-mode clients like mutt it's the best way to assume only a standard 80x25 character cell terminal, it may be desired to let the receiver decide completely how to view a message. -

4.4.2. Mutt support

+

5.5.2. Mutt support

Mutt only supports setting the required format=flowed -MIME parameter on outgoing messages if the $text_flowed variable is set. It does not add the -trailing spaces nor does it provide any other feature related to -composing f=f messages (like reformatting -non-f=f parts of a reply to f=f -before calling the editor). +MIME parameter on outgoing messages if the $text_flowed +variable is set, specifically it does not add the +trailing spaces.

After editing the initial message text and before entering the compose menu, mutt properly space-stuffes the message. Space-stuffing is required by RfC3676 defining format=flowed and means to prepend a space to: -

  • all lines starting with a space

  • lines starting with the word ``From'' -followed by space

  • all lines starting with ``>'' which -is not intended to be a quote character

-All leading spaces are to be removed by receiving clients to restore -the original message. -

-Note that mutt only support space-stuffing +

  • all lines starting with a space

  • lines starting with the word “From” +followed by space

  • all lines starting with “>” which +is not intended to be a quote character

Note

+Mutt only supports space-stuffing for the first two types of lines but not for the third: It is impossible to safely detect whether a leading > character starts a -quote or not. -

4.4.3. Editor considerations

+quote or not. Furthermore, Mutt only applies space-stuffing +once after the initial edit is finished. +

+All leading spaces are to be removed by receiving clients to restore +the original message prior to further processing. +

5.5.3. Editor considerations

As mutt provides no additional features to compose f=f messages, it's completely up to the user and his editor to produce proper messages. Please consider your editor's documentation if you @@ -507,49 +506,48 @@ For example, vim provides the formatoptions setting to assist in creating f=f messages, see :help fo-table for details. -

5. Forwarding and Bouncing Mail

+

6. Forwarding and Bouncing Mail

Bouncing and forwarding let you send an existing message to recipients -that you specify. Bouncing a message uses the $sendmail command to send a copy to alternative addresses as if -they were the message's original recipients. Forwarding a message, on -the other hand, allows you to modify the message before it is resent -(for example, by adding your own comments). The default key bindings -are shown in Table 2.11, “Message forwarding/bouncing keys”. -

- -

Table 2.11. Message forwarding/bouncing keys

KeyFunctionDescription
fforwardforward message
bbouncebounce (remail) message


- +that you specify. Bouncing a message sends a verbatim copy of a message +to alternative addresses as if they were the message's original +recipients specified in the Bcc header. +Forwarding a message, on the other hand, allows you to modify the message +before it is resent (for example, by adding your own comments). Bouncing +is done using the <bounce> function and forwarding +using the <forward> function bound to “b” and “f” +respectively.

Forwarding can be done by including the original message in the new message's body (surrounded by indicating lines) or including it as a MIME -attachment, depending on the value of the $mime_forward variable. Decoding of attachments, -like in the pager, can be controlled by the $forward_decode and $mime_forward_decode variables, +attachment, depending on the value of the $mime_forward variable. Decoding of attachments, +like in the pager, can be controlled by the $forward_decode and $mime_forward_decode variables, respectively. The desired forwarding format may depend on the content, therefore $mime_forward is a quadoption which, for -example, can be set to ``ask-no''. +example, can be set to “ask-no”.

The inclusion of headers is controlled by the current setting of the -$weed variable, unless $mime_forward is set. +$weed variable, unless $mime_forward is set.

Editing the message to forward follows the same procedure as sending or replying to a message does. -

6. Postponing Mail

+

7. Postponing Mail

At times it is desirable to delay sending a message that you have -already begun to compose. When the postpone-message function is +already begun to compose. When the <postpone-message> function is used in the compose menu, the body of your message and attachments -are stored in the mailbox specified by the $postponed variable. This means that you can recall the +are stored in the mailbox specified by the $postponed variable. This means that you can recall the message even if you exit Mutt and then restart it at a later time.

Once a message is postponed, there are several ways to resume it. From the -command line you can use the ``-p'' option, or if you compose a new +command line you can use the “-p” option, or if you compose a new message from the index or pager you will be prompted if postponed messages exist. If multiple messages are currently postponed, the postponed menu will pop up and you can select which message you would like to resume. -

-Note: If you postpone a reply to a message, the reply setting of +

Note

+If you postpone a reply to a message, the reply setting of the message is only updated when you actually finish the message and send it. Also, you must be in the same folder with the message you replied to for the status of the message to be updated. -

-See also the $postpone quad-option. +

+See also the $postpone quad-option.