Erroneous Nickname: Being held for registered user

These are old archives. They are kept for historic purposes only.
Post Reply
x7even
Posts: 3
Joined: Mon Nov 12, 2012 10:25 am

Erroneous Nickname: Being held for registered user

Post by x7even »

Hello

How can i fix it?
tgzero
Posts: 8
Joined: Sat Jun 05, 2010 9:36 am

Re: Erroneous Nickname: Being held for registered user

Post by tgzero »

/msg nickserv help release
/msg nickserv release nickname [password]
x7even
Posts: 3
Joined: Mon Nov 12, 2012 10:25 am

Re: Erroneous Nickname: Being held for registered user

Post by x7even »

I know release command. I stoped services and tried again but nickname didnt change.
x7even
Posts: 3
Joined: Mon Nov 12, 2012 10:25 am

Re: Erroneous Nickname: Being held for registered user

Post by x7even »

Resolve:

1-) Open unreal.cpp

Code: Select all

cd anope-1.9.7-source/modules/protocol
nano unreal.cpp
2-) Remove below line in unreal.cpp

Code: Select all

/* SVSHOLD - set */
    void SendSVSHold(const Anope::string &nick) anope_override
    {
        UplinkSocket::Message() << "BD + Q H " << nick << " " << Config->ServerName << " " << Anope::CurTime + Config->NSReleaseTimeout << " " << Anope::CurTime << " :Being held for registered user";
    }  
3-) run below commands

Code: Select all

cd /home/ircd/anope-1.9.7-source/build
make
make install
4) reboot unrealircd and services
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: Erroneous Nickname: Being held for registered user

Post by Jobe »

Note: by following the steps above (modifying Anope's source code) you forfeit official support by the Anope team on the grounds that the source code you're using is no longer the source code they provide and thus they cannot be held responsible for the effects of the changes you make.

Not to mention removing that line will NOT remove the hold on the nick in question. As for why NickServ release did not release the hold, you will need to take that up with Anope's support (without using modified source)
Your IP: Image
Your Country: Image
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Erroneous Nickname: Being held for registered user

Post by katsklaw »

Jobe1986 wrote:Note: by following the steps above (modifying Anope's source code) you forfeit official support by the Anope team on the grounds that the source code you're using is no longer the source code they provide and thus they cannot be held responsible for the effects of the changes you make.
Agreed. Instead just disable SVSHOLD in the config file.
Not to mention removing that line will NOT remove the hold on the nick in question. As for why NickServ release did not release the hold, you will need to take that up with Anope's support (without using modified source)
It's likely he restarted services before the hold was released, thus services no longer held it but the ircd did.
Post Reply