| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Improve the handling of config X-lines and filters. (#1583) | 2019-02-22 | 1 | -1/+5 | |
| | | |||||
| * | Use the local hostname as the server name if one is not specified. | 2019-02-16 | 1 | -1/+18 | |
| | | |||||
| * | Move the <disabled> tag out of the core to a new module. | 2019-01-24 | 1 | -46/+0 | |
| | | |||||
| * | Fix overly escaping MOTDs if they are in more than one connect class. | 2018-12-10 | 1 | -10/+0 | |
| | | |||||
| * | Add an option for changing the allowed server clock drift. | 2018-12-04 | 1 | -0/+1 | |
| | | |||||
| * | Remove deprecated config checker and make <die> actually useful. | 2018-10-27 | 1 | -47/+8 | |
| | | | | | | | | | | | | | - Remove the deprecated config tag checker. This checker is neither exhaustive nor is it particularly accurate. Instead the new docs site will contain a page detailing the breaking changes between releases. - Remove the insulting <die> tags in inspircd.conf.example and add some descriptive ones in files that it is critical for the user to edit correctly. - Show the message from the <die> tag so the user actually knows what they did wrong. | ||||
| * | Move <security:userstats> into core_stats. | 2018-10-01 | 1 | -1/+0 | |
| | | |||||
| * | Move <security:hidesplits> to the spanningtree module. | 2018-10-01 | 1 | -1/+0 | |
| | | |||||
| * | Move <security:genericoper> into core_whois. | 2018-10-01 | 1 | -1/+0 | |
| | | |||||
| * | Move <security:hideulinekills> into core_oper. | 2018-10-01 | 1 | -1/+0 | |
| | | |||||
| * | Move <security:hidekills> into core_oper. | 2018-10-01 | 1 | -1/+0 | |
| | | |||||
| * | Don't sync xlines defined in the config and expire them on rehash. | 2018-09-23 | 1 | -0/+2 | |
| | | | | | Closes #1427. | ||||
| * | Implement IRCv3 message tag support. | 2018-08-13 | 1 | -1/+0 | |
| | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | Replace most usages of "GECOS" with "real" or "real name". | 2018-07-30 | 1 | -1/+1 | |
| | | |||||
| * | Switch <server:name> validation to use InspIRCd::IsHost. | 2018-07-10 | 1 | -22/+1 | |
| | | |||||
| * | Add a silent option to <options:restrictbannedusers>. | 2018-07-10 | 1 | -1/+10 | |
| | | | | | | This is useful when dealing with spambots that switch method when they receive ERR_CANNOTSENDTOCHAN. | ||||
| * | Always process MOTD formatting escape codes. | 2018-04-22 | 1 | -3/+0 | |
| | | | | | | The options for disabling these were added to keep compatibility with previous 2.0 releases and are not needed any more. | ||||
| * | Tell the rehasher if an exception is thrown by a module on rehash. | 2018-04-17 | 1 | -0/+2 | |
| | | |||||
| * | Add ConfigTag::getUInt for reading unsigned config values. | 2018-04-16 | 1 | -27/+27 | |
| | | |||||
| * | Remove the default value in ConfigTag::get{Duration,Float,Int}. | 2018-04-16 | 1 | -1/+1 | |
| | | |||||
| * | Move <security:announceinvites> to core_channel. | 2018-03-31 | 1 | -11/+0 | |
| | | |||||
| * | Separate secret and private channels on whois for non-opers (#1447) | 2018-03-25 | 1 | -8/+0 | |
| | | | | | | | | | | Separate secret and private channels on WHOIS for all users. - Move the config parsing from the core to core_whois. - Replace <security:operspywhois> with an oper privilege. - Introduce <options:splitwhois> to split WHOIS channel lists. Closes #969. | ||||
| * | Rename <security:hidewhois> to <security:hideserver>. | 2017-12-22 | 1 | -1/+1 | |
| | | | | | | The previous name was horrible and didn't describe what the setting actually does. | ||||
| * | Extract RFC modes from the core to core_channel and core_user. | 2017-12-10 | 1 | -2/+0 | |
| | | |||||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -9/+9 | |
| | | |||||
| * | Allow spaces in the network name now it doesn't cause problems. | 2017-11-09 | 1 | -3/+0 | |
| | | | | | | This will not cause any compatibility issues as we do not rely on this attribute internally. | ||||
| * | Fix an unhandled exception crash when rehashing modules. | 2017-11-06 | 1 | -1/+11 | |
| | | | | | | | | | Previously we used FOREACH_MOD to call OnRehash which handled any thrown exceptions. When we switched to ReadConfig this stopped being the case. This bug was introduced in c202dea024. | ||||
| * | Add a constructor to OperInfo and use it to set the type name. | 2017-10-18 | 1 | -4/+2 | |
| | | |||||
| * | Ignore <module> tags for modules that are already loaded. | 2017-10-18 | 1 | -0/+4 | |
| | | | | | | This allows us to do user friendly things like loading the alias module in the example alias files. | ||||
| * | Clean up the command disabling logic. | 2017-10-17 | 1 | -12/+16 | |
| | | | | | | | | - Read the disabled command list in ApplyDisabledCommands() instead of storing it in a global which is only accessed on rehash. - Write debug messages to the log when disabling commands. - Use irc::spacesepstream instead of std::stringstream. | ||||
| * | Clean up the initialization of ConnectClass and ServerConfig. | 2017-10-15 | 1 | -9/+1 | |
| | | |||||
| * | Fix the casemap name not being copied to the new ServerConfig. | 2017-10-05 | 1 | -0/+1 | |
| | | |||||
| * | Convert Disabled[CU]Modes to use a bitset instead of a char array. | 2017-09-18 | 1 | -4/+4 | |
| | | |||||
| * | Add ModeParser::IsModeChar to standardise mode validation. | 2017-09-18 | 1 | -3/+3 | |
| | | |||||
| * | Change FailedPortList to store a sockaddrs/int instead of string. | 2017-09-12 | 1 | -2/+1 | |
| | | |||||
| * | Implement support for configurable casemapping & default to ASCII. | 2017-09-08 | 1 | -0/+13 | |
| | | |||||
| * | Convert a bunch of time-related config options to getDuration. | 2017-09-03 | 1 | -2/+2 | |
| | | |||||
| * | Move <dns:timeout> out of the core. | 2017-09-03 | 1 | -2/+0 | |
| | | |||||
| * | Add a ConfigTag* parameter to the ServerPaths constructor. | 2017-09-03 | 1 | -4/+10 | |
| | | | | | | This is used to directly read the settings from the config tag like how ServerLimits works. | ||||
| * | Match against core_*.so when looking for core modules. | 2017-08-27 | 1 | -1/+1 | |
| | | |||||
| * | Change the maximum nick/user size to match other implementations. | 2017-08-13 | 1 | -2/+2 | |
| | | |||||
| * | Fix the server failing to rehash when <server:name> is unset. | 2017-07-30 | 1 | -6/+8 | |
| | | |||||
| * | Fix exceptions not having a line ending when appending to errmsg. | 2017-07-30 | 1 | -1/+1 | |
| | | |||||
| * | Store config values in a map instead of a unique vector of pairs. | 2016-12-08 | 1 | -3/+3 | |
| | | |||||
| * | Allow classes to take a port range. | 2016-10-25 | 1 | -0/+8 | |
| | | |||||
| * | Bump version to 3.0 in comments and messages | 2016-09-02 | 1 | -5/+5 | |
| | | |||||
| * | Add stdalgo::string::equalsci and use it instead of irc::string for ↵ | 2016-08-22 | 1 | -2/+2 | |
| | | | | | case-insensitive comparison | ||||
| * | Merge insp20 | 2016-08-17 | 1 | -1/+2 | |
| |\ | |||||
| | * | Don't exit on rehash if the pid file cannot be written | 2016-06-17 | 1 | -1/+1 | |
| | | | |||||
| | * | Don't show snotices for kills from ulined clients | 2016-02-25 | 1 | -0/+1 | |
| | | | |||||
