How to change/select your nickname for IRC using NickServ

9

1

Real beginner with IRC so bear with me.

NickServ appears to be some sort of external 'application' that allows you to register and sign into IRCs.

To register:

/msg nickserv register <password> <email>

To 'sign in' (identify):

/msg nickserv identify <name_password> <email>

Upon registering, I get this email:

jimboF2,

In order to complete your registration, you must send the following
command on IRC:
/msg NickServ VERIFY REGISTER jimboF2 xasdao231d

So where did jimboF2 come from and how can I change it?

Also, upon using a different irc client, it thinks my nick name is james_, the username of my Ubuntu account. I can't seem to change it to jimboF2.

07:49 < james_> sdfsd
07:49 -!- #ruby-lang Cannot send to channel

Attempting to sign in just does nothing at all. Literally nothing

/msg nickserv identify jimboF2 myemail@email.com

Starkers

Posted 2013-10-11T14:40:47.377

Reputation: 1 798

Maybe JimboF2 is your 'current' nickname when you register for the first time? (When you send the first /msg nickserv register password email ) – Darius – 2013-10-11T14:50:12.027

I think so. Is it generated by Nickserv? – Starkers – 2013-10-11T14:51:49.737

@Starkers - You don't know what your current nick is? You selected it. – Ramhound – 2013-10-11T15:00:18.163

@Ramhound It could be that the client OP uses gets a nick using the comouter username, XChat does this by default. And the webchat mibbit gives random nicknames... It could be that there's something like that happening on whatever client OP's using to access IRC. – Jerry – 2013-10-11T18:09:54.127

@Jerry - Its entirely possible thats the case, but when they send a message, they still would know their current nick. – Ramhound – 2013-10-11T18:12:47.080

Answers

11

In IRC, (not sure what client you're using) you usually can change your nickname by using:

/nick NewName

And if you want to 'lock' that name for your own use (assuming no one else has registered that nickname, you do that command as what you have done:

/msg NickServ register password email

Which then NickServ will attempt to warn other people (when you're offline) if they are trying to use your name, saying that your name is registered, and they need to either:

  1. Identify as you by doing /msg nickserv identify password (not sure if email is required, but it depends on the IRC server)
  2. Get 'kicked' out by NickServ, or Forced-Name-Change by NickServ if you / the person using your nickname unable to identify themselves within certain period of time - again depends on the IRC server setting.

So looks like you have accidentally registered JimboF2. If you don't want it, ignore it, simply change your name to a name that you want to register, and try to register the name again.

Hope this helps.

Darius

Posted 2013-10-11T14:40:47.377

Reputation: 4 817