summaryrefslogtreecommitdiff
path: root/modules/commands
diff options
context:
space:
mode:
authorRobby <robby@chat.be>2012-05-08 02:01:44 -0400
committerAdam <Adam@anope.org>2012-05-08 02:01:44 -0400
commit25586f32467334f0366ce0b8bfe16e2d5e005851 (patch)
treecdb51d60337245f45991c5362029abc5b31fd223 /modules/commands
parentb7149fc9404879ebb9914ea9201f7d53ab6cb792 (diff)
Allow services operators to release other user's nicks, and allow services operators to view the access list of other operators
Diffstat (limited to 'modules/commands')
-rw-r--r--modules/commands/ns_access.cpp4
-rw-r--r--modules/commands/ns_release.cpp12
2 files changed, 10 insertions, 6 deletions
diff --git a/modules/commands/ns_access.cpp b/modules/commands/ns_access.cpp
index 598de4d5a..5fdba68fb 100644
--- a/modules/commands/ns_access.cpp
+++ b/modules/commands/ns_access.cpp
@@ -120,9 +120,9 @@ class CommandNSAccess : public Command
source.Reply(ACCESS_DENIED);
return;
}
- else if (Config->NSSecureAdmins && u->Account() != na->nc && na->nc->IsServicesOper())
+ else if (Config->NSSecureAdmins && u->Account() != na->nc && na->nc->IsServicesOper() && !cmd.equals_ci("LIST"))
{
- source.Reply(_("You may view or modify the access list of other services operators."));
+ source.Reply(_("You may view but not modify the access list of other services operators."));
return;
}
diff --git a/modules/commands/ns_release.cpp b/modules/commands/ns_release.cpp
index d843b2f84..3c5a230b3 100644
--- a/modules/commands/ns_release.cpp
+++ b/modules/commands/ns_release.cpp
@@ -45,9 +45,9 @@ class CommandNSRelease : public Command
if (MOD_RESULT == EVENT_ALLOW)
{
- Log(LOG_COMMAND, u, this) << "released " << na->nick;
+ Log(LOG_COMMAND, u, this) << "for nickname " << na->nick;
na->Release();
- source.Reply(_("Services' hold on your nick has been released."));
+ source.Reply(_("Services' hold on \002%s\002 has been released."), nick.c_str());
}
else
{
@@ -58,11 +58,15 @@ class CommandNSRelease : public Command
}
else
{
- if (u->Account() == na->nc || (!na->nc->HasFlag(NI_SECURE) && is_on_access(u, na->nc)) ||
+ bool override = u->Account() != na->nc && u->HasPriv("nickserv/release");
+
+ if (override || u->Account() == na->nc ||
+ (!na->nc->HasFlag(NI_SECURE) && is_on_access(u, na->nc)) ||
(!u->fingerprint.empty() && na->nc->FindCert(u->fingerprint)))
{
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this) << "for nickname " << na->nick;
na->Release();
- source.Reply(_("Services' hold on your nick has been released."));
+ source.Reply(_("Services' hold on \002%s\002 has been released."), nick.c_str());
}
else
source.Reply(ACCESS_DENIED);