| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add support for non-web WebSocket connections.•••Closes #2066. | 2024-05-23 | 1 | -2/+11 | |
| * | Move ssl_mbedtls to inspircd-contrib.•••Closes #2088. | 2024-04-15 | 1 | -14/+5 | |
| * | Only abort SASL sessions if the user is using sasl-3.1.•••This is a compromise to allow modern clients to authenticate quickly whilst not breaking old clients. This reverts commit 4b8e69882e8b591102bfb03da1425b04c43272de. | 2024-03-24 | 1 | -2/+1 | |
| * | Add an option for opting-out of aborting incomplete authentication.•••This goes against the expectations of the spec which can break some clients but also not doing this can break others. Blah. | 2024-03-01 | 1 | -1/+2 | |
| * | Merge the topiclock module into the services module. | 2024-02-27 | 1 | -5/+0 | |
| * | Merge the mlock module into the services module. | 2024-02-27 | 1 | -6/+0 | |
| * | Allow using multiple SSL fingerprint algorithms.•••Closes #1804. | 2024-02-19 | 1 | -6/+3 | |
| * | Allow changing the case of cloak values in cloak_user. | 2024-02-19 | 1 | -1/+11 | |
| * | Rename the hmac-sha256-ip cloak engine to hmac-sha256-addr.•••This engine cloaks the socket address which may not necessarily be an IP address. | 2024-02-12 | 1 | -2/+2 | |
| * | Fix the name of the cloak_sha256 module. | 2024-02-12 | 1 | -1/+1 | |
| * | Add the fingerprint cloak method to the cloak_user module. | 2024-01-13 | 1 | -1/+14 | |
| * | Disable the TLS welcome notice by default.•••This is just needless spam for the vast majority of users. | 2023-11-23 | 1 | -1/+6 | |
| * | Merge branch 'insp3' into master. | 2023-11-14 | 1 | -4/+3 | |
| |\ | |||||
| | * | Allow using $address for the user IP address in alias templates.•••Closes #2068. | 2023-11-12 | 1 | -4/+4 | |
| * | | Allow disabling LIST completely for unregistered users. | 2023-10-03 | 1 | -2/+4 | |
| * | | Rename the namesx module to multiprefix.•••Now the module only implements the IRCv3 capability this is a more accurate name. If users want the protoctl method they can install the protoctl module from contrib as before. | 2023-08-14 | 1 | -8/+8 | |
| * | | Add an extban for matching against an operator account. | 2023-08-09 | 1 | -5/+3 | |
| * | | Make ldapauth take an enum field for the username field. | 2023-08-06 | 1 | -4/+3 | |
| * | | Remove the ability to treat notices specially in delaymsg. | 2023-07-21 | 1 | -2/+0 | |
| * | | Add incremental backoff to the filter/permchannels/xline_db modules.•••Closes #1671. | 2023-07-21 | 1 | -1/+12 | |
| * | | Merge branch 'insp3' into master. | 2023-07-10 | 1 | -3/+3 | |
| |\| | |||||
| | * | Update the description of the ircv3 module. | 2023-07-10 | 1 | -2/+2 | |
| | * | The announceinvites setting is in <security> not <options>. | 2023-07-10 | 1 | -1/+1 | |
| * | | Allow hiding small channels from /LIST past the securelist wait time. | 2023-07-09 | 1 | -2/+9 | |
| * | | Rename the services module config tag to <servicesintegration>. | 2023-07-07 | 1 | -2/+2 | |
| * | | Remove the now obsolete partmsg module.•••Closes #979. | 2023-07-06 | 1 | -5/+0 | |
| * | | Merge the svshold module into the services module. | 2023-07-01 | 1 | -15/+17 | |
| * | | 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 | 1 | -25/+26 | |
| * | | Fix some minor formatting issues in the previous commit. | 2023-06-29 | 1 | -2/+2 | |
| * | | Refactor the cloak_user module for upcoming username changes. | 2023-06-29 | 1 | -4/+4 | |
| * | | Move example link config include to example module config file. | 2023-06-25 | 1 | -0/+4 | |
| * | | Remove an obosolute workaround in the example module config. | 2023-06-25 | 1 | -7/+0 | |
| * | | Document the sslinfo config better. | 2023-06-25 | 1 | -10/+27 | |
| * | | 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 | -19/+20 | |
| * | | Add support for cloaking users by their ident/username. | 2023-06-20 | 1 | -2/+8 | |
| * | | 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 | 1 | -76/+50 | |
| * | | Implement support for SPKI fingerprints into the sslinfo module. | 2023-06-11 | 1 | -2/+4 | |
| * | | Allow users to override SVSHOLDs for nicks in their nick group. | 2023-06-05 | 1 | -2/+5 | |
| * | | Remove docs for a config option that was removed in v4. | 2023-06-03 | 1 | -5/+0 | |
| * | | Allow customising who can receive the joinflood close notification.•••Closes #1747. | 2023-05-07 | 1 | -9/+16 | |
| * | | Remove the now-obsolete hostchange module.•••Closes #2025. | 2023-05-02 | 1 | -13/+0 | |
| * | | Add the cloak_static module to cloak using a fixed value. | 2023-05-02 | 1 | -0/+23 | |
| * | | Add the cloak_nick module to cloak based on a nickname. | 2023-05-02 | 1 | -0/+34 | |
| * | | Add the cloak_account module to cloak based on an account name/id. | 2023-05-02 | 1 | -3/+44 | |
| * | | Redocument the cloak_md5 module. | 2023-05-02 | 1 | -19/+23 | |
| * | | Add <cloak:class> to limit cloaks to a specific connect class. | 2023-05-02 | 1 | -0/+8 | |
| * | | Merge branch 'insp3' into master. | 2023-04-27 | 1 | -5/+7 | |
| |\| | |||||
| | * | Warn users when their client certificate is about to expire.•••Closes #1938. | 2023-03-01 | 1 | -2/+4 | |
| * | | Replace <sqlauth:allowpattern> with <sqlexemption>.•••Partially implements #2030. | 2023-04-20 | 1 | -5/+0 | |
| * | | Merge <ldapauth:allowpattern> and <ldapwhitelist>.•••Closes #1478. | 2023-04-20 | 1 | -2/+2 | |
