diff options
| author | 2026-03-01 16:13:53 +0000 | |
|---|---|---|
| committer | 2026-03-01 18:05:14 +0000 | |
| commit | f311ac1ecee20e164666e3d63a349c54c780aabd (patch) | |
| tree | c30c2a6c0351abef3b38c3c6b47a291a51081083 /src/configreader.cpp | |
| parent | Debug log when an encapsulated command fails. (diff) | |
Merge the chg* and set* modules.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 6 |
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")) |
