diff options
author | Sadie Powell <sadie@witchery.services> | 2022-04-22 10:34:04 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-04-22 10:34:04 +0100 |
commit | ac98ed615bc18cadeff86124e3b9f61f4b07bca2 (patch) | |
tree | 4bfb8751c2f5dd6991fd586e55693859165a88c5 | |
parent | f2bcf449cd8722a0d252feb963244a5a3c515e38 (diff) | |
parent | 2062eb23f083e9b831ea0e9e2ee2989a219e0851 (diff) |
Merge branch '2.0' into 2.1.
-rw-r--r-- | docs/Changes | 12 | ||||
-rw-r--r-- | docs/Changes.conf | 4 | ||||
-rw-r--r-- | modules/protocol/unrealircd.cpp | 3 |
3 files changed, 16 insertions, 3 deletions
diff --git a/docs/Changes b/docs/Changes index 4b6366118..d46f5b6c6 100644 --- a/docs/Changes +++ b/docs/Changes @@ -1,3 +1,15 @@ +Anope Version 2.0.11 +-------------------- +Fixed ldap on OpenLDAP 2.5+ +Fixed not using utf-8 encoding for outgoing email +Fixed ns_resetpass not returning a response for XMLRPC +Fixed some message params being sent as <middle> instead of <trailing> +Fixed unsetting vhosts on unreal4 +Fixed username validity checking on ircd-hybrid +Send the oper mode for services pseudoclients on InspIRCd +Updated the pl_PL translation +Updated unreal4 for various protocol changes + Anope Version 2.0.10 -------------------- Add support for channel SQLines on InspIRCd diff --git a/docs/Changes.conf b/docs/Changes.conf index 68349691f..e79c6729f 100644 --- a/docs/Changes.conf +++ b/docs/Changes.conf @@ -4,6 +4,10 @@ Added nickserv:minpasslen for configuring the minimum password length. Removed nickserv:strictpasswords as it is obsolete now nickserv:minpasslen exists. Renamed nickserv:passlen to nickserv:maxpasslen. +Anope Version 2.0.11 +-------------------- +No significant changes. + Anope Version 2.0.10 -------------------- No significant changes. diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp index 3068f6b13..50a9abb52 100644 --- a/modules/protocol/unrealircd.cpp +++ b/modules/protocol/unrealircd.cpp @@ -82,10 +82,7 @@ class UnrealIRCdProto : public IRCDProto void SendVhostDel(User *u) override { BotInfo *HostServ = Config->GetClient("HostServ"); - u->RemoveMode(HostServ, "CLOAK"); u->RemoveMode(HostServ, "VHOST"); - ModeManager::ProcessModes(); - u->SetMode(HostServ, "CLOAK"); } void SendAkill(User *u, XLine *x) override |