home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / info / emacs-15 (.txt) < prev    next >
GNU Info File  |  1997-09-17  |  50KB  |  874 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.63 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Dabbrev Customization,  Prev: Dynamic Abbrevs,  Up: Abbrevs
  4. Customizing Dynamic Abbreviation
  5. ================================
  6.    Normally, dynamic abbrev expansion ignores case when searching for
  7. expansions.  That is, the expansion need not agree in case with the word
  8. you are expanding.  If you set `dabbrev-case-fold-search' to `nil',
  9. then the word and the expansion must match in case.
  10.    The value of `dabbrev-case-fold-search' may be any expression.
  11. Dynamic abbrev expansion evaluates that expression, and ignores case
  12. while searching if its value is not `nil'.  The default value of
  13. `dabbrev-case-fold-search' is `case-fold-search', so normally the value
  14. of `case-fold-search' controls the decision.  The reason why dynamic
  15. abbrev expansion normally ignores case when searching for expansions is
  16. that normally the value of `case-fold-search' is `t'.
  17.    Normally, dynamic abbrev expansion preserves the case pattern *of
  18. the word you are expanding*, by converting the expansion to that case
  19. pattern.  If you set `dabbrev-case-replace' to `nil', the expansion is
  20. copied without conversion.
  21.    The variables `dabbrev-case-fold-search' and `dabbrev-case-replace'
  22. are handled in a special way.  Their values are actually Lisp
  23. expressions which are evaluated each time a decision needs to be made.
  24. If the expression's value is non-`nil', then case is ignored in
  25. searching, or converted on replacement, respectively.  If the
  26. expression's value is `nil', case is not ignored or not converted.  The
  27. default values let the variables `case-fold-search' (*note Search
  28. Case::.) and `case-replace' (*note Replacement and Case::.) control
  29. what to do.
  30.    The variable `dabbrev-abbrev-char-regexp', if non-`nil', controls
  31. which characters are considered part of a word, for dynamic expansion
  32. purposes.  The regular expression must match just one character, never
  33. two or more.  The same regular expression also determines which
  34. characters are part of an expansion.  The value `nil' has a special
  35. meaning: abbreviations are made of word characters, but expansions are
  36. made of word and symbol characters.
  37.    In shell scripts and makefiles, a variable name is sometimes prefixed
  38. with `$' and sometimes not.  Major modes for this kind of text can
  39. customize dynamic abbreviation to handle optional prefixes by setting
  40. the variable `dabbrev-abbrev-skip-leading-regexp'.  Its value should be
  41. a regular expression that matches the optional prefix that dynamic
  42. abbreviation should ignore.
  43. File: emacs,  Node: Picture,  Next: Sending Mail,  Prev: Abbrevs,  Up: Top
  44. Editing Pictures
  45. ****************
  46.    To edit a picture made out of text characters (for example, a picture
  47. of the division of a register into fields, as a comment in a program),
  48. use the command `M-x edit-picture' to enter Picture mode.
  49.    In Picture mode, editing is based on the "quarter-plane" model of
  50. text, according to which the text characters lie studded on an area that
  51. stretches infinitely far to the right and downward.  The concept of the
  52. end of a line does not exist in this model; the most you can say is
  53. where the last nonblank character on the line is found.
  54.    Of course, Emacs really always considers text as a sequence of
  55. characters, and lines really do have ends.  But Picture mode replaces
  56. the most frequently-used commands with variants that simulate the
  57. quarter-plane model of text.  They do this by inserting spaces or by
  58. converting tabs to spaces.
  59.    Most of the basic editing commands of Emacs are redefined by Picture
  60. mode to do essentially the same thing but in a quarter-plane way.  In
  61. addition, Picture mode defines various keys starting with the `C-c'
  62. prefix to run special picture editing commands.
  63.    One of these keys, `C-c C-c', is pretty important.  Often a picture
  64. is part of a larger file that is usually edited in some other major
  65. mode.  `M-x edit-picture' records the name of the previous major mode
  66. so you can use the `C-c C-c' command (`picture-mode-exit') later to go
  67. back to that mode.  `C-c C-c' also deletes spaces from the ends of
  68. lines, unless given a numeric argument.
  69.    The special commands of Picture mode all work in other modes
  70. (provided the `picture' library is loaded), but are not bound to keys
  71. except in Picture mode.  The descriptions below talk of moving "one
  72. column" and so on, but all the picture mode commands handle numeric
  73. arguments as their normal equivalents do.
  74.    Turning on Picture mode runs the hook `picture-mode-hook' (*note
  75. Hooks::.).
  76. * Menu:
  77. * Basic Picture::         Basic concepts and simple commands of Picture Mode.
  78. * Insert in Picture::     Controlling direction of cursor motion
  79.                             after "self-inserting" characters.
  80. * Tabs in Picture::       Various features for tab stops and indentation.
  81. * Rectangles in Picture:: Clearing and superimposing rectangles.
  82. File: emacs,  Node: Basic Picture,  Next: Insert in Picture,  Prev: Picture,  Up: Picture
  83. Basic Editing in Picture Mode
  84. =============================
  85.    Most keys do the same thing in Picture mode that they usually do, but
  86. do it in a quarter-plane style.  For example, `C-f' is rebound to run
  87. `picture-forward-column', a command which moves point one column to the
  88. right, inserting a space if necessary so that the actual end of the
  89. line makes no difference.  `C-b' is rebound to run
  90. `picture-backward-column', which always moves point left one column,
  91. converting a tab to multiple spaces if necessary.  `C-n' and `C-p' are
  92. rebound to run `picture-move-down' and `picture-move-up', which can
  93. either insert spaces or convert tabs as necessary to make sure that
  94. point stays in exactly the same column.  `C-e' runs
  95. `picture-end-of-line', which moves to after the last nonblank character
  96. on the line.  There is no need to change `C-a', as the choice of screen
  97. model does not affect beginnings of lines.
  98.    Insertion of text is adapted to the quarter-plane screen model
  99. through the use of Overwrite mode (*note Minor Modes::.).
  100. Self-inserting characters replace existing text, column by column,
  101. rather than pushing existing text to the right.  RET runs
  102. `picture-newline', which just moves to the beginning of the following
  103. line so that new text will replace that line.
  104.    Picture mode provides erasure instead of deletion and killing of
  105. text.  DEL (`picture-backward-clear-column') replaces the preceding
  106. character with a space rather than removing it; this moves point
  107. backwards.  `C-d' (`picture-clear-column') replaces the next character
  108. or characters with spaces, but does not move point.  (If you want to
  109. clear characters to spaces and move forward over them, use SPC.)  `C-k'
  110. (`picture-clear-line') really kills the contents of lines, but does not
  111. delete the newlines from the buffer.
  112.    To do actual insertion, you must use special commands.  `C-o'
  113. (`picture-open-line') creates a blank line after the current line; it
  114. never splits a line.  `C-M-o', `split-line', makes sense in Picture
  115. mode, so it is not changed.  LFD (`picture-duplicate-line') inserts
  116. below the current line another line with the same contents.
  117.    To do actual deletion in Picture mode, use `C-w', `C-c C-d' (which
  118. is defined as `delete-char', as `C-d' is in other modes), or one of the
  119. picture rectangle commands (*note Rectangles in Picture::.).
  120. File: emacs,  Node: Insert in Picture,  Next: Tabs in Picture,  Prev: Basic Picture,  Up: Picture
  121. Controlling Motion after Insert
  122. ===============================
  123.    Since "self-inserting" characters in Picture mode overwrite and move
  124. point, there is no essential restriction on how point should be moved.
  125. Normally point moves right, but you can specify any of the eight
  126. orthogonal or diagonal directions for motion after a "self-inserting"
  127. character.  This is useful for drawing lines in the buffer.
  128. `C-c <'
  129.      Move left after insertion (`picture-movement-left').
  130. `C-c >'
  131.      Move right after insertion (`picture-movement-right').
  132. `C-c ^'
  133.      Move up after insertion (`picture-movement-up').
  134. `C-c .'
  135.      Move down after insertion (`picture-movement-down').
  136. `C-c `'
  137.      Move up and left ("northwest") after insertion
  138.      (`picture-movement-nw').
  139. `C-c ''
  140.      Move up and right ("northeast") after insertion
  141.      (`picture-movement-ne').
  142. `C-c /'
  143.      Move down and left ("southwest") after insertion
  144.      (`picture-movement-sw').
  145. `C-c \'
  146.      Move down and right ("southeast") after insertion
  147.      (`picture-movement-se').
  148.    Two motion commands move based on the current Picture insertion
  149. direction.  The command `C-c C-f' (`picture-motion') moves in the same
  150. direction as motion after "insertion" currently does, while `C-c C-b'
  151. (`picture-motion-reverse') moves in the opposite direction.
  152. File: emacs,  Node: Tabs in Picture,  Next: Rectangles in Picture,  Prev: Insert in Picture,  Up: Picture
  153. Picture Mode Tabs
  154. =================
  155.    Two kinds of tab-like action are provided in Picture mode.  Use
  156. `M-TAB' (`picture-tab-search') for context-based tabbing.  With no
  157. argument, it moves to a point underneath the next "interesting"
  158. character that follows whitespace in the previous nonblank line.
  159. "Next" here means "appearing at a horizontal position greater than the
  160. one point starts out at."  With an argument, as in `C-u M-TAB', this
  161. command moves to the next such interesting character in the current
  162. line.  `M-TAB' does not change the text; it only moves point.
  163. "Interesting" characters are defined by the variable
  164. `picture-tab-chars', which should define a set of characters.  The
  165. syntax for this variable is like the syntax used inside of `[...]' in a
  166. regular expression--but without the `[' and the `]'.  Its default value
  167. is `"!-~"'.
  168.    TAB itself runs `picture-tab', which operates based on the current
  169. tab stop settings; it is the Picture mode equivalent of
  170. `tab-to-tab-stop'.  Normally it just moves point, but with a numeric
  171. argument it clears the text that it moves over.
  172.    The context-based and tab-stop-based forms of tabbing are brought
  173. together by the command `C-c TAB', `picture-set-tab-stops'.  This
  174. command sets the tab stops to the positions which `M-TAB' would
  175. consider significant in the current line.  The use of this command,
  176. together with TAB, can get the effect of context-based tabbing.  But
  177. `M-TAB' is more convenient in the cases where it is sufficient.
  178.    It may be convenient to prevent use of actual tab characters in
  179. pictures.  For example, this prevents `C-x TAB' from messing up the
  180. picture.  You can do this by setting the variable `indent-tabs-mode' to
  181. `nil'.  *Note Just Spaces::.
  182. File: emacs,  Node: Rectangles in Picture,  Prev: Tabs in Picture,  Up: Picture
  183. Picture Mode Rectangle Commands
  184. ===============================
  185.    Picture mode defines commands for working on rectangular pieces of
  186. the text in ways that fit with the quarter-plane model.  The standard
  187. rectangle commands may also be useful (*note Rectangles::.).
  188. `C-c C-k'
  189.      Clear out the region-rectangle with spaces
  190.      (`picture-clear-rectangle').  With argument, delete the text.
  191. `C-c C-w R'
  192.      Similar but save rectangle contents in register R first
  193.      (`picture-clear-rectangle-to-register').
  194. `C-c C-y'
  195.      Copy last killed rectangle into the buffer by overwriting, with
  196.      upper left corner at point (`picture-yank-rectangle').  With
  197.      argument, insert instead.
  198. `C-c C-x R'
  199.      Similar, but use the rectangle in register R
  200.      (`picture-yank-rectangle-from-register').
  201.    The picture rectangle commands `C-c C-k' (`picture-clear-rectangle')
  202. and `C-c C-w' (`picture-clear-rectangle-to-register') differ from the
  203. standard rectangle commands in that they normally clear the rectangle
  204. instead of deleting it; this is analogous with the way `C-d' is changed
  205. in Picture mode.
  206.    However, deletion of rectangles can be useful in Picture mode, so
  207. these commands delete the rectangle if given a numeric argument.  `C-c
  208. C-k' either with or without a numeric argument saves the rectangle for
  209. `C-c C-y'.
  210.    The Picture mode commands for yanking rectangles differ from the
  211. standard ones in overwriting instead of inserting.  This is the same way
  212. that Picture mode insertion of other text differs from other modes.
  213. `C-c C-y' (`picture-yank-rectangle') inserts (by overwriting) the
  214. rectangle that was most recently killed, while `C-c C-x'
  215. (`picture-yank-rectangle-from-register') does likewise for the
  216. rectangle found in a specified register.
  217. File: emacs,  Node: Sending Mail,  Next: Rmail,  Prev: Picture,  Up: Top
  218. Sending Mail
  219. ************
  220.    To send a message in Emacs, you start by typing a command (`C-x m')
  221. to select and initialize the `*mail*' buffer.  Then you edit the text
  222. and headers of the message in this buffer, and type another command
  223. (`C-c C-s' or `C-c C-c') to send the message.
  224. `C-x m'
  225.      Begin composing a message to send (`mail').
  226. `C-x 4 m'
  227.      Likewise, but display the message in another window
  228.      (`mail-other-window').
  229. `C-x 5 m'
  230.      Likewise, but make a new frame (`mail-other-frame').
  231. `C-c C-s'
  232.      In Mail mode, send the message (`mail-send').
  233. `C-c C-c'
  234.      Send the message and bury the mail buffer (`mail-send-and-exit').
  235.    The command `C-x m' (`mail') selects a buffer named `*mail*' and
  236. initializes it with the skeleton of an outgoing message.  `C-x 4 m'
  237. (`mail-other-window') selects the `*mail*' buffer in a different
  238. window, leaving the previous current buffer visible.  `C-x 5 m'
  239. (`mail-other-frame') creates a new frame to select the `*mail*' buffer.
  240.    Because the mail composition buffer is an ordinary Emacs buffer, you
  241. can switch to other buffers while in the middle of composing mail, and
  242. switch back later (or never).  If you use the `C-x m' command again
  243. when you have been composing another message but have not sent it, you
  244. are asked to confirm before the old message is erased.  If you answer
  245. `n', the `*mail*' buffer is left selected with its old contents, so you
  246. can finish the old message and send it.  `C-u C-x m' is another way to
  247. do this.  Sending the message marks the `*mail*' buffer "unmodified",
  248. which avoids the need for confirmation when `C-x m' is next used.
  249.    If you are composing a message in the `*mail*' buffer and want to
  250. send another message before finishing the first, rename the `*mail*'
  251. buffer using `M-x rename-uniquely' (*note Misc Buffer::.).  Then you
  252. can use `C-x m' or its variants described above to make a new `*mail*'
  253. buffer.  Once you've done that, you can work with each mail buffer
  254. independently.
  255. * Menu:
  256. * Format: Mail Format.         Format of the mail being composed.
  257. * Headers: Mail Headers.     Details of permitted mail header fields.
  258. * Aliases: Mail Aliases.     Abbreviating and grouping mail addresses.
  259. * Mode: Mail Mode.         Special commands for editing mail being composed.
  260. * Spook: Distracting NSA.    How to distract the NSA's attention.
  261. File: emacs,  Node: Mail Format,  Next: Mail Headers,  Up: Sending Mail
  262. The Format of the Mail Buffer
  263. =============================
  264.    In addition to the "text" or "body", a message has "header fields"
  265. which say who sent it, when, to whom, why, and so on.  Some header
  266. fields such as the date and sender are created automatically after the
  267. message is sent.  Others, such as the recipient names, must be
  268. specified by you in order to send the message properly.
  269.    Mail mode provides a few commands to help you edit some header
  270. fields, and some are preinitialized in the buffer automatically at
  271. times.  You can insert and edit header fields using ordinary editing
  272. commands.
  273.    The line in the buffer that says
  274.      --text follows this line--
  275. is a special delimiter that separates the headers you have specified
  276. from the text.  Whatever follows this line is the text of the message;
  277. the headers precede it.  The delimiter line itself does not appear in
  278. the message actually sent.  The text used for the delimiter line is
  279. controlled by the variable `mail-header-separator'.
  280.    Here is an example of what the headers and text in the mail buffer
  281. might look like.
  282.      To: gnu@prep.ai.mit.edu
  283.      CC: lungfish@spam.org, byob@spam.org
  284.      Subject: The Emacs Manual
  285.      --Text follows this line--
  286.      Please ignore this message.
  287. File: emacs,  Node: Mail Headers,  Next: Mail Aliases,  Prev: Mail Format,  Up: Sending Mail
  288. Mail Header Fields
  289. ==================
  290.    A header field in the mail buffer starts with a field name at the
  291. beginning of a line, terminated by a colon.  Upper and lower case are
  292. equivalent in field names (and in mailing addresses also).  After the
  293. colon and optional whitespace comes the contents of the field.
  294.    You can use any name you like for a header field, but normally people
  295. use only standard field names with accepted meanings.  Here is a table
  296. of fields commonly used in outgoing messages.
  297.      This field contains the mailing addresses to which the message is
  298.      addressed.
  299. `Subject'
  300.      The contents of the `Subject' field should be a piece of text that
  301.      says what the message is about.  The reason `Subject' fields are
  302.      useful is that most mail-reading programs can provide a summary of
  303.      messages, listing the subject of each message but not its text.
  304.      This field contains additional mailing addresses to send the
  305.      message to, but whose readers should not regard the message as
  306.      addressed to them.
  307. `BCC'
  308.      This field contains additional mailing addresses to send the
  309.      message to, which should not appear in the header of the message
  310.      actually sent.  Copies sent this way are called "blind carbon
  311.      copies".
  312.      To send a blind carbon copy of every outgoing message to yourself,
  313.      set the variable `mail-self-blind' to `t'.
  314. `FCC'
  315.      This field contains the name of one file and directs Emacs to
  316.      append a copy of the message to that file when you send the
  317.      message.  If the file is in Rmail format, Emacs writes the message
  318.      to Rmail format; otherwise, Emacs writes the message in system
  319.      mail file format.
  320.      To put a fixed file name as in `FCC' field each time you start
  321.      editing an outgoing message, set the variable
  322.      `mail-archive-file-name' to that file name.  Unless you remove the
  323.      `FCC' field before sending, the message will be written into that
  324.      file when it is sent.
  325. `From'
  326.      Use the `From' field to say who you are, when the account you are
  327.      using to send the mail is not your own.  The contents of the `From'
  328.      field should be a valid mailing address, since replies will
  329.      normally go there.  If you don't specify the `From' field
  330.      yourself, Emacs uses the value of `user-mail-address' as the
  331.      default.
  332. `Reply-to'
  333.      Use this field to direct replies to a different address.  Most
  334.      mail-reading programs (including Rmail) automatically send replies
  335.      to the `Reply-to' address in preference to the `From' address.  By
  336.      adding a `Reply-to' field to your header, you can work around any
  337.      problems your `From' address may cause for replies.
  338.      To put a fixed `Reply-to' address into every outgoing message, set
  339.      the variable `mail-default-reply-to' to that address (as a string).
  340.      Then `mail' initializes the message with a `Reply-to' field as
  341.      specified.  You can delete or alter that header field before you
  342.      send the message, if you wish.  When Emacs starts up, if the
  343.      environment variable `REPLYTO' is set, `mail-default-reply-to' is
  344.      initialized from that environment variable.
  345. `In-reply-to'
  346.      This field contains a piece of text describing a message you are
  347.      replying to.  Some mail systems can use this information to
  348.      correlate related pieces of mail.  Normally this field is filled
  349.      in by Rmail when you reply to a message in Rmail, and you never
  350.      need to think about it (*note Rmail::.).
  351.    The `To', `CC', `BCC' and `FCC' fields can appear any number of
  352. times, to specify many places to send the message.  The `To', `CC', and
  353. `BCC' fields can have continuation lines.  All the lines starting with
  354. whitespace, following the line on which the field starts, are
  355. considered part of the field.  For example,
  356.      To: foo@here.net, this@there.net,
  357.        me@gnu.cambridge.mass.usa.earth.spiral3281
  358.    When you send the message, if you didn't write a `From' field
  359. yourself, Emacs puts in one for you.  The variable `mail-from-style'
  360. controls the format:
  361. `nil'
  362.      Just the email address, as in `king@grassland.com'.
  363. `parens'
  364.      Both email address and full name, as in `king@grassland.com (Elvis
  365.      Parsley)'.
  366. `angles'
  367.      Both email address and full name, as in `Elvis Parsley
  368.      <king@grassland.com>'.
  369. File: emacs,  Node: Mail Aliases,  Next: Mail Mode,  Prev: Mail Headers,  Up: Sending Mail
  370. Mail Aliases
  371. ============
  372.    You can define "mail aliases" in a file named `~/.mailrc'.  These
  373. are short mnemonic names which stand for mail addresses or groups of
  374. mail addresses.  Like many other mail programs, Emacs expands aliases
  375. when they occur in the `To', `From', `CC', `BCC', and `Reply-to'
  376. fields, plus their `Resent-' variants.
  377.    To define an alias in `~/.mailrc', write a line in the following
  378. format:
  379.      alias SHORTADDRESS FULLADDRESSES
  380. Here FULLADDRESSES stands for one or more mail addresses for
  381. SHORTADDRESS to expand into.  Separate multiple addresses with spaces;
  382. if an address contains a space, quote the whole address with a pair of
  383. double-quotes.
  384.    For instance, to make `maingnu' stand for `gnu@prep.ai.mit.edu' plus
  385. a local address of your own, put in this line:
  386.      alias maingnu gnu@prep.ai.mit.edu local-gnu
  387.    Emacs also recognizes include commands in `.mailrc' files.  They
  388. look like this:
  389.      source FILENAME
  390. The file `~/.mailrc' is used primarily by other mail-reading programs;
  391. it can contain various other commands.  Emacs ignores everything in it
  392. except for alias definitions and include commands.
  393.    Another way to define a mail alias, within Emacs alone, is with the
  394. `define-mail-alias' command.  It prompts for the alias and then the
  395. full address.  You can use it to define aliases in your `.emacs' file,
  396. like this:
  397.      (define-mail-alias "maingnu" "gnu@prep.ai.mit.edu")
  398.    `define-mail-alias' records aliases by adding them to a variable
  399. named `mail-aliases'.  If you are comfortable with manipulating Lisp
  400. lists, you can set `mail-aliases' directly.  The initial value of
  401. `mail-aliases' is `t', which means that Emacs should read `.mailrc' to
  402. get the proper value.
  403.    You can specify a different file name to use instead of `~/.mailrc'
  404. by setting the variable `mail-personal-alias-file'.
  405.    Normally, Emacs expands aliases when you send the message.  If you
  406. like, you can have mail aliases expand as abbrevs, as soon as you type
  407. them in (*note Abbrevs::.).  To enable this feature, execute the
  408. following:
  409.      (add-hook 'mail-setup-hook 'mail-abbrevs-setup)
  410. This can go in your `.emacs' file.  *Note Hooks::.  If you use this
  411. feature, you must use `define-mail-abbrev' instead of
  412. `define-mail-alias'; the latter does not work with this package.  Note
  413. that the mail abbreviation package uses the variable `mail-abbrevs'
  414. instead of `mail-aliases', and that all alias names are converted to
  415. lower case.
  416.    The mail abbreviation package also provides the `C-c C-a'
  417. (`mail-interactive-insert-alias') command, which reads an alias name
  418. (with completion) and inserts its definition at point.  This is useful
  419. when editing the message text itself or a header field such as
  420. `Subject' in which Emacs does not normally expand aliases.
  421.    Note that abbrevs expand only if you insert a word-separator
  422. character afterward.  However, you can rebind `C-n' and `M->' to cause
  423. expansion as well.  Here's how to do that:
  424.      (add-hook 'mail-setup-hook
  425.                '(lambda ()
  426.                   (substitute-key-definition
  427.                     'next-line 'mail-abbrev-next-line
  428.                     mail-mode-map global-map)
  429.                   (substitute-key-definition
  430.                     'end-of-buffer 'mail-abbrev-end-of-buffer
  431.                     mail-mode-map global-map)))
  432. File: emacs,  Node: Mail Mode,  Next: Distracting NSA,  Prev: Mail Aliases,  Up: Sending Mail
  433. Mail Mode
  434. =========
  435.    The major mode used in the mail buffer is Mail mode, which is much
  436. like Text mode except that various special commands are provided on the
  437. `C-c' prefix.  These commands all have to do specifically with editing
  438. or sending the message.
  439. `C-c C-s'
  440.      Send the message, and leave the mail buffer selected (`mail-send').
  441. `C-c C-c'
  442.      Send the message, and select some other buffer
  443.      (`mail-send-and-exit').
  444. `M-TAB'
  445.      Complete a mailing address (`mail-complete').
  446. `C-c C-f C-t'
  447.      Move to the `To' header field, creating one if there is none
  448.      (`mail-to').
  449. `C-c C-f C-s'
  450.      Move to the `Subject' header field, creating one if there is none
  451.      (`mail-subject').
  452. `C-c C-f C-c'
  453.      Move to the `CC' header field, creating one if there is none
  454.      (`mail-cc').
  455. `C-c C-f C-b'
  456.      Move to the `BCC' header field, creating one if there is none
  457.      (`mail-bcc').
  458. `C-c C-f C-f'
  459.      Move to the `FCC' header field, creating one if there is none
  460.      (`mail-fcc').
  461. `C-c C-t'
  462.      Move to the beginning of the message body text (`mail-text').
  463. `C-c C-w'
  464.      Insert the file `~/.signature' at the end of the message text
  465.      (`mail-signature').
  466. `C-c C-y'
  467.      Yank the selected message from Rmail (`mail-yank-original').  This
  468.      command does nothing unless your command to start sending a
  469.      message was issued with Rmail.
  470. `C-c C-q'
  471.      Fill all paragraphs of yanked old messages, each individually
  472.      (`mail-fill-yanked-message').
  473. `M-x ispell-message'
  474.      Do spelling correction on the message text, but not on citations
  475.      from other messages.
  476.    There are two ways to send the message.  `C-c C-s' (`mail-send')
  477. sends the message and marks the mail buffer unmodified, but leaves that
  478. buffer selected so that you can modify the message (perhaps with new
  479. recipients) and send it again.  `C-c C-c' (`mail-send-and-exit') sends
  480. and then deletes the window or switches to another buffer.  It puts the
  481. mail buffer at the lowest priority for reselection by default, since
  482. you are finished with using it.  This is the usual way to send the
  483. message.
  484.    While editing a header field that contains mailing addresses, such as
  485. `To:', `CC:' and `BCC:', you can complete a mailing address by typing
  486. `M-TAB' (`mail-complete').  For completion purposes, the valid mailing
  487. addresses are taken to be the local users' names plus your personal
  488. mail aliases.  Additionally, if your site provides a mail directory or
  489. a specific host to use for any unrecognized user name, you can arrange
  490. to query that host for completion--see the variables
  491. `mail-directory-process' and `mail-directory-stream' in the source code.
  492.    If you type `M-TAB' in the body of the message, it invokes
  493. `ispell-complete-word', as in Text mode.
  494.    Mail mode provides special commands for editing the headers and text
  495. of the message before you send it.  There are five commands defined to
  496. move point to particular header fields, all based on the prefix `C-c
  497. C-f' (`C-f' is for "field").  They are `C-c C-f C-t' (`mail-to') to
  498. move to the `To' field, `C-c C-f C-s' (`mail-subject') for the
  499. `Subject' field, `C-c C-f C-c' (`mail-cc') for the `CC' field, `C-c C-f
  500. C-b' (`mail-bcc') for the `BCC' field, and `C-c C-f C-f' (`mail-fcc')
  501. for the `FCC' field.  If the field in question does not exist, these
  502. commands create one.  We provide special motion commands for these
  503. particular fields because they are the fields users most often want to
  504. edit.
  505.    `C-c C-t' (`mail-text') moves point to just after the header
  506. separator line--that is, to the beginning of the message body text.
  507.    `C-c C-w' (`mail-signature') adds a standard piece text at the end
  508. of the message to say more about who you are.  The text comes from the
  509. file `.signature' in your home directory.  To insert your signature
  510. automatically, set the variable `mail-signature' to `t'; then starting
  511. a mail message automatically inserts the contents of your `.signature'
  512. file.  If you want to omit your signature from a particular message,
  513. delete it from the buffer before you send the message.
  514.    You can also set `mail-signature' to a string; then that string is
  515. inserted automatically as your signature when you start editing a
  516. message to send.
  517.    When mail sending is invoked from the Rmail mail reader using an
  518. Rmail command, `C-c C-y' can be used inside the mail buffer to insert
  519. the text of the message you are replying to.  Normally it indents each
  520. line of that message four spaces and eliminates most header fields.  A
  521. numeric argument specifies the number of spaces to indent.  An argument
  522. of just `C-u' says not to indent at all and not to eliminate anything.
  523. `C-c C-y' always uses the current message from the Rmail buffer, so you
  524. can insert several old messages by selecting one in Rmail, switching to
  525. `*mail*' and yanking it, then switching back to Rmail to select another.
  526.    You can specify the text for `C-c C-y' to insert at the beginning of
  527. each line: set `mail-yank-prefix' to the desired string.  (A value of
  528. `nil' means to use indentation; this is the default.) However, `C-u C-c
  529. C-y' never adds anything at the beginning of the inserted lines,
  530. regardless of the value of `mail-yank-prefix'.
  531.    After using `C-c C-y', you can use the command `C-c C-q'
  532. (`mail-fill-yanked-message') to fill the paragraphs of the yanked old
  533. message or messages.  One use of `C-c C-q' fills all such paragraphs,
  534. each one individually.  To fill a single paragraph of the quoted
  535. message, use `M-q', after first setting the fill prefix appropriately
  536. to handle the indentation.  *Note Filling::.
  537.    You can do spelling correction on the message text you have written
  538. with the command `M-x ispell-message'.  If you have yanked an incoming
  539. message into the outgoing draft, this command skips what was yanked,
  540. but it checks the text that you yourself inserted.  (It looks for
  541. indentation or `mail-yank-prefix' to distinguish the cited lines from
  542. your input.)  *Note Spelling::.
  543.    Mail mode defines the character `%' as a word separator; this is
  544. helpful for using the word commands to edit mail addresses.
  545.    Mail mode is normally used in buffers set up automatically by the
  546. `mail' command and related commands.  However, you can also switch to
  547. Mail mode in a file-visiting buffer.  That is a useful thing to do if
  548. you have saved draft message text in a file.  In a file-visiting buffer,
  549. `C-c C-c' does not clear the modified flag, because only saving the
  550. file should do that.  As a result, you don't get a warning about trying
  551. to send the same message twice.
  552.    Turning on Mail mode (which `C-x m' does automatically) runs the
  553. normal hooks `text-mode-hook' and `mail-mode-hook'.  Initializing a new
  554. outgoing message runs the normal hook `mail-setup-hook'; if you want to
  555. add special fields to your mail header or make other changes to the
  556. appearance of the mail buffer, use that hook.  *Note Hooks::.
  557.    The main difference between these hooks is just when they are
  558. invoked.  Whenever you type `M-x mail', `mail-mode-hook' runs as soon
  559. as the `*mail*' buffer is created.  Then the `mail-setup' function puts
  560. in the default contents of the buffer.  After these default contents
  561. are inserted, `mail-setup-hook' runs.
  562. File: emacs,  Node: Distracting NSA,  Prev: Mail Mode,  Up: Sending Mail
  563. Distracting the NSA
  564. ===================
  565.    `M-x spook' adds a line of randomly chosen keywords to an outgoing
  566. mail message.  The keywords are chosen from a list of words that suggest
  567. you are discussing something subversive.
  568.    The idea behind this feature is the suspicion that the NSA snoops on
  569. all electronic mail messages that contain keywords suggesting they might
  570. find them interesting.  (The NSA says they don't, but that's what they
  571. *would* say.)  The idea is that if lots of people add suspicious words
  572. to their messages, the NSA will get so busy with spurious input that
  573. they will have to give up reading it all.
  574.    Here's how to insert spook keywords automatically whenever you start
  575. entering an outgoing message:
  576.      (add-hook 'mail-setup-hook 'spook)
  577.    Whether or not this confuses the NSA, it at least amuses people.
  578. File: emacs,  Node: Rmail,  Next: Dired,  Prev: Sending Mail,  Up: Top
  579. Reading Mail with Rmail
  580. ***********************
  581.    Rmail is an Emacs subsystem for reading and disposing of mail that
  582. you receive.  Rmail stores mail messages in files called Rmail files.
  583. Reading the message in an Rmail file is done in a special major mode,
  584. Rmail mode, which redefines most letters to run commands for managing
  585. mail.
  586. * Menu:
  587. * Basic: Rmail Basics.       Basic concepts of Rmail, and simple use.
  588. * Scroll: Rmail Scrolling.   Scrolling through a message.
  589. * Motion: Rmail Motion.      Moving to another message.
  590. * Deletion: Rmail Deletion.  Deleting and expunging messages.
  591. * Inbox: Rmail Inbox.        How mail gets into the Rmail file.
  592. * Files: Rmail Files.        Using multiple Rmail files.
  593. * Output: Rmail Output.         Copying message out to files.
  594. * Labels: Rmail Labels.      Classifying messages by labeling them.
  595. * Reply: Rmail Reply.        Sending replies to messages you are viewing.
  596. * Summary: Rmail Summary.    Summaries show brief info on many messages.
  597. * Sort: Rmail Sorting.       Sorting messages in Rmail.
  598. * Display: Rmail Display.    How Rmail displays a message; customization.
  599. * Editing: Rmail Editing.    Editing message text and headers in Rmail.
  600. * Digest: Rmail Digest.      Extracting the messages from a digest message.
  601. * Out of Rmail::         Converting an Rmail file to mailbox format.
  602. * Rot13: Rmail Rot13.         Reading messages encoded in the rot13 code.
  603. File: emacs,  Node: Rmail Basics,  Next: Rmail Scrolling,  Up: Rmail
  604. Basic Concepts of Rmail
  605. =======================
  606.    Using Rmail in the simplest fashion, you have one Rmail file
  607. `~/RMAIL' in which all of your mail is saved.  It is called your
  608. "primary Rmail file".  The command `M-x rmail' reads your primary Rmail
  609. file, merges new mail in from your inboxes, displays the first message
  610. you haven't read yet, and lets you begin reading.  The variable
  611. `rmail-file-name' specifies the name of the primary Rmail file.
  612.    Rmail uses narrowing to hide all but one message in the Rmail file.
  613. The message that is shown is called the "current message".  Rmail
  614. mode's special commands can do such things as delete the current
  615. message, copy it into another file, send a reply, or move to another
  616. message.  You can also create multiple Rmail files and use Rmail to move
  617. messages between them.
  618.    Within the Rmail file, messages are normally arranged sequentially in
  619. order of receipt; you can specify other ways to sort them.  Messages are
  620. assigned consecutive integers as their "message numbers".  The number
  621. of the current message is displayed in Rmail's mode line, followed by
  622. the total number of messages in the file.  You can move to a message by
  623. specifying its message number with the `j' key (*note Rmail Motion::.).
  624.    Following the usual conventions of Emacs, changes in an Rmail file
  625. become permanent only when the file is saved.  You can save it with `s'
  626. (`rmail-save'), which also expunges deleted messages from the file
  627. first (*note Rmail Deletion::.).  To save the file without expunging,
  628. use `C-x C-s'.  Rmail also saves the Rmail file after merging new mail
  629. from an inbox file (*note Rmail Inbox::.).
  630.    You can exit Rmail with `q' (`rmail-quit'); this expunges and saves
  631. the Rmail file and then switches to another buffer.  But there is no
  632. need to `exit' formally.  If you switch from Rmail to editing in other
  633. buffers, and never happen to switch back, you have exited.  (The Rmail
  634. command `b', `rmail-bury', does this for you.)  Just make sure to save
  635. the Rmail file eventually (like any other file you have changed).  `C-x
  636. s' is a good enough way to do this (*note Saving::.).
  637. File: emacs,  Node: Rmail Scrolling,  Next: Rmail Motion,  Prev: Rmail Basics,  Up: Rmail
  638. Scrolling Within a Message
  639. ==========================
  640.    When Rmail displays a message that does not fit on the screen, you
  641. must scroll through it to read the rest.  You could do this with `C-v',
  642. `M-v' and `M-<', but in Rmail scrolling is so frequent that it deserves
  643. to be easier to type.
  644. `SPC'
  645.      Scroll forward (`scroll-up').
  646. `DEL'
  647.      Scroll backward (`scroll-down').
  648.      Scroll to start of message (`rmail-beginning-of-message').
  649.    Since the most common thing to do while reading a message is to
  650. scroll through it by screenfuls, Rmail makes SPC and DEL synonyms of
  651. `C-v' (`scroll-up') and `M-v' (`scroll-down')
  652.    The command `.' (`rmail-beginning-of-message') scrolls back to the
  653. beginning of the selected message.  This is not quite the same as `M-<':
  654. for one thing, it does not set the mark; for another, it resets the
  655. buffer boundaries to the current message if you have changed them.
  656. File: emacs,  Node: Rmail Motion,  Next: Rmail Deletion,  Prev: Rmail Scrolling,  Up: Rmail
  657. Moving Among Messages
  658. =====================
  659.    The most basic thing to do with a message is to read it.  The way to
  660. do this in Rmail is to make the message current.  The usual practice is
  661. to move sequentially through the file, since this is the order of
  662. receipt of messages.  When you enter Rmail, you are positioned at the
  663. first message that you have not yet made current (that is, the first one
  664. that has the `unseen' attribute; *note Rmail Labels::.).  Move forward
  665. to see the other new messages; move backward to reexamine old messages.
  666.      Move to the next nondeleted message, skipping any intervening
  667.      deleted messages (`rmail-next-undeleted-message').
  668.      Move to the previous nondeleted message
  669.      (`rmail-previous-undeleted-message').
  670. `M-n'
  671.      Move to the next message, including deleted messages
  672.      (`rmail-next-message').
  673. `M-p'
  674.      Move to the previous message, including deleted messages
  675.      (`rmail-previous-message').
  676.      Move to the first message.  With argument N, move to message
  677.      number N (`rmail-show-message').
  678.      Move to the last message (`rmail-last-message').
  679.      Move to the first message (`rmail-first-message').
  680. `M-s REGEXP RET'
  681.      Move to the next message containing a match for REGEXP
  682.      (`rmail-search').
  683. `- M-s REGEXP RET'
  684.      Move to the previous message containing a match for REGEXP.
  685.    `n' and `p' are the usual way of moving among messages in Rmail.
  686. They move through the messages sequentially, but skip over deleted
  687. messages, which is usually what you want to do.  Their command
  688. definitions are named `rmail-next-undeleted-message' and
  689. `rmail-previous-undeleted-message'.  If you do not want to skip deleted
  690. messages--for example, if you want to move to a message to undelete
  691. it--use the variants `M-n' and `M-p' (`rmail-next-message' and
  692. `rmail-previous-message').  A numeric argument to any of these commands
  693. serves as a repeat count.
  694.    In Rmail, you can specify a numeric argument by typing just the
  695. digits.  You don't need to type `C-u' first.
  696.    The `M-s' (`rmail-search') command is Rmail's version of search.
  697. The usual incremental search command `C-s' works in Rmail, but it
  698. searches only within the current message.  The purpose of `M-s' is to
  699. search for another message.  It reads a regular expression (*note
  700. Regexps::.) nonincrementally, then searches starting at the beginning
  701. of the following message for a match.  It then selects that message.
  702. If REGEXP is empty, `M-s' reuses the regexp used the previous time.
  703.    To search backward in the file for another message, give `M-s' a
  704. negative argument.  In Rmail you can do this with `- M-s'.
  705.    It is also possible to search for a message based on labels.  *Note
  706. Rmail Labels::.
  707.    To move to a message specified by absolute message number, use `j'
  708. (`rmail-show-message') with the message number as argument.  With no
  709. argument, `j' selects the first message.  `<' (`rmail-first-message')
  710. also selects the first message.  `>' (`rmail-last-message') selects the
  711. last message.
  712. File: emacs,  Node: Rmail Deletion,  Next: Rmail Inbox,  Prev: Rmail Motion,  Up: Rmail
  713. Deleting Messages
  714. =================
  715.    When you no longer need to keep a message, you can "delete" it.  This
  716. flags it as ignorable, and some Rmail commands pretend it is no longer
  717. present; but it still has its place in the Rmail file, and still has its
  718. message number.
  719.    "Expunging" the Rmail file actually removes the deleted messages.
  720. The remaining messages are renumbered consecutively.  Expunging is the
  721. only action that changes the message number of any message, except for
  722. undigestifying (*note Rmail Digest::.).
  723.      Delete the current message, and move to the next nondeleted message
  724.      (`rmail-delete-forward').
  725. `C-d'
  726.      Delete the current message, and move to the previous nondeleted
  727.      message (`rmail-delete-backward').
  728.      Undelete the current message, or move back to a deleted message and
  729.      undelete it (`rmail-undelete-previous-message').
  730.      Expunge the Rmail file (`rmail-expunge').
  731.    There are two Rmail commands for deleting messages.  Both delete the
  732. current message and select another message.  `d'
  733. (`rmail-delete-forward') moves to the following message, skipping
  734. messages already deleted, while `C-d' (`rmail-delete-backward') moves
  735. to the previous nondeleted message.  If there is no nondeleted message
  736. to move to in the specified direction, the message that was just
  737. deleted remains current.
  738.    Whenever Rmail deletes a message, it invokes the function(s) listed
  739. in `rmail-delete-message-hook'.  When the hook functions are invoked,
  740. the message has been marked deleted, but it is still the current message
  741. in the Rmail buffer.
  742.    To make all the deleted messages finally vanish from the Rmail file,
  743. type `x' (`rmail-expunge').  Until you do this, you can still
  744. "undelete" the deleted messages.  The undeletion command, `u'
  745. (`rmail-undelete-previous-message'), is designed to cancel the effect
  746. of a `d' command in most cases.  It undeletes the current message if
  747. the current message is deleted.  Otherwise it moves backward to
  748. previous messages until a deleted message is found, and undeletes that
  749. message.
  750.    You can usually undo a `d' with a `u' because the `u' moves back to
  751. and undeletes the message that the `d' deleted.  But this does not work
  752. when the `d' skips a few already-deleted messages that follow the
  753. message being deleted; then the `u' command undeletes the last of the
  754. messages that were skipped.  There is no clean way to avoid this
  755. problem.  However, by repeating the `u' command, you can eventually get
  756. back to the message that you intend to undelete.  You can also select a
  757. particular deleted message with the `M-p' command, then type `u' to
  758. undelete it.
  759.    A deleted message has the `deleted' attribute, and as a result
  760. `deleted' appears in the mode line when the current message is deleted.
  761. In fact, deleting or undeleting a message is nothing more than adding
  762. or removing this attribute.  *Note Rmail Labels::.
  763. File: emacs,  Node: Rmail Inbox,  Next: Rmail Files,  Prev: Rmail Deletion,  Up: Rmail
  764. Rmail Files and Inboxes
  765. =======================
  766.    The operating system places incoming mail for you in a file that we
  767. call your "inbox".  When you start up Rmail, it runs a C program called
  768. `movemail' to copy the new messages from your inbox into your primary
  769. Rmail file, which also contains other messages saved from previous
  770. Rmail sessions.  It is in this file that you actually read the mail
  771. with Rmail.  This operation is called "getting new mail".  You can get
  772. new mail at any time in Rmail by typing `g'.
  773.    The variable `rmail-primary-inbox-list' contains a list of the files
  774. which are inboxes for your primary Rmail file.  If you don't set this
  775. variable explicitly, it is initialized from the `MAIL' environment
  776. variable, or, as a last resort, set to `nil', which means to use the
  777. default inbox.  The default inbox is `/var/mail/USERNAME',
  778. `/usr/spool/mail/USERNAME', or `/usr/mail/USERNAME', depending on your
  779. operating system.  You can specify the inbox file(s) for any Rmail file
  780. with the command `set-rmail-inbox-list'; see *Note Rmail Files::.
  781.    Some sites use a method called POP for accessing users' inbox data
  782. instead of storing the data in inbox files.  `movemail' can work with
  783. POP if you compile it with the macro `MAIL_USE_POP' defined, and then
  784. install it setuid to `root'.  It is safe to install `movemail' in this
  785. way.  Note: `movemail' only works with POP3, not with older versions of
  786.    Assuming you have compiled and installed `movemail' appropriately,
  787. you can specify a POP inbox with a "file name" of the form
  788. `po:USERNAME'.  `movemail' handles such a name by opening a connection
  789. to the POP server.  The `MAILHOST' environment variable specifies the
  790. machine to look for the server on.
  791.    Accessing mail via POP may require a password.  If the variable
  792. `rmail-pop-password' is non-`nil', it specifies the password to use for
  793. POP.  Alternatively, if `rmail-pop-password-required' is non-`nil',
  794. then Rmail asks you for the password to use.
  795.    There are two reasons for having separate Rmail files and inboxes.
  796.   1. The inbox file format varies between operating systems and
  797.      according to the other mail software in use.  Only one part of
  798.      Rmail needs to know about the alternatives, and it need only
  799.      understand how to convert all of them to Rmail's own format.
  800.   2. It is very cumbersome to access an inbox file without danger of
  801.      losing mail, because it is necessary to interlock with mail
  802.      delivery.  Moreover, different operating systems use different
  803.      interlocking techniques.  The strategy of moving mail out of the
  804.      inbox once and for all into a separate Rmail file avoids the need
  805.      for interlocking in all the rest of Rmail, since only Rmail
  806.      operates on the Rmail file.
  807.    Rmail was written to use Babyl format as its internal format.  Since
  808. then, we have recognized that the usual inbox format on Unix and GNU
  809. systems is adequate for the job, and we plan to change Rmail to use that
  810. as its internal format.  However, the Rmail file will still be separate
  811. from the inbox file, even on systems where their format is the same.
  812.    When getting new mail, Rmail first copies the new mail from the inbox
  813. file to the Rmail file; then it saves the Rmail file; then it truncates
  814. the inbox file.  This way, a system crash may cause duplication of mail
  815. between the inbox and the Rmail file, but cannot lose mail.
  816.    When `movemail' copies mail from an inbox in the system's mailer
  817. directory, it actually puts it in an intermediate file
  818. `~/.newmail-INBOXNAME'.  Once it finishes, Rmail reads that file,
  819. merges the new mail, saves the Rmail file, and only then deletes the
  820. intermediate file.  If there is a crash at the wrong time, this file
  821. continues to exist and Rmail will use it again the next time it gets new
  822. mail from that inbox.
  823. File: emacs,  Node: Rmail Files,  Next: Rmail Output,  Prev: Rmail Inbox,  Up: Rmail
  824. Multiple Rmail Files
  825. ====================
  826.    Rmail operates by default on your "primary Rmail file", which is
  827. named `~/RMAIL' and receives your incoming mail from your system inbox
  828. file.  But you can also have other Rmail files and edit them with
  829. Rmail.  These files can receive mail through their own inboxes, or you
  830. can move messages into them with explicit Rmail commands (*note Rmail
  831. Output::.).
  832. `i FILE RET'
  833.      Read FILE into Emacs and run Rmail on it (`rmail-input').
  834. `M-x set-rmail-inbox-list RET FILES RET'
  835.      Specify inbox file names for current Rmail file to get mail from.
  836.      Merge new mail from current Rmail file's inboxes
  837.      (`rmail-get-new-mail').
  838. `C-u g FILE RET'
  839.      Merge new mail from inbox file FILE.
  840.    To run Rmail on a file other than your primary Rmail file, you may
  841. use the `i' (`rmail-input') command in Rmail.  This visits the file in
  842. Rmail mode.  You can use `M-x rmail-input' even when not in Rmail.
  843.    The file you read with `i' should normally be a valid Rmail file.
  844. If it is not, Rmail tries to decompose it into a stream of messages in
  845. various known formats.  If it succeeds, it converts the whole file to an
  846. Rmail file.  If you specify a file name that doesn't exist, `i'
  847. initializes a new buffer for creating a new Rmail file.
  848.    You can also select an Rmail file from a menu.  Choose first the menu
  849. bar Classify item, then from the Classify menu choose the Input Rmail
  850. File item; then choose the Rmail file you want.  The variables
  851. `rmail-secondary-file-directory' and `rmail-secondary-file-regexp'
  852. specify which files to offer in the menu: the first variable says which
  853. directory to find them in; the second says which files in that
  854. directory to offer (all those that match the regular expression).
  855. These variables also apply to choosing a file for output (*note Rmail
  856. Output::.).
  857.    Each Rmail file can contain a list of inbox file names; you can
  858. specify this list with `M-x set-rmail-inbox-list RET FILES RET'.  The
  859. argument can contain any number of file names, separated by commas.  It
  860. can also be empty, which specifies that this file should have no
  861. inboxes.  Once a list of inboxes is specified, the Rmail file remembers
  862. it permanently until you specify a different list.
  863.    As a special exception, if your primary Rmail file does not specify
  864. any inbox files, it uses your standard system inbox.
  865.    The `g' command (`rmail-get-new-mail') merges mail into the current
  866. Rmail file from its specified inboxes.  If the Rmail file has no
  867. inboxes, `g' does nothing.  The command `M-x rmail' also merges new
  868. mail into your primary Rmail file.
  869.    To merge mail from a file that is not the usual inbox, give the `g'
  870. key a numeric argument, as in `C-u g'.  Then it reads a file name and
  871. merges mail from that file.  The inbox file is not deleted or changed
  872. in any way when `g' with an argument is used.  This is, therefore, a
  873. general way of merging one file of messages into another.
  874.