Anope IRC Services

Anope Support => 2.0.x/1.9.x Support => Topic started by: Abner on October 14, 2017, 06:36:37 PM

Title: Anope 2.0.5 + Ircd Hybrid 8.2.22 : NickServ registration confirm
Post by: Abner on October 14, 2017, 06:36:37 PM
/*
 * ns_register
 *
 * Provides the commands nickserv/confirm, nickserv/register, and nickserv/resend.
 *
 * Used for registering accounts.
 */
module
{
        name = "ns_register"

        /*
         * Registration confirmation setting. Set to "none" for no registration confirmation,
         * "mail" for email confirmation, and "admin" to have services operators manually confirm
         * every registration. Set to "disable" to completely disable all registrations.
         */
        registration = "admin"

Who is the admin?The "/oper" ?When the user identify his nick, they have:

<NickServ> This nickname is registered and protected.  If it is your
<NickServ> nick, type /msg NickServ IDENTIFY password.  Otherwise,
<NickServ> please choose a different nick.
<NORMAL-NICK> IDENTIFY "nick-pass"
<NickServ> Password accepted - you are now recognized.
<NickServ> All new accounts must be validated by an administrator. Please wait for your registration to be confirmed.
<NickServ> Your account will expire, if not confirmed, in 23 hours, 31 minutes.

When I ( oper ) identify my nick, I have:

<NickServ> This nickname is registered and protected.  If it is your
<NickServ> nick, type /msg NickServ IDENTIFY password.  Otherwise,
<NickServ> please choose a different nick.
<MYNICK> IDENTIFY "PASS-IRCOPER"
<NickServ> Password accepted - you are now recognized.

After /oper command:

* You are now an IRC operator
* *** Global -- from OperServ: USERS: MYNICK!~MYNICK@MYIP is now an IRC operator.

When I ( oper ) put "/msg nickserv list * unconfirmed":

<MYNICK> list * unconfirmed
<NickServ> List of entries matching *:
<NickServ> Nick       Last usermask
<NickServ> MYNICK  ~MYNICK@MYIP
<NickServ> End of list - 1/1 matches shown.

Where's NORMAL-NICK at list?

Thank You
Title: Re: Anope 2.0.5 - NickServ registration confirm
Post by: genius3000 on October 15, 2017, 01:58:55 AM
Seeing your later post (https://forum.anope.org/index.php?topic=4400.0), I assume you figured out that you need a Services Oper block with the correct permissions to be able to see the full Nick list and to sort it to, say only UNCONFIRMED. As a normal user (to Services), 'NickServ LIST *' will only show registered nicks that don't have PRIVATE set on.
Title: Re: Anope 2.0.5 - NickServ registration confirm
Post by: Abner on October 15, 2017, 05:42:19 PM
Seeing your later post (https://forum.anope.org/index.php?topic=4400.0), I assume you figured out that you need a Services Oper block with the correct permissions to be able to see the full Nick list and to sort it to, say only UNCONFIRMED. As a normal user (to Services), 'NickServ LIST *' will only show registered nicks that don't have PRIVATE set on.

Thank You mate.
Title: Re: Anope 2.0.5 - NickServ registration confirm
Post by: Abner on October 15, 2017, 05:53:47 PM
Another question, where I can change this message "All new accounts must be validated by an administrator. Please wait for your registration to be confirmed." ?
Title: Re: Anope 2.0.5 - NickServ registration confirm
Post by: genius3000 on October 15, 2017, 10:27:06 PM
Another question, where I can change this message "All new accounts must be validated by an administrator. Please wait for your registration to be confirmed." ?

That message is sent when you have registration set to require admin confirmation. It cannot be changed from within the config; only within the code itself and that is not a supported method.
Title: Re: Anope 2.0.5 - NickServ registration confirm
Post by: Abner on October 17, 2017, 11:38:24 PM
That message is sent when you have registration set to require admin confirmation. It cannot be changed from within the config; only within the code itself and that is not a supported method.

Ok thanks mate.