summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2025-03-14Refactor the InspIRCd METADATA handler to actually be readable.Sadie Powell
2025-03-14Implement support for the new way of setting vhosts on InspIRCd.Sadie Powell
2025-03-14Improve JSON-RPC error messages.Sadie Powell
2025-03-14Warn if enc_bcrypt is the first module and maxpasslen is >72.Sadie Powell
2025-03-13Deduplicate response building code in the jsonrpc module.Sadie Powell
2025-03-13Fix the jsonrpc not having a root element one is not specified.Sadie Powell
2025-03-13Add the rpc_message module, remove the notice RPC event.Sadie Powell
2025-03-13Fix sending global messages with the default sender.Sadie Powell
2025-03-13Fix setting keepbackups to 0 in db_flatfile.Sadie Powell
2025-03-13Fix a crash in the ns_sasl module.Sadie Powell
Closes #481.
2025-03-13Fix deleting old db_flatfile database backups.Sadie Powell
2025-03-13Fix a warning on Clang.Sadie Powell
2025-03-13Add an ALLTIME handler on InspIRCd.Sadie Powell
2025-03-12Add defines for the core serialisation type names.Sadie Powell
2025-03-12Move serialization from Serializable to a Serialize::Type child.Sadie Powell
2025-03-12Fix the id data type in db_flatfile.Sadie Powell
2025-03-12Fix importing some data from 1.8.Sadie Powell
2025-03-10Add an XML-RPC method to rpc_system for debugging RPC responses.Sadie Powell
2025-03-10Add a config option for disabling the i8 XML-RPC extension.Sadie Powell
2025-03-10Add a config option for disabling the nil XML-RPC extension.Sadie Powell
2025-03-10Fix a memory leak in the xmlrpc module.Sadie Powell
2025-03-09Add a missing override keyword.Sadie Powell
2025-03-09Simplify some weird logic in bs_bot.Sadie Powell
2025-03-09Add support for oper-only quit messages.Sadie Powell
This currently only works on InspIRCd but I believe that other servers also support this.
2025-03-09Sync the chanserv defaults between the code and config.Sadie Powell
2025-03-08Fix various webcpanel bugs relating to nickname protection.Sadie Powell
2025-03-08Rework how nickname protection works.Sadie Powell
- Rename the command and module from kill to protect (this command hasn't actually killed users in a long time). - Replace QUICK/IMMED with a duration option.
2025-03-08Use a C++11 lambda instead of a channel sorting method.Sadie Powell
2025-03-08Move some headers around.Sadie Powell
2025-03-07Fix some minor issues with db_atheme error messages.Sadie Powell
2025-03-07Import misc channel and user metadata in db_atheme.Sadie Powell
2025-03-06Don't warn when importing an external auth account from Atheme.Sadie Powell
This happens when Atheme was using LDAP to authenticate users. We will replace the temporary password at a later date if Anope is set up to use LDAP too.
2025-03-06Import logon and oper news from Atheme.Sadie Powell
2025-03-06Force the MySQL module to use UTC for connections.Sadie Powell
This prevents conversion issues when the MySQL server is in a different timezone to the services server.
2025-03-05Fix reading the config of some modules.Sadie Powell
2025-03-05Fix the on start library version logging to include the module.Sadie Powell
2025-03-04Blacklist an old UnrealIRCd contrib module that breaks Anope.Sadie Powell
2025-03-04Remove GetAgent and SendMechs from the SASL interface.Sadie Powell
These are only used by ns_sasl.
2025-03-03Misc cleanup of ns_sasl and sasl.h.Sadie Powell
2025-03-03Merge branch '2.0' into 2.1.Sadie Powell
2025-03-03Fix a compiler warning on newer versions of MSVC.Sadie Powell
2025-03-03Rename sasl to ns_sasl, move to nickserv.example.conf.Sadie Powell
2025-03-03Move SASL protocol messages to the SASL header.Sadie Powell
2025-03-02Return references instead of pointers from the config system.Sadie Powell
We used to return NULL from these methods but now we return an empty block so this can never actually be null now.
2025-02-25Deduplicate RPC parameter count checks.Sadie Powell
2025-02-25Deduplicate some SASL logic.Sadie Powell
2025-02-25Add the rpc_data module.Sadie Powell
- Add rewritten and namespaced versions of the channel, oper, user events. - Add the following new events: * anope.listChannels * anope.listOpers * anope.listServers * anope.listUsers * anope.server
2025-02-24Add the system.listMethods RPC method.Sadie Powell
Still to implement: - system.getCapabilities - system.methodHelp - system.methodSignature
2025-02-24Allow use of a non-map type as the root RPC element.Sadie Powell
2025-02-24Add support for RPC arrays, simplify the RPC objects.Sadie Powell