Function: mairix-show-folder

mairix-show-folder is a byte-compiled function defined in mairix.el.gz.

Signature

(mairix-show-folder FOLDER)

Documentation

Display mail FOLDER with mail program.

The mail program is given by mairix-mail-program.

Source Code

;; Defined in /usr/src/emacs/lisp/net/mairix.el.gz
;;;; Helper functions

(defun mairix-show-folder (folder)
  "Display mail FOLDER with mail program.
The mail program is given by `mairix-mail-program'."
  (let ((display-function
	 (cadr (assq mairix-mail-program mairix-display-functions))))
    (if display-function
	(funcall display-function
		 (concat
		  (file-name-as-directory
		   (expand-file-name mairix-file-path))
		  folder))
      (error "No mail program set"))))