Last active
January 25, 2025 18:48
-
-
Save xkr47/8c820ca500a1febdc24d44bb56e5f9d5 to your computer and use it in GitHub Desktop.
How to add the libera.chat network to irssi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Replace all <....> parts with your specific details | |
/network add -nick <nick> libera | |
/server add -network libera -auto -ssl irc.libera.chat 6697 | |
/connect libera | |
/query NickServ | |
register <password> <email> | |
<copypaste line from email> | |
/network add -autosendcmd "" -sasl_username <user> -sasl_password <pass> -sasl_mechanism PLAIN libera | |
/channel add -auto <channel> libera | |
/join <channel> | |
/save |
Just registered to Libera.Chat. The third step (/connect libera
) did connect, but I was disconnected immediately due to not being authenticated (as I was not registered). So I was not able to register with these instruction, nor was I able to find instructions that would have worked with irssi. Finally I found these instructions on how to register via https://web.libera.chat/
Basically, I did the /query NickServ
, register and copy-paste verification command steps from email on web chat and the rest on irssi.
Nowadays, you need to use -tls
instead of -ssl
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Changed to use SASL when connecting instead of sending password to NickServ. See older revisions for NickServ method.