summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-02-26Update copyright headers.InspIRCd Robot
2021-02-25Implement support for multi-prefix on WHOIS.Sadie Powell
2021-02-25Allow a statusmsg to have multiple statuses and pick the lowest.Sadie Powell
This is pretty much useless but other implementations support it so we have to also support it for compatibility.
2021-02-24Refactor OnUserPostMessage in the chanhistory module.Sadie Powell
2021-02-22Add snomask permissions to the oper check output.Sadie Powell
2021-02-22Add a human-readable serialiser to the geolocation extensible.Sadie Powell
2021-02-21Fix checking the wrong user in SERVLIST.Sadie Powell
2021-02-21Add a config option for exempting classes from connflood.Sadie Powell
2021-02-21Add a command to the cgiirc module for encoding/decoding hex idents.Sadie Powell
2021-02-21Rename the cmd variable to cmdwebirc in the cgiirc module.Sadie Powell
2021-02-18Fix the numeric sent when a U-lined alias target is not online.Sadie Powell
2021-02-18Fix the message sent when SSL profiles are rehashed.Sadie Powell
2021-02-10Move linuxdaemon and Sheogorath to former contributors.Sadie Powell
2021-02-05Show the name of the WebIRC gateway in the IP changing notice.Sadie Powell
2021-02-01Duplicate the stdout file handle when used for logging.Sadie Powell
Failure to do this may result in a crash on shutdown when started in debug mode.
2021-02-01Move SSLINFO code for users to its own function and refactor.Sadie Powell
2021-02-01Allow using SSLINFO on channels.Sadie Powell
2021-02-01Convert SSLINFO to SplitCommand.Sadie Powell
2021-02-01Read <sslinfo:operonly> once at load time.Sadie Powell
2021-01-30Fix an oversight in the previous commit.Sadie Powell
2021-01-30Fix a few issues with SERVLIST.Sadie Powell
- Implement support for service type matching based on the service oper type. This isn't the same as irc2 but its close enough. - Fix erroneously sending the mask in the <mask> field. This field is for the service name mask not the service distribution mask.
2021-01-27Allow disabling connectban for specific connect classes.Sadie Powell
Ref: #1841.
2021-01-20Make the UNIX socket listener path relative to the runtime path.Sadie Powell
This is not a breaking change because unless the runtime path is explicitly set it defaults to the same as the data path.
2021-01-19Add <dns:enabled>; allows disabling DNS lookups entirely.Sadie Powell
Ref: #1839.
2021-01-19Send ERR_CANTUNLOADMODULE when unloading a module on reload fails.Sadie Powell
2021-01-19Refactor the globalload module.Sadie Powell
- Require that a non-empty last parameter is given to the commands. - Use WriteRemoteNumeric instead of WriteNumeric so opers actually see the response. - Store <security:allowcoreunload> instead of looking it up every time.
2021-01-19Fix the DNS socket not being closed when core_dns is unloaded.Sadie Powell
2021-01-18Add a separate stats class for DNSBL errors.Sadie Powell
2021-01-18Improve the robustness of the DNSBL module.Sadie Powell
- Handle DNSBLs that return invalid lookup results. - Fix DNSBLs that return non-local addresses blocking connections. - Fix silently failing when a DNSBL returns no IPv4 results. - General code cleanup.
2021-01-18Implemented configurable kick message for the repeat module (#1835).iwalkalone
2021-01-18Fix showing the start header when using --version.Sadie Powell
2021-01-18Add a new runtime directory and move the pid file to it.Sadie Powell
The data directory is intended for persistent files whereas the pid file is ephemeral. This distinction doesn't matter by default but on system-wide installs ephemeral runtime files go in /var/run or /run instead.
2021-01-18Add default empty openssl compiler flags.Sadie Powell
This makes things easier for users who are using InspIRCd on OSes where OpenSSL is part of the base system.
2021-01-16Fix not rejecting attempts to set snomasks with SAMODE/override.Sadie Powell
2021-01-13Add a shun option to only apply when users are fully connected.Sadie Powell
Closes #1825.
2021-01-12Improve parsing modes and snomasks in oper classes.Sadie Powell
- Deduplicate the code to one function. - Fix defaulting snomasks when a user has more than one class.
2021-01-11Add a user mode which allows disabling receiving channel history.Sadie Powell
Closes #1830.
2020-12-30Disallow an empty last parameter in MAP.Matt Schatz
2020-12-25Avoid doing more work than necessary when checking the O: extban.Sadie Powell
2020-12-25Replace spaces with underscores when checking for class bans.Sadie Powell
2020-12-22Add support for multiple hostmasks in <cgiirc:mask>.Sadie Powell
2020-12-22After changing the codepage rename duplicate users to their UUID.Sadie Powell
2020-12-22Send RPL_SAVENICK from irc2 when renaming a user to their UUID.Sadie Powell
2020-12-20Replace the SERVER stub command with something actually useful.Sadie Powell
This will typically never be reached because the remote will wait until it receives a CAPAB response before sending SERVER. Instead replace it with a CAPAB stub command that quits servers with a helpful message.
2020-12-20Hide the server name/desc better when <options:hideserver> is set.Sadie Powell
2020-12-18Don't call events provided by dying or dead modules.Sadie Powell
2020-12-16Fix MAP output on a dual v2/v3 network.Sadie Powell
2020-12-16Fix an inverted condition in cmd_modules.Sadie Powell
2020-12-16Use !empty instead of size when checking if containers are empty.Sadie Powell
2020-12-04Fix issue where m_pbkdf2 was not aware of services loaded before itDaniel Vassdal