Variable: auth-source-pass-extra-query-keywords

auth-source-pass-extra-query-keywords is a customizable variable defined in auth-source-pass.el.gz.

Value

nil

Documentation

Whether to consider additional keywords when performing a query.

Specifically, when the value is t, recognize the :max and
:require keywords and accept lists of query parameters for
certain keywords, such as :host and :user. Beyond that, wrap all returned secrets in a function and don't bother considering subdomains when matching hosts. Also, forgo any further results filtering unless given an applicable :require argument. When this option is nil, do none of that, and enact the narrowing behavior described toward the bottom of the Info node (auth) The Unix password store.

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

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source-pass.el.gz
(defcustom auth-source-pass-extra-query-keywords nil
  "Whether to consider additional keywords when performing a query.
Specifically, when the value is t, recognize the `:max' and
`:require' keywords and accept lists of query parameters for
certain keywords, such as `:host' and `:user'.  Beyond that, wrap
all returned secrets in a function and don't bother considering
subdomains when matching hosts.  Also, forgo any further results
filtering unless given an applicable `:require' argument.  When
this option is nil, do none of that, and enact the narrowing
behavior described toward the bottom of the Info node `(auth) The
Unix password store'."
  :type 'boolean
  :version "29.1")