Variable: erc-auth-source-services-function

erc-auth-source-services-function is a customizable variable defined in erc-services.el.gz.

Value

erc-auth-source-search

Documentation

Function to retrieve NickServ password from auth-source.

Called with a subset of keyword parameters known to auth-source-search and relevant to authenticating to nickname services. In return, ERC expects a string to send as the password, or nil, to fall through to the next method, such as prompting. See Info node (erc) auth-source for details.

This variable was added, or its default value changed, in ERC version
5.5.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-services.el.gz
(defcustom erc-auth-source-services-function #'erc-auth-source-search
  "Function to retrieve NickServ password from auth-source.
Called with a subset of keyword parameters known to
`auth-source-search' and relevant to authenticating to nickname
services.  In return, ERC expects a string to send as the
password, or nil, to fall through to the next method, such as
prompting.  See Info node `(erc) auth-source' for details."
  :package-version '(ERC . "5.5")
  :type '(choice (function-item erc-auth-source-search)
                 (const nil)
                 function))