aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-01 16:13:53 +0000
committerGravatar Sadie Powell2026-03-01 18:05:14 +0000
commitf311ac1ecee20e164666e3d63a349c54c780aabd (patch)
treec30c2a6c0351abef3b38c3c6b47a291a51081083 /src/configreader.cpp
parentDebug log when an encapsulated command fails. (diff)
Merge the chg* and set* modules.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 429ff7dd0..55e5603be 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -682,6 +682,12 @@ std::vector<std::string> ServerConfig::GetModules() const
modules.push_back("hash_argon2");
else if (insp::equalsci(shortname, "bcrypt"))
modules.push_back("hash_bcrypt");
+ else if (insp::equalsci(shortname, "chghost"))
+ modules.push_back("sethost");
+ else if (insp::equalsci(shortname, "chgident"))
+ modules.push_back("setident");
+ else if (insp::equalsci(shortname, "chgname"))
+ modules.push_back("setname");
else if (insp::equalsci(shortname, "password_hash"))
modules.push_back("mkpasswd");
else if (insp::equalsci(shortname, "sha1"))