home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / info / mh-e-3 < prev    next >
Encoding:
GNU Info File  |  1997-09-17  |  47.7 KB  |  1,038 lines

  1. This is Info file ../info/mh-e, produced by Makeinfo-1.63 from the
  2. input file mh-e.texi.
  3.  
  4.    This is Edition 1.2, last updated 22 August 1995, of `mh-e, The
  5. Emacs Interface to MH', for mh-e, Version 5.0.2.
  6.  
  7.    Copyright 1995 Free Software Foundation, Inc.
  8.  
  9.    Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12.  
  13.    Permission is granted to copy and distribute modified versions of
  14. this manual under the conditions for verbatim copying, provided also
  15. that the section entitled "Copying" is included exactly as in the
  16. original, and provided that the entire resulting derived work is
  17. distributed under the terms of a permission notice identical to this
  18. one.
  19.  
  20.    Permission is granted to copy and distribute translations of this
  21. manual into another language, under the above conditions for modified
  22. versions, except that this permission notice may be stated in a
  23. translation approved by the Free Software Foundation.
  24.  
  25. 
  26. File: mh-e,  Node: Customizing Organizing,  Next: Customizing Printing,  Prev: Customizing Deleting,  Up: Customizing Moving Mail
  27.  
  28. Organizing Your Mail with Folders
  29. ---------------------------------
  30.  
  31.    By default, operations on folders work only one level at a time.  Set
  32. `mh-recursive-folders' to non-`nil' to operate on all folders.  This
  33. mostly means that you'll be able to see all your folders when you press
  34. TAB when prompted for a folder name.  The variable
  35. `mh-auto-folder-collect' is normally turned on to generate a list of
  36. folder names in the background as soon as mh-e is loaded.  Otherwise,
  37. the list is generated when you need a folder name the first time (as
  38. with `o' (`mh-refile-msg')).  If you have a lot of folders and you have
  39. `mh-recursive-folders' set, this could take a while, which is why it's
  40. nice to do the folder collection in the background.
  41.  
  42.    The function `mh-default-folder-for-message-function' is used by `o'
  43. (`mh-refile-msg') and `C-c C-f C-f' (`mh-to-fcc') to generate a default
  44. folder.  The generated folder name should be a string with a `+' before
  45. it.  For each of my correspondents, I use the same name for both an
  46. alias and a folder.  So, I wrote a function that takes the address in
  47. the `From:' header field, finds it in my alias file, and returns the
  48. alias, which is used as a default folder name.  This is the most
  49. complicated example given here, and it demonstrates several features of
  50. Emacs Lisp programming.  You should be able to drop this into
  51. `~/.emacs', however.  If you use this to store messages in a subfolder
  52. of your Mail directory, you can modify the line that starts `(format
  53. +%s...'  and insert your subfolder after the folder symbol `+'.
  54.  
  55.      Creating useful default folder for refiling via mh-default-folder-for-message-function
  56.      
  57.      (defun my-mh-folder-from-address ()
  58.        "Determine folder name from address.
  59.      Takes the address in the From: header field, and returns its corresponding
  60.      alias from the user's personal aliases file. Returns `nil' if the address
  61.      was not found."
  62.        (require 'rfc822)                         ; for the rfc822 functions
  63.        (search-forward-regexp "^From: \\(.*\\)") ; grab header field contents
  64.        (save-excursion                     ; save state
  65.          (let ((addr (car (rfc822-addresses  ; get address
  66.                            (buffer-substring (match-beginning 1)
  67.                                              (match-end 1)))))
  68.                (buffer (get-buffer-create " *temp*")) ; set local variables
  69.                folder)
  70.            (set-buffer buffer)             ; jump to temporary buffer
  71.            (unwind-protect                 ; run kill-buffer when done
  72.                (progn                      ; function grouping construct
  73.                  (insert-file-contents (expand-file-name "aliases"
  74.                                                          mh-user-path))
  75.                  (goto-char (point-min))   ; grab aliases file and go to start
  76.                  (setq folder
  77.                        ;; Search for the given address, even commented-out
  78.                        ;; addresses are found!
  79.                        ;; The function search-forward-regexp sets values that are
  80.                        ;; later used by match-beginning and match-end.
  81.                        (if (search-forward-regexp (format "^;*\\(.*\\):.*%s"
  82.                                                           addr) nil t)
  83.                            ;; NOTE WELL: this is what the return value looks like.
  84.                            ;; You can modify the format string to match your own
  85.                            ;; Mail hierarchy.
  86.                            (format "+%s" (buffer-substring (match-beginning 1)
  87.                                                            (match-end 1))))))
  88.              (kill-buffer buffer))          ; get rid of our temporary buffer
  89.            folder)))                        ; function's return value
  90.      
  91.      (setq mh-default-folder-for-message-function 'my-mh-folder-from-address)
  92.  
  93.    The hook `mh-refile-msg-hook' is called after a message is marked to
  94. be refiled.
  95.  
  96.    The variable `mh-sortm-args' holds extra arguments to pass on to the
  97. `sortm' command.  Note: this variable is only consulted when a prefix
  98. argument is given to `M-x mh-sort-folder'.  It is used to override any
  99. arguments given in a `sortm:' entry in your MH profile
  100. (`~/.mh_profile').
  101.  
  102. * Menu:
  103.  
  104. * Customizing Scan Line Formats::
  105.  
  106. 
  107. File: mh-e,  Node: Customizing Scan Line Formats,  Prev: Customizing Organizing,  Up: Customizing Organizing
  108.  
  109. Scan line formatting
  110. ....................
  111.  
  112.    The name of the program that generates a listing of one line per
  113. message is held in `mh-scan-prog' (default: `"scan"').  Unless this
  114. variable contains an absolute pathname, it is assumed to be in the
  115. `mh-progs' directory.  You may link another program to `scan' (see
  116. `mh-profile'(5)) to produce a different type of listing.
  117.  
  118.    If you change the format of the scan lines you'll need to tell mh-e
  119. how to parse the new format.  As you see, quite a lot of variables are
  120. involved to do that.  The first variable has to do with pruning out
  121. garbage.
  122.  
  123. `mh-valid-scan-line'
  124.      This regular expression describes a valid scan line.  This is used
  125.      to eliminate error messages that are occasionally produced by
  126.      `inc' or `scan' (default: `"^ *[0-9]"').
  127.  
  128.    Next, two variables control how the message numbers are parsed.
  129.  
  130. `mh-msg-number-regexp'
  131.      This regular expression is used to extract the message number from
  132.      a scan line.  Note that the message number must be placed in quoted
  133.      parentheses, (\\(...\\)), as in the default of `"^ *\\([0-9]+\\)"'.
  134.  
  135. `mh-msg-search-regexp'
  136.      Given a message number (which is inserted in `%d'), this regular
  137.      expression will match the scan line that it represents (default:
  138.      `"^[^0-9]*%d[^0-9]"').
  139.  
  140.    Finally, there are a slew of variables that control how mh-e marks up
  141. the scan lines.
  142.  
  143. `mh-cmd-note'
  144.      Number of characters to skip over before inserting notation
  145.      (default: 4).  Note how it relates to the following regular
  146.      expressions.
  147.  
  148. `mh-deleted-msg-regexp'
  149.      This regular expression describes deleted messages (default:
  150.      `"^....D"').  See also `mh-note-deleted'.
  151.  
  152. `mh-refiled-msg-regexp'
  153.      This regular expression describes refiled messages (default:
  154.      `"^....\\^"').  See also `mh-note-refiled'.
  155.  
  156. `mh-cur-scan-msg-regexp'
  157.      This regular expression matches the current message (default:
  158.      `"^....\\+"').  See also `mh-note-cur'.
  159.  
  160. `mh-good-msg-regexp'
  161.      This regular expression describes which messages should be shown
  162.      when mh-e goes to the next or previous message.  Normally, deleted
  163.      or refiled messages are skipped over (default: `"^....[^D^]"').
  164.  
  165. `mh-note-deleted'
  166.      Messages that have been deleted to are marked by this string
  167.      (default: `"D"').  See also `mh-deleted-msg-regexp'.
  168.  
  169. `mh-note-refiled'
  170.      Messages that have been refiled are marked by this string (default:
  171.      `"^"').  See also `mh-refiled-msg-regexp'.
  172.  
  173. `mh-note-copied'
  174.      Messages that have been copied are marked by this string (default:
  175.      `"C"').
  176.  
  177. `mh-note-cur'
  178.      The current message (in MH, not in mh-e) is marked by this string
  179.      (default: `"+"').  See also `mh-cur-scan-msg-regexp'.
  180.  
  181. `mh-note-repl'
  182.      Messages that have been replied to are marked by this string
  183.      (default: `"-"').
  184.  
  185. `mh-note-forw'
  186.      Messages that have been forwarded are marked by this string
  187.      (default: `"F"').
  188.  
  189. `mh-note-dist'
  190.      Messages that have been redistributed are marked by this string
  191.      (default: `"R"').
  192.  
  193. `mh-note-printed'
  194.      Messages that have been printed are marked by this string (default:
  195.      `"P"').
  196.  
  197. `mh-note-seq'
  198.      Messages in a sequence are marked by this string (default: `"%"').
  199.  
  200. 
  201. File: mh-e,  Node: Customizing Printing,  Next: Customizing Files and Pipes,  Prev: Customizing Organizing,  Up: Customizing Moving Mail
  202.  
  203. Printing Your Mail
  204. ------------------
  205.  
  206.    Normally messages are printed in the foreground.  If this is slow on
  207. your system, you may elect to set `mh-print-background' to non-`nil' to
  208. print in the background.  If you do this, do not delete the message
  209. until it is printed or else the output may be truncated.  The variable
  210. `mh-lpr-command-format' controls how the printing is actually done.
  211. The string can contain one escape, `%s', which is filled with the name
  212. of the folder and the message number and is useful for print job names.
  213. As an example, the default is `"lpr -J '%s'"'.
  214.  
  215. 
  216. File: mh-e,  Node: Customizing Files and Pipes,  Next: Customizing Finishing Up,  Prev: Customizing Printing,  Up: Customizing Moving Mail
  217.  
  218. Files and Pipes
  219. ---------------
  220.  
  221.    The initial directory for the `mh-store-msg' command is held in
  222. `mh-store-default-directory'.  Since I almost always run `mh-store-msg'
  223. on sources, I set it to my personal source directory like this:
  224.  
  225.      (setq mh-store-default-directory (expand-file-name "~/src/"))
  226.  
  227.    Subsequent incarnations of `mh-store-msg' offer the last directory
  228. used as the default.  By the way, `mh-store-msg' calls the Emacs Lisp
  229. function `mh-store-buffer'.  I mention this because you can use it
  230. directly if you're editing a buffer that contains a file that has been
  231. run through `uuencode' or `shar'.  For example, you can extract the
  232. contents of the current buffer in your home directory by typing `M-x
  233. mh-store-buffer RET ~ RET'.
  234.  
  235. 
  236. File: mh-e,  Node: Customizing Finishing Up,  Prev: Customizing Files and Pipes,  Up: Customizing Moving Mail
  237.  
  238. Finishing Up
  239. ------------
  240.  
  241.    The two variables `mh-before-quit-hook' and `mh-quit-hook' are
  242. called by `q' (`mh-quit').  The former one is called before the quit
  243. occurs, so you might use it to perform any mh-e operations; you could
  244. perform some query and abort the quit or call `mh-execute-commands',
  245. for example.  The latter is not run in an mh-e context, so you might
  246. use it to modify the window setup.
  247.  
  248. 
  249. File: mh-e,  Node: Customizing Searching,  Prev: Customizing Moving Mail,  Up: Customizing mh-e
  250.  
  251. Searching Through Messages
  252. ==========================
  253.  
  254.    If you find that you do the same thing over and over when editing the
  255. search template, you may wish to bind some shortcuts to keys.  This can
  256. be done with the variable `mh-pick-mode-hook', which is called when
  257. `M-s' (`mh-search-folder') is run on a new pattern.
  258.  
  259.    The string `mh-partial-folder-mode-line-annotation' is used to
  260. annotate the mode line when only a portion of the folder is shown.  For
  261. example, this will be displayed after running `M-s'
  262. (`mh-search-folder') to list messages based on some search criteria
  263. (see *Note Searching::).  The default annotation of `"select"' yields a
  264. mode line that looks like:
  265.  
  266.      --%%-{+inbox/select} 2 msgs (2-3)      (MH-Folder)--All-----------------
  267.  
  268. 
  269. File: mh-e,  Node: Odds and Ends,  Next: History,  Prev: Customizing mh-e,  Up: Top
  270.  
  271. Odds and Ends
  272. *************
  273.  
  274.    This appendix covers a few topics that don't fit elsewhere.  Here I
  275. tell you how to report bugs and how to get on the mh-e mailing list.  I
  276. also point out some additional sources of information.
  277.  
  278. * Menu:
  279.  
  280. * Bug Reports::
  281. * Mailing List::
  282. * MH FAQ::
  283. * Getting mh-e::
  284.  
  285. 
  286. File: mh-e,  Node: Bug Reports,  Next: Mailing List,  Prev: Odds and Ends,  Up: Odds and Ends
  287.  
  288. Bug Reports
  289. ===========
  290.  
  291.    The current maintainer of mh-e is Stephen Gildea
  292. <gildea@lcs.mit.edu>.  Please mail bug reports directly to him, as well
  293. as any praise or suggestions.  Please include the output of `M-x
  294. mh-version' (*note Miscellaneous::.) in any bug report you send.
  295.  
  296. 
  297. File: mh-e,  Node: Mailing List,  Next: MH FAQ,  Prev: Bug Reports,  Up: Odds and Ends
  298.  
  299. mh-e Mailing List
  300. =================
  301.  
  302.    There is a mailing list, mh-e@x.org, for discussion of mh-e and
  303. announcements of new versions.  Send a "subscribe" message to
  304. mh-e-request@x.org to be added.  Do not report bugs on this list; mail
  305. them directly to the maintainer (*note Bug Reports::.).
  306.  
  307. 
  308. File: mh-e,  Node: MH FAQ,  Next: Getting mh-e,  Prev: Mailing List,  Up: Odds and Ends
  309.  
  310. MH FAQ
  311. ======
  312.  
  313.    An FAQ appears monthly in the newsgroup `comp.mail.mh'.  While very
  314. little is there that deals with mh-e specifically, there is an
  315. incredible wealth of material about MH itself which you will find
  316. useful.  The subject of the FAQ is `MH Frequently Asked Questions (FAQ)
  317. with Answers'.
  318.  
  319.    The FAQ can be also obtained by anonymous `ftp' or via the World
  320. Wide Web (WWW).  It is located at:
  321.  
  322.      ftp://rtfm.mit.edu/pub/usenet/news.answers/mail/mh-faq/part1
  323.      http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mh-faq/part1/faq.html
  324.  
  325.    Otherwise, you can use mail.  Send mail to mail-server@rtfm.mit.edu
  326. containing the following:
  327.  
  328.      send usenet/news.answers/mail/mh-faq/part1
  329.  
  330. 
  331. File: mh-e,  Node: Getting mh-e,  Prev: MH FAQ,  Up: Odds and Ends
  332.  
  333. Getting mh-e
  334. ============
  335.  
  336.    If you're running a pre-4.0 version of mh-e, please consider
  337. upgrading.  You can either have your system administrator upgrade your
  338. Emacs, or just the files for mh-e.
  339.  
  340.    The MH distribution contains a copy of mh-e in `miscellany/mh-e'.
  341. Make sure it is at least Version 4.0.
  342.  
  343.    The latest version of mh-e can be obtained via anonymous `ftp' from
  344. `ftp.x.org'.  The file containing mh-e is currently
  345. `/misc/mh-e/mh-e-5.0.2.tar.Z'.  I suggest that you extract the files
  346. from `mh-e-5.0.2.tar.Z' in the following fashion:
  347.  
  348.      % `cd'                                  # Start in your home directory
  349.      % `mkdir lib lib/emacs'                 # Create directory for mh-e
  350.      % `cd lib/emacs'
  351.      % `zcat PATH/TO/mh-e-5.0.2.tar.Z | tar xvf -'    # Extract files
  352.  
  353.    To use these new files, add the following to `~/.emacs':
  354.  
  355.      (setq load-path (cons (expand-file-name "~/lib/emacs") load-path))
  356.  
  357.    That's it!  If you're already running Emacs, please quit that session
  358. and start again to load in the new mh-e.  Check that you're running the
  359. new version with the command `M-x mh-version' after running any mh-e
  360. command.  The distribution comes with a file called `MH-E-NEWS' so you
  361. can see what's new.
  362.  
  363. 
  364. File: mh-e,  Node: History,  Next: Changes to mh-e,  Prev: Odds and Ends,  Up: Top
  365.  
  366. History of mh-e
  367. ***************
  368.  
  369.    mh-e was originally written by Brian Reid in 1983 and has changed
  370. hands twice since then.  Jim Larus wanted to do something similar for
  371. GNU Emacs, and ended up completely rewriting it that same year.  In
  372. 1989, Stephen Gildea picked it up and is now currently improving and
  373. maintaining it.
  374.  
  375. * Menu:
  376.  
  377. * From Brian Reid::
  378. * From Jim Larus::
  379. * From Stephen Gildea::
  380.  
  381. 
  382. File: mh-e,  Node: From Brian Reid,  Next: From Jim Larus,  Prev: History,  Up: History
  383.  
  384. From Brian Reid
  385. ===============
  386.  
  387.    One day in 1983 I got the flu and had to stay home from work for
  388. three days with nothing to do.  I used that time to write MHE.  The
  389. fundamental idea behind MHE was that it was a "puppeteer" driving the MH
  390. programs underneath it.  MH had a model that the editor was supposed to
  391. run as a subprocess of the mailer, which seemed to me at the time to be
  392. the tail wagging the dog.  So I turned it around and made the editor
  393. drive the MH programs.  I made sure that the UCI people (who were
  394. maintaining MH at the time) took in my changes and made them stick.
  395.  
  396.    Today, I still use my own version of MHE because I don't at all like
  397. the way that GNU mh-e works and I've never gotten to be good enough at
  398. hacking Emacs Lisp to make GNU mh-e do what I want.  The Gosling-emacs
  399. version of MHE and the GNU Emacs version of mh-e have almost nothing in
  400. common except similar names.  They work differently, have different
  401. conceptual models, and have different key bindings.  (1)
  402.  
  403.    Brian Reid, June 1994
  404.  
  405.    ---------- Footnotes ----------
  406.  
  407.    (1)  After reading this article, I questioned Brian about his
  408. version of MHE, and received some great ideas for improving mh-e such
  409. as a dired-like method of selecting folders; and removing the prompting
  410. when sending mail, filling in the blanks in the draft buffer instead.
  411. I passed them on to Stephen Gildea, the current maintainer, and he was
  412. excited about the ideas as well.  Perhaps one day, mh-e will again
  413. resemble MHE, although none of these ideas are manifest in Version 5.0.
  414.  
  415. 
  416. File: mh-e,  Node: From Jim Larus,  Next: From Stephen Gildea,  Prev: From Brian Reid,  Up: History
  417.  
  418. From Jim Larus
  419. ==============
  420.  
  421.    Brian Reid, while at CMU or shortly after going to Stanford wrote a
  422. mail reading program called MHE for Gosling Emacs.  It had much the same
  423. structure as mh-e (i.e., invoked MH programs), though it was simpler and
  424. the commands were slightly different.  Unfortunately, I no longer have a
  425. copy so the differences are lost in the mists of time.
  426.  
  427.    In '82-83, I was working at BBN and wrote a lot of mlisp code in
  428. Gosling Emacs to make it look more like Tennex Emacs.  One of the
  429. packages that I picked up and improved was Reid's mail system.  In '83,
  430. I went back to Berkeley.  About that time, Stallman's first version of
  431. GNU Emacs came out and people started to move to it from Gosling Emacs
  432. (as I recall, the transition took a year or two).  I decided to port
  433. Reid's MHE and used the mlisp to Emacs Lisp translator that came with
  434. GNU Emacs.  It did a lousy job and the resulting code didn't work, so I
  435. bit the bullet and rewrote the code by hand (it was a lot smaller and
  436. simpler then, so it took only a day or two).
  437.  
  438.    Soon after that, mh-e became part of the standard Emacs distribution
  439. and suggestions kept dribbling in for improvements.  mh-e soon reached
  440. sufficient functionality to keep me happy, but I kept on improving it
  441. because I was a graduate student with plenty of time on my hands and it
  442. was more fun than my dissertation.  In retrospect, the one thing that I
  443. regret is not writing any documentation, which seriously limited the use
  444. and appeal of the package.
  445.  
  446.    In '89, I came to Wisconsin as a professor and decided not to work on
  447. mh-e.  It was stable, except for minor bugs, and had enough
  448. functionality, so I let it be for a few years.  Stephen Gildea of BBN
  449. began to pester me about the bugs, but I ignored them.  In 1990, he went
  450. off to the X Consortium, said good bye, and said that he would now be
  451. using `xmh'.  A few months later, he came back and said that he
  452. couldn't stand `xmh' and could I put a few more bug fixes into mh-e.
  453. At that point, I had no interest in fixing mh-e, so I gave the
  454. responsibility of maintenance to him and he has done a fine job since
  455. then.
  456.  
  457.    Jim Larus, June 1994
  458.  
  459. 
  460. File: mh-e,  Node: From Stephen Gildea,  Prev: From Jim Larus,  Up: History
  461.  
  462. From Stephen Gildea
  463. ===================
  464.  
  465.    In 1987 I went to work for Bolt Beranek and Newman, as Jim had before
  466. me.  In my previous job, I had been using RMAIL, but as my folders tend
  467. to run large, I was frustrated with the speed of RMAIL.  However, I
  468. stuck with it because I wanted the GNU Emacs interface.  I am very
  469. familiar and comfortable with the Emacs interface (with just a few
  470. modifications of my own) and dislike having to use applications with
  471. embedded editors; they never live up to Emacs.
  472.  
  473.    MH is the mail reader of choice at BBN, so I converted to it.  Since
  474. I didn't want to give up using an Emacs interface, I started using mh-e.
  475. As is my wont, I started hacking on it almost immediately.  I first used
  476. version 3.4m.  One of the first features I added was to treat the folder
  477. buffer as a file-visiting buffer: you could lock it, save it, and be
  478. warned of unsaved changes when killing it.  I also worked to bring its
  479. functionality a little closer to RMAIL.  Jim Larus was very cooperative
  480. about merging in my changes, and my efforts first appeared in version
  481. 3.6, distributed with Emacs 18.52 in 1988.  Next I decided mh-e was too
  482. slow and optimized it a lot.  Version, 3.7, distributed with Emacs 18.56
  483. in 1990, was noticeably faster.
  484.  
  485.    When I moved to the X Consortium I became the first person there to
  486. not use xmh.  (There is now one other engineer there using mh-e.)  About
  487. this point I took over maintenance of mh-e from Jim and was finally able
  488. to add some features Jim hadn't accepted, such as the backward searching
  489. undo.  My first release was 3.8 (Emacs 18.58) in 1992.
  490.  
  491.    Now, in 1994, we see a flurry of releases, with both 4.0 and 5.0.
  492. Version 4.0 added many new features, including background folder
  493. collection and support for composing MIME messages.  (Reading MIME
  494. messages remains to be done, alas.)  While writing this book, Bill
  495. Wohler gave mh-e its closest examination ever, uncovering bugs and
  496. inconsistencies that required a new major version to fix, and so version
  497. 5 was released.
  498.  
  499.    Stephen Gildea, June 1994
  500.  
  501. 
  502. File: mh-e,  Node: Changes to mh-e,  Next: Copying,  Prev: History,  Up: Top
  503.  
  504. Changes to mh-e
  505. ***************
  506.  
  507.    mh-e had a fairly major facelift between Versions 3 and 4.  The
  508. differences between Versions 4 and 5 from the user's viewpoint are
  509. relatively minor.  The prompting order for the folder and message number
  510. in a couple of functions had been switched inadvertently in Version 4.
  511. Version 5 switches the order back.  The `+inbox' folder is no longer
  512. hard-coded, but rather uses the `Inbox' MH Profile entry.  See the file
  513. `etc/MH-E-NEWS' in the Emacs distribution for more details on the
  514. changes.
  515.  
  516.    This section documents the changes between Version 3 and newer
  517. versions so that you'll know which commands to use (or which commands
  518. you won't have) in case you're stuck with an old version.
  519.  
  520.    The following tables summarize the changes to buffer names, commands
  521. and variables.
  522.  
  523. Buffer Mode Names
  524. =================
  525.  
  526.      Version 3           Version 4
  527.      
  528.      mh-e folder        MH-Folder
  529.      mh-e scan          MH-Folder
  530.      mh-e show          MH-Folder Show
  531.      Fundamental        MH-Show
  532.      mh-e letter        MH-Letter
  533.      mh-e letter        MH-Pick
  534.  
  535. Commands
  536. ========
  537.  
  538.                 Version 3                        Version 4
  539.      
  540.      Function               Command   Command          Function
  541.      
  542.      mh-first-msg           <          M-<               mh-first-msg
  543.      -                      -          M->               mh-last-msg
  544.      mh-show                .          RET               mh-show
  545.      -                      -          ,                 mh-header-display
  546.      mh-reply               a          r                 mh-reply
  547.      mh-redistribute        r          M-d               mh-redistribute
  548.      mh-unshar-msg          -          M-n               mh-store-msg
  549.      mh-write-msg-to-file   M-o        C-o               mh-write-msg-to-file
  550.      mh-delete-msg-from-seq C-u M-%    M-#               mh-delete-seq
  551.      -                      -          M-q               mh-list-sequences
  552.      mh-quit                b          q                 mh-quit
  553.      -                      -          C-C C-f C-r       mh-to-field (`From:')
  554.      -                      -          C-C C-f C-d       mh-to-field (`Dcc:')
  555.  
  556. Variables
  557. =========
  558.  
  559.                Version 3                           Version 4
  560.      
  561.      Variable              Value             Value           Variable
  562.      
  563.      mh-show-buffer-      "{%%b}  %s/%d"    "{show-%s} %d"  mh-show-buffer-
  564.      mode-line-buffer-id                                    mode-line-buffer-id
  565.      mh-unshar-default-   ""                nil             mh-store-default-
  566.      directory                                              directory
  567.  
  568. New Variables
  569. =============
  570.  
  571.      mail-citation-hook                           mh-new-draft-cleaned-headers
  572.      mail-header-separator                        mh-pick-mode-hook
  573.      mh-auto-folder-collect                       mh-refile-msg-hook
  574.      mh-comp-formfile                             mh-scan-prog
  575.      mh-repl-formfile                             mh-send-prog
  576.      mh-delete-msg-hook                           mh-show-hook
  577.      mh-forward-subject-format                    mh-show-mode-hook
  578.      mh-inc-prog                                  mh-signature-file-name
  579.      mh-mime-content-types                        mh-sortm-args
  580.      mh-default-folder-for-message-function       mh-repl-formfile
  581.      mh-mhn-args
  582.  
  583. 
  584. File: mh-e,  Node: Copying,  Next: Command Index,  Prev: Changes to mh-e,  Up: Top
  585.  
  586. GNU GENERAL PUBLIC LICENSE
  587. **************************
  588.  
  589.                          Version 2, June 1991
  590.  
  591.      Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  592.      675 Mass Ave, Cambridge, MA 02139, USA
  593.      
  594.      Everyone is permitted to copy and distribute verbatim copies
  595.      of this license document, but changing it is not allowed.
  596.  
  597. Preamble
  598. ========
  599.  
  600.    The licenses for most software are designed to take away your
  601. freedom to share and change it.  By contrast, the GNU General Public
  602. License is intended to guarantee your freedom to share and change free
  603. software--to make sure the software is free for all its users.  This
  604. General Public License applies to most of the Free Software
  605. Foundation's software and to any other program whose authors commit to
  606. using it.  (Some other Free Software Foundation software is covered by
  607. the GNU Library General Public License instead.)  You can apply it to
  608. your programs, too.
  609.  
  610.    When we speak of free software, we are referring to freedom, not
  611. price.  Our General Public Licenses are designed to make sure that you
  612. have the freedom to distribute copies of free software (and charge for
  613. this service if you wish), that you receive source code or can get it
  614. if you want it, that you can change the software or use pieces of it in
  615. new free programs; and that you know you can do these things.
  616.  
  617.    To protect your rights, we need to make restrictions that forbid
  618. anyone to deny you these rights or to ask you to surrender the rights.
  619. These restrictions translate to certain responsibilities for you if you
  620. distribute copies of the software, or if you modify it.
  621.  
  622.    For example, if you distribute copies of such a program, whether
  623. gratis or for a fee, you must give the recipients all the rights that
  624. you have.  You must make sure that they, too, receive or can get the
  625. source code.  And you must show them these terms so they know their
  626. rights.
  627.  
  628.    We protect your rights with two steps: (1) copyright the software,
  629. and (2) offer you this license which gives you legal permission to copy,
  630. distribute and/or modify the software.
  631.  
  632.    Also, for each author's protection and ours, we want to make certain
  633. that everyone understands that there is no warranty for this free
  634. software.  If the software is modified by someone else and passed on, we
  635. want its recipients to know that what they have is not the original, so
  636. that any problems introduced by others will not reflect on the original
  637. authors' reputations.
  638.  
  639.    Finally, any free program is threatened constantly by software
  640. patents.  We wish to avoid the danger that redistributors of a free
  641. program will individually obtain patent licenses, in effect making the
  642. program proprietary.  To prevent this, we have made it clear that any
  643. patent must be licensed for everyone's free use or not licensed at all.
  644.  
  645.    The precise terms and conditions for copying, distribution and
  646. modification follow.
  647.  
  648.     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  649.  
  650.   0. This License applies to any program or other work which contains a
  651.      notice placed by the copyright holder saying it may be distributed
  652.      under the terms of this General Public License.  The "Program",
  653.      below, refers to any such program or work, and a "work based on
  654.      the Program" means either the Program or any derivative work under
  655.      copyright law: that is to say, a work containing the Program or a
  656.      portion of it, either verbatim or with modifications and/or
  657.      translated into another language.  (Hereinafter, translation is
  658.      included without limitation in the term "modification".)  Each
  659.      licensee is addressed as "you".
  660.  
  661.      Activities other than copying, distribution and modification are
  662.      not covered by this License; they are outside its scope.  The act
  663.      of running the Program is not restricted, and the output from the
  664.      Program is covered only if its contents constitute a work based on
  665.      the Program (independent of having been made by running the
  666.      Program).  Whether that is true depends on what the Program does.
  667.  
  668.   1. You may copy and distribute verbatim copies of the Program's
  669.      source code as you receive it, in any medium, provided that you
  670.      conspicuously and appropriately publish on each copy an appropriate
  671.      copyright notice and disclaimer of warranty; keep intact all the
  672.      notices that refer to this License and to the absence of any
  673.      warranty; and give any other recipients of the Program a copy of
  674.      this License along with the Program.
  675.  
  676.      You may charge a fee for the physical act of transferring a copy,
  677.      and you may at your option offer warranty protection in exchange
  678.      for a fee.
  679.  
  680.   2. You may modify your copy or copies of the Program or any portion
  681.      of it, thus forming a work based on the Program, and copy and
  682.      distribute such modifications or work under the terms of Section 1
  683.      above, provided that you also meet all of these conditions:
  684.  
  685.        a. You must cause the modified files to carry prominent notices
  686.           stating that you changed the files and the date of any change.
  687.  
  688.        b. You must cause any work that you distribute or publish, that
  689.           in whole or in part contains or is derived from the Program
  690.           or any part thereof, to be licensed as a whole at no charge
  691.           to all third parties under the terms of this License.
  692.  
  693.        c. If the modified program normally reads commands interactively
  694.           when run, you must cause it, when started running for such
  695.           interactive use in the most ordinary way, to print or display
  696.           an announcement including an appropriate copyright notice and
  697.           a notice that there is no warranty (or else, saying that you
  698.           provide a warranty) and that users may redistribute the
  699.           program under these conditions, and telling the user how to
  700.           view a copy of this License.  (Exception: if the Program
  701.           itself is interactive but does not normally print such an
  702.           announcement, your work based on the Program is not required
  703.           to print an announcement.)
  704.  
  705.      These requirements apply to the modified work as a whole.  If
  706.      identifiable sections of that work are not derived from the
  707.      Program, and can be reasonably considered independent and separate
  708.      works in themselves, then this License, and its terms, do not
  709.      apply to those sections when you distribute them as separate
  710.      works.  But when you distribute the same sections as part of a
  711.      whole which is a work based on the Program, the distribution of
  712.      the whole must be on the terms of this License, whose permissions
  713.      for other licensees extend to the entire whole, and thus to each
  714.      and every part regardless of who wrote it.
  715.  
  716.      Thus, it is not the intent of this section to claim rights or
  717.      contest your rights to work written entirely by you; rather, the
  718.      intent is to exercise the right to control the distribution of
  719.      derivative or collective works based on the Program.
  720.  
  721.      In addition, mere aggregation of another work not based on the
  722.      Program with the Program (or with a work based on the Program) on
  723.      a volume of a storage or distribution medium does not bring the
  724.      other work under the scope of this License.
  725.  
  726.   3. You may copy and distribute the Program (or a work based on it,
  727.      under Section 2) in object code or executable form under the terms
  728.      of Sections 1 and 2 above provided that you also do one of the
  729.      following:
  730.  
  731.        a. Accompany it with the complete corresponding machine-readable
  732.           source code, which must be distributed under the terms of
  733.           Sections 1 and 2 above on a medium customarily used for
  734.           software interchange; or,
  735.  
  736.        b. Accompany it with a written offer, valid for at least three
  737.           years, to give any third party, for a charge no more than your
  738.           cost of physically performing source distribution, a complete
  739.           machine-readable copy of the corresponding source code, to be
  740.           distributed under the terms of Sections 1 and 2 above on a
  741.           medium customarily used for software interchange; or,
  742.  
  743.        c. Accompany it with the information you received as to the offer
  744.           to distribute corresponding source code.  (This alternative is
  745.           allowed only for noncommercial distribution and only if you
  746.           received the program in object code or executable form with
  747.           such an offer, in accord with Subsection b above.)
  748.  
  749.      The source code for a work means the preferred form of the work for
  750.      making modifications to it.  For an executable work, complete
  751.      source code means all the source code for all modules it contains,
  752.      plus any associated interface definition files, plus the scripts
  753.      used to control compilation and installation of the executable.
  754.      However, as a special exception, the source code distributed need
  755.      not include anything that is normally distributed (in either
  756.      source or binary form) with the major components (compiler,
  757.      kernel, and so on) of the operating system on which the executable
  758.      runs, unless that component itself accompanies the executable.
  759.  
  760.      If distribution of executable or object code is made by offering
  761.      access to copy from a designated place, then offering equivalent
  762.      access to copy the source code from the same place counts as
  763.      distribution of the source code, even though third parties are not
  764.      compelled to copy the source along with the object code.
  765.  
  766.   4. You may not copy, modify, sublicense, or distribute the Program
  767.      except as expressly provided under this License.  Any attempt
  768.      otherwise to copy, modify, sublicense or distribute the Program is
  769.      void, and will automatically terminate your rights under this
  770.      License.  However, parties who have received copies, or rights,
  771.      from you under this License will not have their licenses
  772.      terminated so long as such parties remain in full compliance.
  773.  
  774.   5. You are not required to accept this License, since you have not
  775.      signed it.  However, nothing else grants you permission to modify
  776.      or distribute the Program or its derivative works.  These actions
  777.      are prohibited by law if you do not accept this License.
  778.      Therefore, by modifying or distributing the Program (or any work
  779.      based on the Program), you indicate your acceptance of this
  780.      License to do so, and all its terms and conditions for copying,
  781.      distributing or modifying the Program or works based on it.
  782.  
  783.   6. Each time you redistribute the Program (or any work based on the
  784.      Program), the recipient automatically receives a license from the
  785.      original licensor to copy, distribute or modify the Program
  786.      subject to these terms and conditions.  You may not impose any
  787.      further restrictions on the recipients' exercise of the rights
  788.      granted herein.  You are not responsible for enforcing compliance
  789.      by third parties to this License.
  790.  
  791.   7. If, as a consequence of a court judgment or allegation of patent
  792.      infringement or for any other reason (not limited to patent
  793.      issues), conditions are imposed on you (whether by court order,
  794.      agreement or otherwise) that contradict the conditions of this
  795.      License, they do not excuse you from the conditions of this
  796.      License.  If you cannot distribute so as to satisfy simultaneously
  797.      your obligations under this License and any other pertinent
  798.      obligations, then as a consequence you may not distribute the
  799.      Program at all.  For example, if a patent license would not permit
  800.      royalty-free redistribution of the Program by all those who
  801.      receive copies directly or indirectly through you, then the only
  802.      way you could satisfy both it and this License would be to refrain
  803.      entirely from distribution of the Program.
  804.  
  805.      If any portion of this section is held invalid or unenforceable
  806.      under any particular circumstance, the balance of the section is
  807.      intended to apply and the section as a whole is intended to apply
  808.      in other circumstances.
  809.  
  810.      It is not the purpose of this section to induce you to infringe any
  811.      patents or other property right claims or to contest validity of
  812.      any such claims; this section has the sole purpose of protecting
  813.      the integrity of the free software distribution system, which is
  814.      implemented by public license practices.  Many people have made
  815.      generous contributions to the wide range of software distributed
  816.      through that system in reliance on consistent application of that
  817.      system; it is up to the author/donor to decide if he or she is
  818.      willing to distribute software through any other system and a
  819.      licensee cannot impose that choice.
  820.  
  821.      This section is intended to make thoroughly clear what is believed
  822.      to be a consequence of the rest of this License.
  823.  
  824.   8. If the distribution and/or use of the Program is restricted in
  825.      certain countries either by patents or by copyrighted interfaces,
  826.      the original copyright holder who places the Program under this
  827.      License may add an explicit geographical distribution limitation
  828.      excluding those countries, so that distribution is permitted only
  829.      in or among countries not thus excluded.  In such case, this
  830.      License incorporates the limitation as if written in the body of
  831.      this License.
  832.  
  833.   9. The Free Software Foundation may publish revised and/or new
  834.      versions of the General Public License from time to time.  Such
  835.      new versions will be similar in spirit to the present version, but
  836.      may differ in detail to address new problems or concerns.
  837.  
  838.      Each version is given a distinguishing version number.  If the
  839.      Program specifies a version number of this License which applies
  840.      to it and "any later version", you have the option of following
  841.      the terms and conditions either of that version or of any later
  842.      version published by the Free Software Foundation.  If the Program
  843.      does not specify a version number of this License, you may choose
  844.      any version ever published by the Free Software Foundation.
  845.  
  846.  10. If you wish to incorporate parts of the Program into other free
  847.      programs whose distribution conditions are different, write to the
  848.      author to ask for permission.  For software which is copyrighted
  849.      by the Free Software Foundation, write to the Free Software
  850.      Foundation; we sometimes make exceptions for this.  Our decision
  851.      will be guided by the two goals of preserving the free status of
  852.      all derivatives of our free software and of promoting the sharing
  853.      and reuse of software generally.
  854.  
  855.                                 NO WARRANTY
  856.  
  857.  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
  858.      WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
  859.      LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  860.      HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
  861.      WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT
  862.      NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  863.      FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE
  864.      QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
  865.      PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  866.      SERVICING, REPAIR OR CORRECTION.
  867.  
  868.  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  869.      WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
  870.      MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
  871.      LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
  872.      INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
  873.      INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  874.      DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU
  875.      OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY
  876.      OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
  877.      ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  878.  
  879.                       END OF TERMS AND CONDITIONS
  880.  
  881. How to Apply These Terms to Your New Programs
  882. =============================================
  883.  
  884.    If you develop a new program, and you want it to be of the greatest
  885. possible use to the public, the best way to achieve this is to make it
  886. free software which everyone can redistribute and change under these
  887. terms.
  888.  
  889.    To do so, attach the following notices to the program.  It is safest
  890. to attach them to the start of each source file to most effectively
  891. convey the exclusion of warranty; and each file should have at least
  892. the "copyright" line and a pointer to where the full notice is found.
  893.  
  894.      ONE LINE TO GIVE THE PROGRAM'S NAME AND AN IDEA OF WHAT IT DOES.
  895.      Copyright (C) 19YY  NAME OF AUTHOR
  896.      
  897.      This program is free software; you can redistribute it and/or
  898.      modify it under the terms of the GNU General Public License
  899.      as published by the Free Software Foundation; either version 2
  900.      of the License, or (at your option) any later version.
  901.      
  902.      This program is distributed in the hope that it will be useful,
  903.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  904.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  905.      GNU General Public License for more details.
  906.      
  907.      You should have received a copy of the GNU General Public License
  908.      along with this program; if not, write to the Free Software
  909.      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  910.  
  911.    Also add information on how to contact you by electronic and paper
  912. mail.
  913.  
  914.    If the program is interactive, make it output a short notice like
  915. this when it starts in an interactive mode:
  916.  
  917.      Gnomovision version 69, Copyright (C) 19YY NAME OF AUTHOR
  918.      Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
  919.      type `show w'.  This is free software, and you are welcome
  920.      to redistribute it under certain conditions; type `show c'
  921.      for details.
  922.  
  923.    The hypothetical commands `show w' and `show c' should show the
  924. appropriate parts of the General Public License.  Of course, the
  925. commands you use may be called something other than `show w' and `show
  926. c'; they could even be mouse-clicks or menu items--whatever suits your
  927. program.
  928.  
  929.    You should also get your employer (if you work as a programmer) or
  930. your school, if any, to sign a "copyright disclaimer" for the program,
  931. if necessary.  Here is a sample; alter the names:
  932.  
  933.      Yoyodyne, Inc., hereby disclaims all copyright
  934.      interest in the program `Gnomovision'
  935.      (which makes passes at compilers) written
  936.      by James Hacker.
  937.      
  938.      SIGNATURE OF TY COON, 1 April 1989
  939.      Ty Coon, President of Vice
  940.  
  941.    This General Public License does not permit incorporating your
  942. program into proprietary programs.  If your program is a subroutine
  943. library, you may consider it more useful to permit linking proprietary
  944. applications with the library.  If this is what you want to do, use the
  945. GNU Library General Public License instead of this License.
  946.  
  947. 
  948. File: mh-e,  Node: Command Index,  Next: Variable Index,  Prev: Copying,  Up: Top
  949.  
  950. Command Index
  951. *************
  952.  
  953. * Menu:
  954.  
  955. * display-time:                         Incorporating.
  956. * mh-burst-digest:                      Reading Digests.
  957. * mh-check-whom:                        Recipients.
  958. * mh-copy-msg:                          Organizing.
  959. * mh-delete-msg-from-seq:               Sequences.
  960. * mh-delete-msg-no-motion:              Deleting.
  961. * mh-delete-msg:                        Deleting.
  962. * mh-delete-seq:                        Sequences.
  963. * mh-do-pick-search:                    Searching.
  964. * mh-edit-again:                        Old Drafts.
  965. * mh-edit-mhn:                          Sending MIME.
  966. * mh-execute-commands <1>:              Customizing Finishing Up.
  967. * mh-execute-commands <1>:              Customizing Incorporating.
  968. * mh-execute-commands:                  Finishing Up.
  969. * mh-extract-rejected-mail:             Old Drafts.
  970. * mh-first-msg:                         Moving Around.
  971. * mh-forward:                           Forwarding.
  972. * mh-fully-kill-draft:                  Killing Draft.
  973. * mh-goto-msg:                          Moving Around.
  974. * mh-inc-folder:                        Incorporating.
  975. * mh-insert-letter:                     Inserting Messages.
  976. * mh-insert-signature:                  Signature.
  977. * mh-insert-signature, example:         Customizing Sending.
  978. * mh-last-msg:                          Moving Around.
  979. * mh-list-folders:                      Organizing.
  980. * mh-list-sequences:                    Sequences.
  981. * mh-mhn-compose-anon-ftp:              FTP.
  982. * mh-mhn-compose-external-compressed-tar: Tar.
  983. * mh-mhn-compose-forw:                  Forwarding MIME.
  984. * mh-mhn-compose-insertion:             Other MIME Objects.
  985. * mh-msg-is-in-seq:                     Sequences.
  986. * mh-narrow-to-seq:                     Sequences.
  987. * mh-next-undeleted-msg:                Moving Around.
  988. * mh-pack-folder:                       Organizing.
  989. * mh-page-digest-backwards:             Reading Digests.
  990. * mh-page-digest:                       Reading Digests.
  991. * mh-page-msg:                          Viewing.
  992. * mh-pipe-msg:                          Files and Pipes.
  993. * mh-previous-page:                     Viewing.
  994. * mh-previous-undeleted-msg:            Moving Around.
  995. * mh-print-msg:                         Printing.
  996. * mh-put-msg-in-seq:                    Sequences.
  997. * mh-quit:                              Finishing Up.
  998. * mh-redistribute:                      Redistributing.
  999. * mh-refile-msg <1>:                    Customizing Organizing.
  1000. * mh-refile-msg:                        Organizing.
  1001. * mh-refile-or-write-again:             Organizing.
  1002. * mh-reply:                             Replying.
  1003. * mh-rescan-folder:                     Organizing.
  1004. * mh-rescan-folder, example:            Customizing Incorporating.
  1005. * mh-revert-mhn-edit:                   Sending MIME.
  1006. * mh-rmail <1>:                         Finishing Up.
  1007. * mh-rmail <1>:                         Reading Mail.
  1008. * mh-rmail:                             Reading Mail Tour.
  1009. * mh-rmail, example:                    Customizing Reading.
  1010. * mh-search-folder:                     Searching.
  1011. * mh-send-letter:                       Sending Message.
  1012. * mh-send:                              Sending Mail.
  1013. * mh-show:                              Viewing.
  1014. * mh-show, example:                     Customizing Incorporating.
  1015. * mh-smail-other-window:                Sending Mail.
  1016. * mh-smail <1>:                         Sending Mail.
  1017. * mh-smail <1>:                         Processing Mail Tour.
  1018. * mh-smail:                             Sending Mail Tour.
  1019. * mh-sort-folder <1>:                   Customizing Organizing.
  1020. * mh-sort-folder:                       Organizing.
  1021. * mh-store-buffer:                      Customizing Files and Pipes.
  1022. * mh-store-msg <1>:                     Customizing Files and Pipes.
  1023. * mh-store-msg:                         Files and Pipes.
  1024. * mh-to-fcc <1>:                        Customizing Organizing.
  1025. * mh-to-fcc:                            Header.
  1026. * mh-to-field <1>:                      Searching.
  1027. * mh-to-field:                          Header.
  1028. * mh-toggle-showing:                    Moving Around.
  1029. * mh-undo-folder:                       Finishing Up.
  1030. * mh-undo:                              Finishing Up.
  1031. * mh-update-sequences:                  Sequences.
  1032. * mh-version:                           Miscellaneous.
  1033. * mh-visit-folder:                      Organizing.
  1034. * mh-widen:                             Sequences.
  1035. * mh-write-msg-to-file:                 Files and Pipes.
  1036. * mh-yank-cur-msg:                      Inserting Letter.
  1037.  
  1038.