diff options
author | Corwin Brust <corwin@bru.st> | 2021-05-24 23:36:01 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-24 23:36:01 +0200 |
commit | a70a344941713baf08dc0c093bdf25cf36b09858 (patch) | |
tree | 3fd4de90e20f8efa21eac484caab5aa0ff20119b /lisp/erc | |
parent | 19c14be04fec3ae958bd14623ca2f8f84a53915f (diff) | |
download | emacs-a70a344941713baf08dc0c093bdf25cf36b09858.tar.gz emacs-a70a344941713baf08dc0c093bdf25cf36b09858.tar.bz2 emacs-a70a344941713baf08dc0c093bdf25cf36b09858.zip |
Add Libera.chat to `erc-nickserv-alist'
* lisp/erc/erc-services.el (erc-nickserv-alist): Add support for
the Libera chat.
Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/erc-services.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lisp/erc/erc-services.el b/lisp/erc/erc-services.el index 09d1f7a3302..62c9fbdd512 100644 --- a/lisp/erc/erc-services.el +++ b/lisp/erc/erc-services.el @@ -32,8 +32,8 @@ ;; As a default, ERC has the data for the official nickname services on ;; the networks Austnet, BrasNET, Dalnet, freenode, GalaxyNet, GRnet, -;; and Slashnet. You can add more by using M-x customize-variable RET -;; erc-nickserv-alist. +;; Libera.Chat and Slashnet. You can add more by using +;; M-x customize-variable RET erc-nickserv-alist. ;; Usage: ;; @@ -197,6 +197,7 @@ Example of use: (const GalaxyNet) (const GRnet) (const iip) + (const Libera) (const OFTC) (const QuakeNet) (const Rizon) @@ -264,6 +265,15 @@ Example of use: "type\\s-/squery\\s-Trent\\s-identify\\s-<password>" "Trent@anon.iip" "IDENTIFY" nil "SQUERY" nil) + (Libera + "NickServ!NickServ@services." + ;; Libera.Chat also accepts a password at login, see the `erc' + ;; :password argument. + "This\\s-nickname\\s-is\\s-registered.\\s-Please\\s-choose" + "NickServ" + "IDENTIFY" nil nil + ;; See also the 901 response code message. + "You\\s-are\\s-now\\s-identified\\s-for\\s-") (OFTC "NickServ!services@services.oftc.net" ;; OFTC's NickServ doesn't ask you to identify anymore. |