Function: mm-uu-configure

mm-uu-configure is an interactive and byte-compiled function defined in mm-uu.el.gz.

Signature

(mm-uu-configure &optional SYMBOL VALUE)

Documentation

Configure detection of non-MIME attachments.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-uu.el.gz
(defun mm-uu-configure (&optional symbol value)
  "Configure detection of non-MIME attachments."
  (interactive)
  (if symbol (set-default symbol value))
  (setq mm-uu-beginning-regexp
        (mapconcat #'mm-uu-beginning-regexp
                   (delq nil (mapcar
                              (lambda (entry)
                                (if (mm-uu-configure-p (mm-uu-type entry)
                                                       'disabled)
                                    nil entry))
                              mm-uu-type-alist))
		   "\\|")))