Function: gnus-group-auto-expirable-p

gnus-group-auto-expirable-p is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-group-auto-expirable-p NAME)

Documentation

Check whether GROUP is auto-expirable or not.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(gnus-define-group-parameter
 auto-expire
 :type bool
 :function gnus-group-auto-expirable-p
 :function-document
 "Check whether GROUP is auto-expirable or not."
 :variable gnus-auto-expirable-newsgroups
 :variable-default nil
 :variable-document
 "Groups in which to automatically mark read articles as expirable.
If non-nil, this should be a regexp that should match all groups in
which to perform auto-expiry.  This only makes sense for mail groups."
 :variable-group nnmail-expire
 :variable-type '(choice (const nil)
			 regexp)
 :parameter-type '(const :tag "Automatic Expire" t)
 :parameter-document
 "All articles that are read will be marked as expirable.")