aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Release v3.15.0. v3.15.0Gravatar Sadie Powell2022-12-302-2/+2
* Update copyright headers.Gravatar InspIRCd Robot2022-12-30272-340/+231
* Update module descriptions.Gravatar Sadie Powell2022-12-301-1/+1
* Update vendored dependencies.Gravatar Sadie Powell2022-12-303-19/+51
* Ignore edits to the copyright headers when updating them.•••This fixes a committer who has run mkheaders from being added to the copyright headers when it is next run. Gravatar Sadie Powell2022-12-271-25/+33
* Fix a C++11-ism in the dnsbl module.Gravatar Sadie Powell2022-12-261-1/+1
* Fix overwriting marks from earlier DNSBLs.Gravatar Sadie Powell2022-12-261-10/+19
* Include the WebSocket fail reason in the body of the HTTP response.Gravatar Sadie Powell2022-12-251-0/+1
* Update the Windows dependencies.•••[skip alpine ci] [skip macos ci] [skip ubuntu ci] Gravatar Sadie Powell2022-12-231-4/+4
* Consistently limit the range for config port fields.Gravatar Sadie Powell2022-12-192-2/+2
* Add an oper priv for exempting opers from blockamsg.•••Closes #2007. Gravatar Sadie Powell2022-12-192-0/+4
* Add the Cohost account to the readme.Gravatar Sadie Powell2022-12-181-0/+1
* Fix an incompatibility between MySQL and MariaDB.Gravatar Sadie Powell2022-12-181-0/+2
* Add SSL support to the mysql module.Gravatar Sadie Powell2022-12-182-1/+5
* Fix warning about UNIX socket connections being insecure.Gravatar Sadie Powell2022-12-171-1/+2
* Deduplicate retrieving error messages on Windows.Gravatar Sadie Powell2022-12-135-38/+25
* Show the system error message when loading modules fails.Gravatar Sadie Powell2022-12-131-1/+9
* Tell an oper when the X-line they were trying to match is too wide.•••Also move the snotice for an overwide X-line to snomask 'X' which should have been done when it was added. Gravatar Sadie Powell2022-12-107-8/+12
* Allow specifying multiple masks when adding an X-line.•••The only exemptions for this are RLINE (a real name might contains commas) and SVSHOLD (sent by services only). Closes #1972. Gravatar Sadie Powell2022-12-107-17/+29
* Fix building with the Intel C++ compiler.•••- Fix adding -Wshadow in the compiler flags twice. - Detect the new Clang-based Intel compiler as well as the old one. - Silence some deprecation warnings using Intel syntax. Gravatar Sadie Powell2022-12-105-7/+14
* Add a sslprofile option for disabling TLS 1.3 in ssl_openssl.•••This mirrors the options (<sslprofile:tlsv{1,11,12}>) for other TLS versions. Gravatar Sadie Powell2022-12-101-0/+6
* Fix reading the MOTD when <connect:motd> is a literal path.Gravatar Sadie Powell2022-12-091-5/+14
* Fix sending malformed MOTD and showfile messages to clients.Gravatar Sadie Powell2022-12-094-14/+41
* Update author list.Gravatar InspIRCd Robot2022-12-081-10/+11
* Sort names case insensitively in the authors list.Gravatar Sadie Powell2022-12-081-1/+1
* Attempt to speed up package installation on the macOS CI.Gravatar Sadie Powell2022-12-051-0/+2
* Import regex_pcre2 from inspircd-contrib.•••The original plan was to make the PCRE2 switch happen in v3 but it seems that distributions are beginning to unpackage the old pcre library already. Gravatar Sadie Powell2022-12-0510-7/+129
* Update Doxygen config for the latest version.Gravatar Sadie Powell2022-12-031-5/+9
* Mark the entire client protocol namespace as CoreExport.Gravatar Sadie Powell2022-11-304-26/+26
* Switch the Ubuntu CI to use ubuntu-latest.Gravatar Sadie Powell2022-11-301-1/+1
* Fix using C++11 features in code that was backported from master.Gravatar Sadie Powell2022-11-301-1/+2
* Add a method for quickly escaping a tag value.Gravatar Sadie Powell2022-11-302-0/+36
* Use gnutls_digest_get_id if supported by the GnuTLS library.Gravatar Sadie Powell2022-11-291-1/+4
* Fix asserting when building against libstdc++ in debug mode.•••This code was safe as the pointer was never actually dereferenced but libstdc++ would assert on it anyway. Gravatar Sadie Powell2022-11-281-1/+1
* Avoid sending an +o mode change when the mode isn't available.•••This is generally fine but may cause problems if an oper unloads the core_oper module. Gravatar Sadie Powell2022-11-281-1/+1
* Fix various edge cases in testssl.•••- Ignore SIGPIPE to work around IO::Socket::SSL having its socket closed from under it and terminating the program. - Improve detection of servers that close the TCP connection right after it is opened. This usually means the IP address the tool is connecting from has been banned so suggest that as well. - Show more debug information when a connection fails. Gravatar Sadie Powell2022-11-261-1/+10
* Fix some broken links in testssl.•••MkDocs changed the anchor format a while back which broke this. Gravatar Sadie Powell2022-11-261-3/+2
* Add a workaround for the replies API not working with a cap reference.•••A Cap::Reference can not be cast to a Cap::Capability& because it may not be available and that would create a null reference. In v4 we can change the API to take a Cap::Capability* but for now this is the best we can do. Gravatar Sadie Powell2022-11-241-0/+47
* Allow silence flag metadata to contain unknown flags.•••This prevents breaking link compatibility if we ever add more silence flags in the future. Gravatar Sadie Powell2022-11-231-3/+5
* Fix matching partially expanded IPv6 addresses.Gravatar Sadie Powell2022-11-181-2/+2
* Avoid using a CIDR range when it only represents a single IP.Gravatar Sadie Powell2022-11-181-1/+11
* Update the Windows dependencies.Gravatar Sadie Powell2022-11-161-3/+2
* Fix cidr_range::str() on a UNIX socket returning an uninit value.•••This isn't an ideal fix but its the best we can do for now. In v4 we can change the struct internals to do this properly. Gravatar Sadie Powell2022-11-161-1/+2
* Fix the previous commit on Windows.Gravatar Sadie Powell2022-11-091-2/+4
* Log when the uid/gid of config files might be wrong.Gravatar Sadie Powell2022-11-081-2/+29
* The extended-monitor spec has been ratified now.Gravatar Sadie Powell2022-11-021-1/+1
* Add support for the IRCv3 extended-monitor specification.•••Co-authored-by: Sadie Powell <sadie@witchery.services>Gravatar delthas2022-11-025-6/+132
* Bump microsoft/setup-msbuild from 1.0.2 to 1.1.3•••Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 1.0.2 to 1.1.3. - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Changelog](https://github.com/microsoft/setup-msbuild/blob/master/building-release.md) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.0.2...v1.1.3) --- updated-dependencies: - dependency-name: microsoft/setup-msbuild dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>Gravatar dependabot[bot]2022-11-011-1/+1
* Add a workaround for a conflict between libmysqlclient and pcre.•••[skip alpine ci] [skip macos ci] [skip ubuntu ci] Gravatar Sadie Powell2022-10-291-0/+1
* Fix the documentation of <options:defaultmodes>.Gravatar Sadie Powell2022-10-291-2/+2