View Issue Details

IDProjectCategoryView StatusLast Update
0001743Anope Stable (2.0.x series)Generalpublic2020-11-05 13:38
Reporterivp Assigned To 
PrioritynormalSeverityfeatureReproducibilityhave not tried
Status newResolutionopen 
Summary0001743: Allow services admins to group nicknames when m_sql_authentication is used
DescriptionCurrently when external authentication is used, nobody can group nicknames.

Services administrators should be allowed to do that (in combination with maxaliases set to 1 to disable it for regular users).

Patch file is attached.
TagsNo tags attached.

Activities

ivp

2020-11-05 13:38

reporter  

m_sql_authentication.patch.txt (575 bytes)   
--- old/modules/extra/m_sql_authentication.cpp	2019-03-31 04:13:04.000000000 +0200
+++ new/modules/extra/m_sql_authentication.cpp	2020-11-05 11:25:05.454577129 +0100
@@ -101,7 +103,7 @@

 	EventReturn OnPreCommand(CommandSource &source, Command *command, std::vector<Anope::string> &params) anope_override
 	{
-		if (!this->disable_reason.empty() && (command->name == "nickserv/register" || command->name == "nickserv/group"))
+		if (!this->disable_reason.empty() && (command->name == "nickserv/register"))
 		{
 			source.Reply(this->disable_reason);
 			return EVENT_STOP;

Issue History

Date Modified Username Field Change
2020-11-05 13:38 ivp New Issue
2020-11-05 13:38 ivp File Added: m_sql_authentication.patch.txt