mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-29 07:58:28 +00:00
Update a few more IRC-related references to point to Libera.Chat
This commit is contained in:
parent
8d957f2dd8
commit
7a13ddfda0
@ -554,7 +554,7 @@ for the values of the other parameters, and @code{client-certificate}
|
||||
will be @code{nil}.
|
||||
|
||||
@example
|
||||
(erc-tls :server "chat.freenode.net" :full-name "J. Random Hacker")
|
||||
(erc-tls :server "irc.libera.chat" :full-name "J. Random Hacker")
|
||||
@end example
|
||||
|
||||
To use a certificate with @code{erc-tls}, specify the optional
|
||||
@ -572,21 +572,21 @@ various IRC networks.
|
||||
Examples of use:
|
||||
|
||||
@example
|
||||
(erc-tls :server "chat.freenode.net" :port 6697
|
||||
(erc-tls :server "irc.libera.chat" :port 6697
|
||||
:client-certificate
|
||||
'("/home/bandali/my-cert.key"
|
||||
"/home/bandali/my-cert.crt"))
|
||||
@end example
|
||||
|
||||
@example
|
||||
(erc-tls :server "chat.freenode.net" :port 6697
|
||||
(erc-tls :server "irc.libera.chat" :port 6697
|
||||
:client-certificate
|
||||
`(,(expand-file-name "~/cert-freenode.key")
|
||||
,(expand-file-name "~/cert-freenode.crt")))
|
||||
`(,(expand-file-name "~/cert-libera.key")
|
||||
,(expand-file-name "~/cert-libera.crt")))
|
||||
@end example
|
||||
|
||||
@example
|
||||
(erc-tls :server "chat.freenode.net" :port 6697
|
||||
(erc-tls :server "irc.libera.chat" :port 6697
|
||||
:client-certificate t)
|
||||
@end example
|
||||
|
||||
@ -595,7 +595,7 @@ line like the following to your authinfo file
|
||||
(e.g. @file{~/.authinfo.gpg}):
|
||||
|
||||
@example
|
||||
machine chat.freenode.net key /home/bandali/my-cert.key cert /home/bandali/my-cert.crt
|
||||
machine irc.libera.chat key /home/bandali/my-cert.key cert /home/bandali/my-cert.crt
|
||||
@end example
|
||||
|
||||
@xref{Help for users,,,auth, Emacs auth-source Library}, for more on the
|
||||
|
@ -2260,7 +2260,7 @@ Non-interactively, it takes the keyword arguments
|
||||
|
||||
That is, if called with
|
||||
|
||||
(erc-tls :server \"chat.freenode.net\" :full-name \"J. Random Hacker\")
|
||||
(erc-tls :server \"irc.libera.chat\" :full-name \"J. Random Hacker\")
|
||||
|
||||
then the server and full-name will be set to those values,
|
||||
whereas `erc-compute-port' and `erc-compute-nick' will be invoked
|
||||
@ -2276,7 +2276,7 @@ authentication by various IRC networks.
|
||||
|
||||
Example usage:
|
||||
|
||||
(erc-tls :server \"chat.freenode.net\" :port 6697
|
||||
(erc-tls :server \"irc.libera.chat\" :port 6697
|
||||
:client-certificate
|
||||
'(\"/home/bandali/my-cert.key\"
|
||||
\"/home/bandali/my-cert.crt\"))"
|
||||
|
@ -10888,7 +10888,7 @@ Non-interactively, it takes the keyword arguments
|
||||
|
||||
That is, if called with
|
||||
|
||||
(erc :server \"chat.freenode.net\" :full-name \"J. Random Hacker\")
|
||||
(erc :server \"irc.libera.chat\" :full-name \"J. Random Hacker\")
|
||||
|
||||
then the server and full-name will be set to those values,
|
||||
whereas `erc-compute-port' and `erc-compute-nick' will be invoked
|
||||
@ -10915,7 +10915,7 @@ Non-interactively, it takes the keyword arguments
|
||||
|
||||
That is, if called with
|
||||
|
||||
(erc-tls :server \"chat.freenode.net\" :full-name \"J. Random Hacker\")
|
||||
(erc-tls :server \"irc.libera.chat\" :full-name \"J. Random Hacker\")
|
||||
|
||||
then the server and full-name will be set to those values,
|
||||
whereas `erc-compute-port' and `erc-compute-nick' will be invoked
|
||||
@ -10931,7 +10931,7 @@ authentication by various IRC networks.
|
||||
|
||||
Example usage:
|
||||
|
||||
(erc-tls :server \"chat.freenode.net\" :port 6697
|
||||
(erc-tls :server \"irc.libera.chat\" :port 6697
|
||||
:client-certificate
|
||||
'(\"/home/bandali/my-cert.key\"
|
||||
\"/home/bandali/my-cert.crt\"))
|
||||
|
@ -362,7 +362,7 @@ From, and Cc against HEADER-REGEXP in
|
||||
(defvar bug-reference-setup-from-irc-alist
|
||||
`((,(concat "#" (regexp-opt '("emacs" "gnus" "org-mode" "rcirc"
|
||||
"erc") 'words))
|
||||
"freenode"
|
||||
"Libera.Chat"
|
||||
"\\([Bb]ug ?#?\\)\\([0-9]+\\(?:#[0-9]+\\)?\\)"
|
||||
"https://debbugs.gnu.org/%s"))
|
||||
"An alist for setting up `bug-reference-mode' in IRC modes.
|
||||
@ -377,8 +377,8 @@ Each element has the form
|
||||
|
||||
CHANNEL-REGEXP is a regexp matched against the current IRC
|
||||
channel name (e.g. #emacs). NETWORK-REGEXP is matched against
|
||||
the IRC network name (e.g. freenode). Both entries are optional.
|
||||
If all given entries match, BUG-REGEXP is set as
|
||||
the IRC network name (e.g. Libera.Chat). Both entries are
|
||||
optional. If all given entries match, BUG-REGEXP is set as
|
||||
`bug-reference-bug-regexp' and URL-FORMAT is set as
|
||||
`bug-reference-url-format'.")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user