1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 06:16:38 +02:00

Allow identifying to other accounts using /nickserv id account pass

This commit is contained in:
Adam
2010-09-11 22:47:36 -04:00
parent 89c5b203c3
commit e30370af10
22 changed files with 28 additions and 42 deletions
-1
View File
@@ -291,7 +291,6 @@ class BahamutIRCdProto : public IRCDProto
if (!u->Account())
return;
u->SetMode(NickServ, UMODE_REGISTERED);
ircdproto->SendMode(NickServ, u, "+d %d", u->timestamp);
}
-2
View File
@@ -296,8 +296,6 @@ class InspIRCdProto : public IRCDProto
u->Account()->Shrink("authenticationtoken");
u->Account()->Extend("authenticationtoken", new ExtensibleItemRegular<Anope::string>(svidbuf));
u->SetMode(NickServ, UMODE_REGISTERED);
}
} ircd_proto;
-8
View File
@@ -308,14 +308,6 @@ class InspIRCdProto : public IRCDProto
return true;
}
void SetAutoIdentificationToken(User *u)
{
if (!u->Account())
return;
u->SetMode(NickServ, UMODE_REGISTERED);
}
} ircd_proto;
int anope_event_ftopic(const Anope::string &source, int ac, const char **av)
-8
View File
@@ -306,14 +306,6 @@ class InspIRCdProto : public IRCDProto
return true;
}
void SetAutoIdentificationToken(User *u)
{
if (!u->Account())
return;
u->SetMode(NickServ, UMODE_REGISTERED);
}
} ircd_proto;
int anope_event_ftopic(const Anope::string &source, int ac, const char **av)
-1
View File
@@ -387,7 +387,6 @@ class UnrealIRCdProto : public IRCDProto
if (!u->Account())
return;
u->SetMode(NickServ, UMODE_REGISTERED);
ircdproto->SendMode(NickServ, u, "+d %d", u->timestamp);
}