Function: mh-rmail

mh-rmail is an autoloaded, interactive and byte-compiled function defined in mh-folder.el.gz.

Signature

(mh-rmail &optional ARG)

Documentation

Incorporate new mail with MH.

Scan an MH folder if ARG is non-nil.

This function is an entry point to MH-E, the Emacs interface to the MH mail system.

Probably introduced at or before Emacs version 16.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;; MH-E Entry Points

;;;###autoload
(defun mh-rmail (&optional arg)
  "Incorporate new mail with MH.
Scan an MH folder if ARG is non-nil.

This function is an entry point to MH-E, the Emacs interface to
the MH mail system."
  (interactive "P")
  (mh-find-path)
  (if arg
      (progn
        (call-interactively 'mh-visit-folder)
        (mh-set-default-directory))
    (unless (get-buffer mh-inbox)
      (mh-visit-folder mh-inbox (symbol-name mh-unseen-seq))
      (mh-set-default-directory))
    (mh-inc-folder)))