Variable: erc-nickserv-passwords

erc-nickserv-passwords is a customizable variable defined in erc-services.el.gz.

Value

nil

Documentation

Passwords used when identifying to NickServ automatically.

erc-prompt-for-nickserv-password must be nil for these passwords to be used.

Example of use:
  (setq erc-nickserv-passwords
        '((Libera.Chat (("nick-one" . "password")
                        ("nick-two" . "password")))
          (DALnet (("nick" . "password")))))

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-services.el.gz
(defcustom erc-nickserv-passwords nil
  "Passwords used when identifying to NickServ automatically.
`erc-prompt-for-nickserv-password' must be nil for these
passwords to be used.

Example of use:
  (setq erc-nickserv-passwords
        \\='((Libera.Chat ((\"nick-one\" . \"password\")
                        (\"nick-two\" . \"password\")))
          (DALnet ((\"nick\" . \"password\")))))"
  :type '(repeat
	  (list :tag "Network"
		(choice :tag "Network name"
			(const Ars)
			(const Austnet)
			(const Azzurra)
			(const BitlBee)
			(const BRASnet)
			(const DALnet)
			(const freenode)
			(const GalaxyNet)
			(const GRnet)
			(const iip)
                        (const Libera.Chat)
			(const OFTC)
			(const QuakeNet)
			(const Rizon)
			(const SlashNET)
                        (symbol :tag "Network name or session ID"))
		(repeat :tag "Nickname and password"
			(cons :tag "Identity"
			      (string :tag "Nick")
			      (string :tag "Password"
                                      :secret ?*))))))