| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix a regression that prevented SVSHOLDs from being added. | 2023-07-01 | 1 | -3/+3 | |
| * | Merge the svshold module into the services module. | 2023-07-01 | 3 | -252/+159 | |
| * | Reorder the types in the services module. | 2023-07-01 | 1 | -17/+17 | |
| * | Remove OnPreChange{Host,RealName} events and deboolify methods.•••These have not ever been used as far as I can see. | 2023-06-29 | 3 | -14/+6 | |
| * | Fix remote users on legacy servers not having a real username. | 2023-06-29 | 1 | -2/+1 | |
| * | Misc grammar fixes. | 2023-06-29 | 1 | -14/+14 | |
| * | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | 2023-06-29 | 33 | -174/+212 | |
| * | Reorder some class methods in cloak_user to fix a compiler warning. | 2023-06-29 | 1 | -1/+1 | |
| * | Refactor the cloak_user module for upcoming username changes. | 2023-06-29 | 1 | -19/+19 | |
| * | Fix not being able to unset the deaf/privdeaf modes. | 2023-06-26 | 1 | -10/+10 | |
| * | Only warn deaf users when they are adding the mode.•••Fixes a regression introduced in commit 1f421861e6. | 2023-06-26 | 1 | -2/+2 | |
| * | Merge branch 'insp3' into master. | 2023-06-26 | 1 | -1/+3 | |
| |\ | |||||
| | * | Don't send an error message if we're blocking an automatic CTCP reply. | 2023-06-22 | 1 | -1/+3 | |
| * | | Update vendored fmtlib. | 2023-06-25 | 1 | -1/+1 | |
| * | | Make Numerics::CannotSendTo properly aware of extbans. | 2023-06-22 | 4 | -4/+4 | |
| * | | Make JoinUser return a Membership instead of a Channel. | 2023-06-22 | 2 | -7/+7 | |
| * | | Replace <cloak:sanitize> with <cloak:invalidchar>.•••This adds support for truncating values e.g. with the nick foo|afk a user will receive a cloak of "foo". | 2023-06-20 | 1 | -10/+58 | |
| * | | Misc cleanup of cloak_user. | 2023-06-20 | 1 | -5/+6 | |
| * | | Update the description of the cloak_user module. | 2023-06-20 | 1 | -1/+1 | |
| * | | Add support for cloaking users by their ident/username. | 2023-06-20 | 1 | -0/+26 | |
| * | | Merge the cloak_account and cloak_nick modules.•••These modules are 90% identical and were only separate because before commit 78cd3898f5 we could not conditionally regenerate cloaks. | 2023-06-20 | 2 | -178/+73 | |
| * | | Fix building cloak_sha256 against libpsl on Windows. | 2023-06-19 | 1 | -3/+7 | |
| * | | Merge branch 'insp3' into master. | 2023-06-17 | 4 | -4/+4 | |
| |\| | |||||
| | * | Update copyright headers. | 2023-06-16 | 4 | -4/+4 | |
| * | | Make internal bug messages more consistent. | 2023-06-12 | 1 | -5/+5 | |
| * | | The standard-replies cap has been adopted by IRCv3 now. | 2023-06-12 | 1 | -1/+1 | |
| * | | Implement support for SPKI fingerprints into the ssl_gnutls module. | 2023-06-11 | 1 | -1/+46 | |
| * | | Implement support for SPKI fingerprints into the sslinfo module. | 2023-06-11 | 1 | -1/+3 | |
| * | | Only regenerate cloaks if a cloak of that type exists.•••This prevents unnecessary recloaking which may result in spam. | 2023-06-07 | 3 | -2/+15 | |
| * | | Include <cloak:pathparts> as link data in cloak_sha256. | 2023-06-07 | 1 | -0/+1 | |
| * | | Allow secondary cloak methods to be used on link synchronisation.•••If a server has a conditional cloak method (e.g. account) as the primary cloak method it doesn't make sense to use it for link consistency. With this change a secondary cloak method can request that it is used instead of the primary if the primary does not mark itself as link sensitive. | 2023-06-06 | 3 | -1/+26 | |
| * | | Merge branch 'insp3' into master. | 2023-06-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Use -std=c++17 on RE2 2023.06.02 or newer. | 2023-06-05 | 1 | -0/+2 | |
| * | | Make XLine::Matches const. | 2023-06-05 | 3 | -6/+6 | |
| * | | Add a DelLine override that takes an XLine pointer. | 2023-06-05 | 1 | -2/+1 | |
| * | | Make XLine::Displayable const. | 2023-06-05 | 3 | -3/+3 | |
| * | | Allow users to override SVSHOLDs for nicks in their nick group. | 2023-06-05 | 1 | -4/+22 | |
| * | | Try to cloak with the registerable suffix first with PSL cloaking. | 2023-06-05 | 1 | -1/+3 | |
| * | | Fix exposing oper hosts in `/STATS P`. | 2023-06-04 | 2 | -2/+2 | |
| * | | Fix extracting data from the 1205 version/fullversion SINFO keys. | 2023-06-04 | 1 | -13/+20 | |
| * | | Fix rewriting commands in the 1205 compat layer. | 2023-06-03 | 1 | -2/+2 | |
| * | | Fix an inverted condition in the cloak module. | 2023-06-03 | 1 | -1/+1 | |
| * | | Fix an inverted condition in the DNSBL module. | 2023-06-03 | 1 | -1/+1 | |
| * | | Fix calling c_str() for parameters that can take a std::string. | 2023-05-31 | 5 | -7/+6 | |
| * | | Convert DelLine from const char* to const std::string&. | 2023-05-30 | 5 | -6/+6 | |
| * | | Merge branch 'insp3' into master. | 2023-05-30 | 2 | -1/+13 | |
| |\| | |||||
| | * | Log when a server sends an unexpected command post-authentication. | 2023-05-29 | 1 | -0/+12 | |
| | * | Fix ssl_openssl on OpenSSL versions older than 1.1.1.•••Fixes a regression introduced in commit eba5cb9dc9. | 2023-05-28 | 1 | -0/+4 | |
| | * | Make it clear that <link:port> is only required for IP listeners. | 2023-05-26 | 1 | -1/+1 | |
| * | | Fix casing of metadata in function and event names.•••Metadata is one word not two so it shouldn't be capitalised like this. | 2023-05-30 | 8 | -19/+19 | |
