Variable: gnus-uu-ignore-files-by-type
gnus-uu-ignore-files-by-type is a customizable variable defined in
gnus-uu.el.gz.
Value
nil
Documentation
Regexp matching files that shouldn't be viewed, based on MIME file type.
If, for instance, you want gnus-uu to ignore all audio files and all mpegs, you could say something like
(setq gnus-uu-ignore-files-by-type "audio/\\\\|video/mpeg")
Note that this variable can be used in conjunction with the
gnus-uu-ignore-files-by-name variable.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defcustom gnus-uu-ignore-files-by-type nil
"Regexp matching files that shouldn't be viewed, based on MIME file type.
If, for instance, you want gnus-uu to ignore all audio files and all mpegs,
you could say something like
(setq gnus-uu-ignore-files-by-type \"audio/\\\\|video/mpeg\")
Note that this variable can be used in conjunction with the
`gnus-uu-ignore-files-by-name' variable."
:group 'gnus-extract
:type '(choice (const :tag "off" nil)
(regexp :format "%v")))