head 1.4; access; symbols; locks; strict; comment @# @; 1.4 date 2006.05.29.14.31.25; author jpeek; state Exp; branches; next 1.3; 1.3 date 2006.05.28.04.27.15; author jpeek; state Exp; branches; next 1.2; 1.2 date 2006.05.26.23.59.01; author jpeek; state Exp; branches; next 1.1; 1.1 date 2006.05.26.22.12.09; author jpeek; state Exp; branches; next ; desc @mh-e_63.html page from mh-e section of "MH & nmh: Email for Users & Programmers" @ 1.4 log @Removed 'html/' from end of http://mh-e.sourceforge.net/manual/html/ URLs @ text @
This section of MH & nmh: Email for Users & Programmers is now the MH-E Manual. It's moved to http://mh-e.sourceforge.net/manual/.
If you aren't taken to the new site in 15 seconds, please click on the link above.
You may also want to visit:
The name of the program that incorporates new mail is stored in
mh-inc-prog
; it is `"inc"' by default. This program
generates a one-line summary for each of the new messages. Unless it is
an absolute pathname, the file is assumed to be in the mh-progs
directory. You may also link a file to inc
that uses a different
format (see mh-profile
(5)). You'll then need to modify several
variables appropriately; see mh-scan-prog
below. You can set the
hook mh-inc-folder-hook
, which is called after new mail is
incorporated by the i (mh-inc-folder
) command. A good use
of this hook is to rescan the whole folder either after running M-x
mh-rmail the first time or when you've changed the message numbers from
outside of mh-e.
Rescan folder after incorporating new mail via mh-inc-folder-hook (defun my-mh-inc-folder-hook () "Hook to rescan folder after incorporating mail." (if (buffer-modified-p) ; if outstanding refiles and deletes, (mh-execute-commands)) ; carry them out (mh-rescan-folder) ; synchronize with +inbox (mh-show)) ; show the current message (add-hook 'mh-inc-folder-hook 'my-mh-inc-folder-hook)
Go to the first, previous, next, last section, table of contents.