| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add DeprecationWarning for auth | JustAnotherArchivist | 2021-12-07 | 1 | -0/+2 |
| * | Only rebind web server on host/port changes | JustAnotherArchivist | 2021-12-07 | 1 | -1/+1 |
| * | Let modules suppress messages by returning None | JustAnotherArchivist | 2021-12-07 | 1 | -0/+3 |
| * | Fix crash on attempting to send to an unjoined channel | JustAnotherArchivist | 2021-10-10 | 1 | -1/+9 |
| * | Gracefully handle channel bans and other join errors | JustAnotherArchivist | 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.)
| JustAnotherArchivist | 2021-10-09 | 1 | -17/+35 |
| * | Add support for listening to channel activity via GET | JustAnotherArchivist | 2021-10-09 | 1 | -6/+168 |
| * | Refactor auth/path handling in preparation for GET stream | JustAnotherArchivist | 2021-10-09 | 1 | -4/+8 |
| * | Merge changes from irclog•••Port to ircstates/irctokens, more capabilities, IRC family config, fix various small bugs
| JustAnotherArchivist | 2021-10-09 | 1 | -97/+223 |
| * | Fix crash due to missing time import | JustAnotherArchivist | 2021-05-10 | 1 | -0/+1 |
| * | Add /status endpoint for monitoring (cf. irclog commit 5b809b1b) | JustAnotherArchivist | 2021-04-28 | 1 | -3/+21 |
| * | Fix crash if the data is split between CR and LF (cf. irclog commit 68c577bc) | JustAnotherArchivist | 2021-04-28 | 1 | -4/+3 |
| * | Fix memory leak due to asyncio tasks not being cancelled (cf. irclog commit 5... | JustAnotherArchivist | 2021-04-28 | 1 | -6/+22 |
| * | Fix missing f-string marker | JustAnotherArchivist | 2020-09-08 | 1 | -1/+1 |
| * | Log exception type on process errors | JustAnotherArchivist | 2020-06-01 | 1 | -1/+1 |
| * | Fix crash in IRCClientProtocol.send_messages due to missing overlongmode in u... | JustAnotherArchivist | 2020-05-19 | 1 | -1/+1 |
| * | Evaluate module paths relative to the config file or the code path | JustAnotherArchivist | 2020-05-18 | 1 | -2/+8 |
| * | Evaluate client cert paths relative to config file | JustAnotherArchivist | 2020-05-18 | 1 | -0/+2 |
| * | Add option to truncate overlong messages instead of splitting them | JustAnotherArchivist | 2020-05-13 | 1 | -9/+23 |
| * | Log request body | JustAnotherArchivist | 2020-05-13 | 1 | -1/+1 |
| * | Clean up duplicate encoding | JustAnotherArchivist | 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.
| JustAnotherArchivist | 2020-05-13 | 1 | -3/+40 |
| * | Tighten length limit for channel names according to RFC 1459 | JustAnotherArchivist | 2020-05-12 | 1 | -1/+1 |
| * | Crash loudly if an IRC message is too long despite all the checks and splits | JustAnotherArchivist | 2020-05-12 | 1 | -0/+2 |
| * | Ensure that everything fits into IRC's line length limit or split up accordingly | JustAnotherArchivist | 2020-05-12 | 1 | -12/+95 |
| * | Handle various possible error messages from the IRC server | JustAnotherArchivist | 2020-05-12 | 1 | -2/+39 |
| * | Validate IRC channel name | JustAnotherArchivist | 2020-05-11 | 1 | -8/+9 |
| * | Validate maps | JustAnotherArchivist | 2020-05-11 | 1 | -3/+26 |
| * | Switch from CertFP to the more reliable and secure SASL EXTERNAL | JustAnotherArchivist | 2020-05-11 | 1 | -0/+18 |
| * | Clean up logging | JustAnotherArchivist | 2019-12-27 | 1 | -36/+48 |
| * | Add a way to pass additional arguments into the module | JustAnotherArchivist | 2019-12-22 | 1 | -9/+23 |
| * | Add support for transformation/translation modules that do arbitrary request ...•••Fixes #3
| JustAnotherArchivist | 2019-12-22 | 1 | -7/+54 |
| * | Support web server config changes | JustAnotherArchivist | 2019-12-19 | 1 | -8/+12 |
| * | Make logging configurable through config file | JustAnotherArchivist | 2019-12-18 | 1 | -7/+32 |
| * | Fix InvalidStateError in MessageQueue when the IRC server closes the connection | JustAnotherArchivist | 2019-12-16 | 1 | -2/+2 |
| * | Get rid of the SimpleNamespace for configuration since it complicates config ...•••SimpleNamespace's documentation does not say anything about equality tests, which is why the update_config methods checked the relevant values using a tuple instead. But as more config values are added, this makes the comparisons unnecessarily long. A dict simplifies this. As a side-effect, the constraints of the maps keys being a valid identifier are no longer relevant either.
| JustAnotherArchivist | 2019-12-16 | 1 | -31/+20 |
| * | Catch config errors on reload | JustAnotherArchivist | 2019-12-15 | 1 | -1/+5 |
| * | Wait for connection registration before trying to join channels and send mess... | JustAnotherArchivist | 2019-12-15 | 1 | -3/+5 |
| * | Handle prefixed messages from the server | JustAnotherArchivist | 2019-12-15 | 1 | -0/+3 |
| * | Add CertFP support | JustAnotherArchivist | 2019-12-15 | 1 | -3/+52 |
| * | Use plain text message payloads instead of JSON | JustAnotherArchivist | 2019-12-02 | 1 | -13/+18 |
| * | Fix usage string | JustAnotherArchivist | 2019-12-02 | 1 | -1/+1 |
| * | Confirm message delivery by periodic PINGs•••This assumes that a PONG response from the server means the connection is still intact. The messages could still have been dropped for weird reasons, but short of using a second client to confirm the delivery directly, there is no better option to test this.
RFC 1459 actually specifies that "servers should not respond to PING commands". However, this recommendation has been removed in RFC 2812, and in practice, all common IRC servers seem to respond to PINGs.
| JustAnotherArchivist | 2019-12-02 | 1 | -3/+29 |
| * | Refactor into more flexible tool supporting multiple endpoints and channels (... | JustAnotherArchivist | 2019-12-02 | 1 | -0/+375 |