Variable: mh-media-type-regexp
mh-media-type-regexp is a variable defined in mh-mime.el.gz.
Value
"\\(a\\(?:pplication\\|udio\\)\\|image\\|m\\(?:essage\\|ultipart\\)\\|text\\|video\\)/[-.+a-zA-Z0-9]+"
Documentation
Regexp matching valid media types used in MIME attachment compositions.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
(defvar mh-media-type-regexp
(concat (regexp-opt '("text" "image" "audio" "video" "application"
"multipart" "message") t)
"/[-.+a-zA-Z0-9]+")
"Regexp matching valid media types used in MIME attachment compositions.")