summaryrefslogtreecommitdiff
path: root/modules/extra
AgeCommit message (Collapse)Author
2024-08-14Automatically determine SQL column type from the field.Sadie Powell
Also add more column types to ensure we are storing data in the best format in the database.
2024-07-04Add UNIX socket support to mysql module.ItsOnlyBinary
Ref: #419
2024-05-16Merge branch '2.0' into 2.1.Sadie Powell
2024-05-16Explicitly specify ROW_FORMAT=DYNAMIC when creating tables.Sadie Powell
Resolves the issues some people were having with extremely wide rows.
2024-05-16Don't specify a width for DT_INT columns.Sadie Powell
This isn't actually used by MySQL for the column width.
2024-05-11Merge branch '2.0' into 2.1.Sadie Powell
2024-05-11Ensure we are connected to MySQL before trying to escape data.Sadie Powell
2024-03-19Use paths relative to data/conf in the config file.Sadie Powell
This was done in some places already but not consistently. Closes #349.
2024-03-19Allow using absolute paths in more places.Sadie Powell
2024-03-19Prevent using enc_posix as a primary encryption module.Sadie Powell
2024-03-18Add verify-only support for POSIX crypt() hashes from Atheme.Sadie Powell
2024-03-11Replace convertTo/stringify with non-throwing alternatives.Sadie Powell
Having these throw is terrible for ergonomics and there are loads of places where the exception was either silently ignored or not handled at all. Having a function which returns an optional and another that returns a default works a lot better imo.
2024-03-10Refactor the enc_bcrypt module and expose an encryption provider.Sadie Powell
2024-03-10Add self-tests to the encryption providers.Sadie Powell
2024-03-10Add support for encrypting passwords with the Argon2 algorithm.Sadie Powell
Closes #369.
2024-03-07Move some modules which can be built by default out of extra.Sadie Powell
2024-03-07Require new accounts to have email addresses.Sadie Powell
2024-03-04Merge branch '2.0' into 2.1.Sadie Powell
2024-03-04When using ldap/sql auth prevent displays expiring before their group.Sadie Powell
This prevents zombie accounts from being left around that can't be authenticated to. Closes #355.
2024-02-26Fix some coding style issues.Sadie Powell
2024-02-17Update the copyright headers for 2024.Sadie Powell
2024-02-11Replace Condition and Mutex with the C++11 standard equivalents.Sadie Powell
2024-01-24Fix Clang and GCC disagreeing about whether a move is needed.Sadie Powell
2024-01-24Rename several modules to remove the m_ prefix.Sadie Powell
2024-01-23Mark types that have no inheritors as final.Sadie Powell
2024-01-23Improve the layout of types that inherit from another type.Sadie Powell
2024-01-09Always build the stats modules.Sadie Powell
These have no external dependencies so it makes no sense to not always build them.
2024-01-09Bump the minimum OpenSSL version to 1.1.Sadie Powell
2024-01-09Always disable SSLv3 support, allow disabling TLSv1.[012].Sadie Powell
2024-01-09Drop support for ancient versions of GnuTLS.Sadie Powell
2024-01-09Update the default SSL filenames to use the Certbot names.Sadie Powell
2024-01-08Add a string overload of User::SetModes.Sadie Powell
2024-01-08Fix various format string issues.Sadie Powell
2024-01-06Fix an oversight in the mysql module.Sadie Powell
2024-01-06Fix a sign conversion issue in the mysql module.Sadie Powell
2024-01-06Use auto in places where the type is unambiguous.Sadie Powell
2024-01-04Update the copyright headers for 2024.Sadie Powell
2023-12-17Remove some unnecessary spaces that break editor indentation.Sadie Powell
2023-12-17Remove the m_regex_pcre module.Sadie Powell
Users should migrate to m_regex_pcre2 instead.
2023-10-11Start migrating to range-based for loops.Sadie Powell
2023-06-03Merge branch '2.0' into 2.1.Sadie Powell
2023-06-02m_ldap: use Wldap on windowsAdam
2023-06-02use Conan for extra's dependencies on WindowsAdam
conan install src\win32\conanfile.txt --build=missing cmake -B build . cmake --build build --config Release --target PACKAGE
2022-12-31Merge branch '2.0' into 2.1.Sadie Powell
2022-12-31Update the copyright headers for 2023.Sadie Powell
2022-12-17Add support for linking over UNIX sockets.Sadie Powell
2022-12-09Use emplace() instead of insert(std::make_pair()).Sadie Powell
2022-12-07Merge branch '2.0' into 2.1.Sadie Powell
2022-12-07Add a module that provides regex/pcre using PCRE2.Sadie Powell
2022-01-13Remove NO_CLIENT_LONG_LONG from the mysql module.Sadie Powell
This is not necessary now we use C++17.