diff options
| author | 2022-12-05 08:13:09 +0000 | |
|---|---|---|
| committer | 2022-12-05 08:13:09 +0000 | |
| commit | 7e38f836f7bfd4da903ec371e478fef15347f874 (patch) | |
| tree | a8098926bc28eef11f7a5d139db7c1b52d5e8e3c /src/configreader.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Load regex_pcre instead of regex_pcre2 for compat with v3.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 486bf3ad8..053e990dc 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -617,6 +617,8 @@ std::vector<std::string> ServerConfig::GetModules() const modules.push_back("gateway"); else if (stdalgo::string::equalsci(shortname, "gecosban")) modules.push_back("realnameban"); + else if (stdalgo::string::equalsci(shortname, "regex_pcre2")) + modules.push_back("regex_pcre"); else if (stdalgo::string::equalsci(shortname, "sha256")) modules.push_back("sha2"); else if (stdalgo::string::equalsci(shortname, "services_account")) |
