| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix usermask length calculation•••Didn't account for the ! and @ symbols, so in certain cases, two bytes at the ends of lines vanished. | 2021-12-08 | 1 | -2/+2 | |
| * | Add support for INVITE after getting KICKed from a channel | 2021-12-08 | 1 | -0/+13 | |
| * | Fix NameError crash on quitting | 2021-12-08 | 1 | -0/+1 | |
| * | Fix maxrequestsize config check logic | 2021-12-08 | 1 | -1/+1 | |
| * | Revert "Only rebind web server on host/port changes"•••This was a todo item from irclog, which has an extra value in config['web'] whose changes do not require a rebind. This reverts commit 69e9daddec5b9488eec3eb8ca0597e727e28e42f. | 2021-12-07 | 1 | -1/+1 | |
| * | Add configurable request size limit | 2021-12-07 | 1 | -6/+9 | |
| * | Validate nickname against RFC 2812 rules | 2021-12-07 | 1 | -2/+6 | |
| * | Replace LF with two spaces•••Grafana v8.0.0 and newer (AlertingNG) changed the message format and sends a multi-line string. | 2021-12-07 | 1 | -1/+2 | |
| * | Switch licence from GPLv3+ to AGPLv3+ | 2021-12-07 | 2 | -80/+67 | |
| * | Add DeprecationWarning for auth | 2021-12-07 | 1 | -0/+2 | |
| * | Only rebind web server on host/port changes | 2021-12-07 | 1 | -1/+1 | |
| * | Let modules suppress messages by returning None | 2021-12-07 | 1 | -0/+3 | |
| * | Fix crash on attempting to send to an unjoined channel | 2021-10-10 | 1 | -1/+9 | |
| * | Gracefully handle channel bans and other join errors | 2021-10-10 | 1 | -2/+6 | |
| * | Separate POST and GET auth•••Backwards-incompatible change: setting either of these to `false` means that all POST or GET requests are denied. (In practice, supporting unauthenticated requests were a bad idea anyway.) | 2021-10-09 | 2 | -19/+39 | |
| * | Add family config option to example | 2021-10-09 | 1 | -0/+2 | |
| * | Add support for listening to channel activity via GET | 2021-10-09 | 1 | -6/+168 | |
| * | Refactor auth/path handling in preparation for GET stream | 2021-10-09 | 1 | -4/+8 | |
| * | Merge changes from irclog•••Port to ircstates/irctokens, more capabilities, IRC family config, fix various small bugs | 2021-10-09 | 1 | -97/+223 | |
| * | Fix crash due to missing time import | 2021-05-10 | 1 | -0/+1 | |
| * | Add /status endpoint for monitoring (cf. irclog commit 5b809b1b) | 2021-04-28 | 1 | -3/+21 | |
| * | Fix crash if the data is split between CR and LF (cf. irclog commit 68c577bc) | 2021-04-28 | 1 | -4/+3 | |
| * | Fix memory leak due to asyncio tasks not being cancelled (cf. irclog commit 5... | 2021-04-28 | 1 | -6/+22 | |
| * | Remove trailing colon on empty evalMatches | 2020-11-24 | 1 | -1/+1 | |
| * | Include evalMatches in Grafana alerts if present | 2020-11-21 | 1 | -2/+3 | |
| * | Fix missing f-string marker | 2020-09-08 | 1 | -1/+1 | |
| * | Log exception type on process errors | 2020-06-01 | 1 | -1/+1 | |
| * | Handle message-less Grafana alerts | 2020-06-01 | 1 | -1/+4 | |
| * | Fix crash in IRCClientProtocol.send_messages due to missing overlongmode in u... | 2020-05-19 | 1 | -1/+1 | |
| * | Evaluate module paths relative to the config file or the code path | 2020-05-18 | 1 | -2/+8 | |
| * | Evaluate client cert paths relative to config file | 2020-05-18 | 1 | -0/+2 | |
| * | Add README.md and LICENSE | 2020-05-18 | 2 | -0/+683 | |
| * | Add option to truncate overlong messages instead of splitting them | 2020-05-13 | 2 | -9/+25 | |
| * | Add Grafana module | 2020-05-13 | 1 | -0/+6 | |
| * | Log request body | 2020-05-13 | 1 | -1/+1 | |
| * | Clean up duplicate encoding | 2020-05-13 | 1 | -1/+1 | |
| * | Track usermask and account for it in the message splitting•••Since the ircd will prefix each message with the origin usermask when broadcasting to the other users, it will have to split or truncate the message sent by the user. Charybdis and ratbox silently truncate it. | 2020-05-13 | 1 | -3/+40 | |
| * | Tighten length limit for channel names according to RFC 1459 | 2020-05-12 | 1 | -1/+1 | |
| * | Crash loudly if an IRC message is too long despite all the checks and splits | 2020-05-12 | 1 | -0/+2 | |
| * | Ensure that everything fits into IRC's line length limit or split up accordingly | 2020-05-12 | 1 | -12/+95 | |
| * | Handle various possible error messages from the IRC server | 2020-05-12 | 1 | -2/+39 | |
| * | Validate IRC channel name | 2020-05-11 | 1 | -8/+9 | |
| * | Validate maps | 2020-05-11 | 1 | -3/+26 | |
| * | Switch from CertFP to the more reliable and secure SASL EXTERNAL | 2020-05-11 | 2 | -1/+19 | |
| * | Clean up logging | 2019-12-27 | 1 | -36/+48 | |
| * | Add a way to pass additional arguments into the module | 2019-12-22 | 2 | -9/+25 | |
| * | Add support for transformation/translation modules that do arbitrary request ...•••Fixes #3 | 2019-12-22 | 2 | -7/+56 | |
| * | Support web server config changes | 2019-12-19 | 1 | -8/+12 | |
| * | Make logging configurable through config file | 2019-12-18 | 1 | -7/+32 | |
| * | Fix InvalidStateError in MessageQueue when the IRC server closes the connection | 2019-12-16 | 1 | -2/+2 |
