Variable: auth-source-cache-expiry

auth-source-cache-expiry is a customizable variable defined in auth-source.el.gz.

Value

7200

Documentation

How many seconds passwords are cached, or nil to disable expiring.

Overrides password-cache-expiry through a let-binding.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
;;;###autoload
(defcustom auth-source-cache-expiry 7200
  "How many seconds passwords are cached, or nil to disable expiring.
Overrides `password-cache-expiry' through a let-binding."
  :version "24.1"
  :type '(choice (const :tag "Never" nil)
                 (const :tag "All Day" 86400)
                 (const :tag "2 Hours" 7200)
                 (const :tag "30 Minutes" 1800)
                 (integer :tag "Seconds")))