summaryrefslogtreecommitdiff
path: root/modules/commands
AgeCommit message (Collapse)Author
2014-11-24Set require_oper in /os operAdam
2014-11-24Rewrite serializable to have field level granularityAdam
Represent serializable objects in a digraph, and as a result made most object relationships implicitly defined, and use the graph to trace references between objects to determine relationships. Edges may also be marked as having a dependency of the object they point to, which allows for automatic cleanup and deletion of most objects when no longer needed. Additionally, this allows not having to require in-memory copies of everything when using external databases. db_sql has been rewritten for this and now always requires a database to function. db_sql with MySQL now requires InnoDB to make use of transactions and foreign key constraints.
2014-11-15Allow 0 ttb in flood kickerAdam
2014-11-15Fix access dup check to account for accountsAdam
2014-11-08Fix not removing zones from server->zonesAdam
2014-11-04Show access denied if /os kick can't kick the targetAdam
2014-11-04Allow mlock to be enforced when unsetting defcon modesAdam
2014-11-04Move chan register event prior to applying final mode changes, so cs_mode ↵Adam
can set mlock on register. #1620
2014-11-03Fix log message when enabling botserv kickersAdam
2014-10-24Keep the akiller's name when updating the reason.Thomas Fargeix
The name of the oper issuing an akill or a sxline could be removed by updating the reason, even though addkiller was enabled.
2014-10-14Show extended strftime output for suspend infoAdam
2014-10-14Set access masks to the case of the nick they match, if anyAdam
2014-10-14Fix module event prioritization which was broken with the newerAdam
auto-attach event stuff. Also remove logically dead code from os_defcon, and make os_defcon akill similar masks to os_session when enforcing session akills. Fixes #1618 which relies on os_session to be prioritized before os_defcon.
2014-10-12Move nick register event to make it easier for modules to determine if a ↵Adam
newly registered nick is confirmed or not. Add confirm event.
2014-10-12Add an operserv/oper/modify privilege.Thomas Fargeix
The operserv/oper command privilege allows to add operators with fewer or the same privileges as ourself. This new privilege allows to have operators who can use operserv/oper to see the list of operators and their privileges, but cannot add new operators.
2014-10-12Add a chanserv/access/list privilegeThomas Fargeix
Replace the existing chanserv/access/list command access, only used in cs_xop, by a privilege with the same name. It which allows read-only access to cs_access, cs_flags, cs_xop and cs_akick, while the already-existing chanserv/access/modify privilege allows to modify them.
2014-10-06Log when memos are sentAdam
2014-10-06Don't add duplicate akills in os_sessionAdam
2014-10-06Clear pending collided state on release, fixes colliding users using recover ↵Adam
into enforcers
2014-10-06Add a confirmation reply to ns recover on an unidentified user with svsnickAdam
2014-09-14fixed typo in the last commitDukePyrolator
2014-09-14added missing support for operonly and silentoperonly in os_defconDukePyrolator
2014-09-01Fix unserializing badwords to not add dupes when unserializing an existing ↵Adam
bw object
2014-08-24Change Channel::GetModeList to return a copy of the mode list, not aAdam
pair of lower/upper bound iterators. Sometimes when iterating the list, like in cs_mode, we can modify the contents of it, which combined with mlock always agressively trying to readd modes to it can do bad things.
2014-08-11cs_set: Fix logging for SET SUCCESSOR to correctly log overrides.Robby-
2014-08-03List opertypes in /os oper infoAdam
2014-08-03Fix some botserv help entries from showing when they shouldn'tAdam
2014-08-03Add cs_mode:max config optionAdam
2014-08-03Allow "modify" in flags to be optionalAdam
2014-08-03Allow "set" in topic set to be optionalAdam
2014-08-03Add ms_ignore:max config optionAdam
2014-08-03Do not allow unconfirmed users to send memos or request vhostsAdam
2014-07-27Fix a few help messages.Robby-
2014-06-26Change NumberList to take std::function's and use lambda closuresAdam
instead of having to create full classes in order to process number lists.
2014-06-26Merge pull request #84 from Zantox/2.0Robby-
Minor cs_unban Lang Update @Robby- Updated HostServ Command English Language Updated ChanServ Command English Language Updated BotServ Command English Language
2014-06-26Minor cs_unban Lang Update @Robby-Zantox
2014-06-25Remove the rest of the 1.8 logic "let's write all of the command handler ↵Adam
with no return statement!" Fix if (something) else if (!something) tests Remove returns at the bottom of void functions
2014-06-25Updated HostServ Command English LanguageZantox
2014-06-25Updated ChanServ Command English LanguageZantox
2014-06-23Merge branch '2.0' into 2.1Adam
Conflicts: cmake/Anope.cmake cmake/FindGettext.cmake include/access.h include/messages.h include/modes.h include/modules.h include/users.h modules/CMakeLists.txt modules/commands/bs_bot.cpp modules/commands/cs_access.cpp modules/commands/cs_ban.cpp modules/commands/cs_clone.cpp modules/commands/cs_flags.cpp modules/commands/cs_info.cpp modules/commands/cs_list.cpp modules/commands/cs_log.cpp modules/commands/cs_mode.cpp modules/commands/cs_status.cpp modules/commands/cs_suspend.cpp modules/commands/cs_updown.cpp modules/commands/cs_xop.cpp modules/commands/ms_check.cpp modules/commands/ns_access.cpp modules/commands/ns_cert.cpp modules/commands/ns_group.cpp modules/commands/ns_register.cpp modules/commands/ns_set.cpp modules/commands/ns_suspend.cpp modules/commands/os_session.cpp modules/commands/os_svs.cpp modules/extra/m_ldap_authentication.cpp modules/extra/m_regex_pcre.cpp modules/extra/m_sql_authentication.cpp modules/extra/stats/m_chanstats.cpp modules/protocol/bahamut.cpp modules/protocol/hybrid.cpp modules/protocol/inspircd12.cpp modules/protocol/inspircd20.cpp modules/protocol/unreal.cpp modules/pseudoclients/chanserv.cpp modules/pseudoclients/chanserv/channel.cpp modules/pseudoclients/nickserv/nickserv.cpp modules/webcpanel/pages/chanserv/access.cpp src/access.cpp src/bots.cpp src/channels.cpp src/language.cpp src/modes.cpp src/modulemanager.cpp src/process.cpp src/users.cpp src/version.sh
2014-06-23Updated BotServ Command English LanguageZantox
2014-06-23Mostly working language string rewrite with new format stringsAdam
2014-06-17Correct some language stringsAdam
2014-06-09Fix help log output exampleAdam
2014-06-09Fix information leak in cs_updownAdam
2014-05-30Fix access check in ns_groupAdam
2014-05-28Merge branch '2.0' into 2.1Adam
Conflicts: .travis.yml src/config.cpp src/version.sh
2014-05-28Move most of the core pseudoclient logic to modulesAdam
2014-05-21Core prep for p10 stuffAdam
2014-05-20Speed up akill xline checksAdam
Cache xline nick, user, host, etc instead of rebuilding it everytime its requested. Store users ip in sockaddr form and not string form to prevent having to rebuild sockaddrs when checking xlines. Also do not try to convert empty config values in Config::Get as this can be rather common if a non string configuration value is not set, and the cost of the ConvertException is great.