Eric Mertens
Eric Mertens
For reference this how I'm currently exposing this functionality. https://github.com/glguy/irc-core/blob/hookup/hookup/src/Hookup/OpenSSL.hsc
An interesting bit of trivia from beancount is that (IIRC) you can't re-open an account. Once it closes it is closed. (I'm not sure what the best behavior is, I'm...
I don't think we should alter people's GECOS beyond truncation. I'd prefer rejecting invalid values to mangling. If we find clients that break when the GECOS field has unterminated formatting...
Preferences on the reply code we use for that?
This feels like the kind of thing people should be programming their clients to handle nicely; people shouldn't be manually quoting KLINE commands anyway. The KLINE format is already a...
I think this would conflict a bit with status msg being relied upon by channel mode `z`. Currently when I see a status msg message I can tell why I'm...
Instead of constructing a single string with ```c snprintf(buf, BUFSIZE, "%s!%s@%s#%s", client_p->name, client_p->username, client_p->host, client_p->info); ``` could we instead perform a normal ban match against `client_p` and then post-process match...
I've built in run this myself and can confirm the functionality is working.
> should this be configurable/can you think of any reason to turn it off? I'm not sure, but these would be my questions: - Might other bots make decisions based...
I was able to get the install working by changing `setup.sh` to call `pip2` instead of `pip` because the latter is using Python 3 on recent versions of Ubuntu. Is...