Variable: gnus-uu-user-archive-rules

gnus-uu-user-archive-rules is a customizable variable defined in gnus-uu.el.gz.

Value

nil

Documentation

A list that can be set to override the default archive unpacking commands.

To use, for instance, untar to unpack tar files and zip -x to unpack zip files, say the following:
  (setq gnus-uu-user-archive-rules
    '(("\\\\.tar$" "untar")
      ("\\\\.zip$" "zip -x")))

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defcustom gnus-uu-user-archive-rules nil
  "A list that can be set to override the default archive unpacking commands.
To use, for instance, `untar' to unpack tar files and `zip -x' to
unpack zip files, say the following:
  (setq gnus-uu-user-archive-rules
    \\='((\"\\\\.tar$\" \"untar\")
      (\"\\\\.zip$\" \"zip -x\")))"
  :group 'gnus-extract-archive
  :type '(repeat (group regexp (string :tag "Command"))))