rx - how to register a nickname

Registering a nickname on IRC means it is reserved for you to use, and no one else. It keeps others from using your nick, thus making you able to use it at all times. If you don't register your nick, others may end up using it. As such, some channels may require that you have registered it before chatting.

Registering

To register your nick, after choosing it, you can run the following command in your IRC client once connected:

/MSG NickServ REGISTER mypassword myemail@address.tld

Substitute mypassword with a secure password and myemail@address.tld with your email address. You will get sent a confirmation email; follow the instructions in the email to verify your account.

Logging in

After having registered your IRC nickname, you can log in manually:

/MSG NickServ IDENTIFY mypassword

This can be used to check if registration was successful. However, having to do this everytime you connect can quickly be annoying, which is why we recommend using either SASL PLAIN or SASL EXTERNAL to connect.

Using SASL PLAIN

The idea behind SASL PLAIN is that you, upon connection, authenticate with your username and password automatically before you're visible to the rest of the network. Setup varies according to the client, but many GUI clients typically have a setting option named `login method' or similar, and many TUI clients have commands you can use to modify your configuration and setup SASL. For example, to set it up in WeeChat:

/SET irc.server.rx.sasl_mechanism plain
/SET irc.server.rx.sasl_username mynickname
/SET irc.server.rx.sasl_password mypassword
/SAVE

Using SASL EXTERNAL

Despite a bit harder to setup than SASL PLAIN, it lets you forget about usernames and passwords and instead connect using a TLS client certificate. Setting it up is out of scope here, as it's mainly used by IRC power users, but Libera.Chat has a very detailed guide on how to set it up.

Forgot your password?

If you forgot your password, you can ask NickServ to email a key that can be used to set a new password:

/MSG NickServ SENDPASS mynickname

Once you received the key, you can set a new password:

/MSG NickServ SETPASS mynickname mykey mypassword

Need help?

You may run the following:

/MSG NickServ HELP

Alternatively, we're available in the #support channel for any questions that may arise.