Function: mh-msg-exists-p

mh-msg-exists-p is a byte-compiled function defined in mh-search.el.gz.

Signature

(mh-msg-exists-p MSG FOLDER)

Documentation

Check if MSG exists in FOLDER.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-search.el.gz
(defun mh-msg-exists-p (msg folder)
  "Check if MSG exists in FOLDER."
  (file-exists-p (format "%s%s/%s" mh-user-path (substring folder 1) msg)))