Function: mh-index-new-messages

mh-index-new-messages is an autoloaded, interactive and byte-compiled function defined in mh-search.el.gz.

Signature

(mh-index-new-messages FOLDERS)

Documentation

Display unseen messages.

If you use a program such as "procmail" to use "rcvstore" to file your incoming mail automatically, you can display new, unseen, messages using this command. All messages in the "unseen" sequence from the folders in mh-new-messages-folders are listed.

With a prefix argument, enter a space-separated list of FOLDERS, or nothing to search all folders.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-search.el.gz
;; Sequence Searches

;;;###mh-autoload
(defun mh-index-new-messages (folders)
  "Display unseen messages.

If you use a program such as \"procmail\" to use \"rcvstore\" to file
your incoming mail automatically, you can display new, unseen,
messages using this command. All messages in the \"unseen\"
sequence from the folders in `mh-new-messages-folders' are
listed.

With a prefix argument, enter a space-separated list of FOLDERS,
or nothing to search all folders."
  (interactive
   (list (if current-prefix-arg
             (split-string (read-string "Search folder(s) (default all): "))
           mh-new-messages-folders)))
  (mh-index-sequenced-messages folders mh-unseen-seq))