summary refs log tree commit diff
path: root/gpl.c (unfollow)
Commit message (Collapse)Author
2021-10-18Cite ctlseqs.ms and UTF-8June McEnroe
2021-10-18Skip DECKP* in lexerJune McEnroe
2021-10-18Add meta charset to up -t outputJune McEnroe
2021-10-18Rewrite shotty with lexJune McEnroe
So much cleaner!
2021-10-17Remove capsicum support from upJune McEnroe
2021-10-15Fix nested Bl-compact CSS rulesJune McEnroe
2021-10-14Add meta viewport tags to bin htmlJune McEnroe
2021-10-13Set bin WEBROOT to /var/wwwJune McEnroe
2021-10-11Add Knee Play 1June McEnroe
2021-10-04Fix lobsters/tildenews loginJune McEnroe
They started sending links with "&username=june" tacked on after the token. Don't know why since if you load the form with just the token in the URL it still knows your username, and it's not submitted as a hidden field or anything, but whatever.
2021-10-03Limit Atom feed to 20 most recent entriesJune McEnroe
20 is what everyone else seems to do. It's not too large putting them all in right now, but it's infeasible to do forever.
2021-10-03Add EarthlingsJune McEnroe
What the fuck.
2021-10-02Just zero mailsize on changemailJune McEnroe
So that on start (and any time MAIL/MAILPATH change), any non-empty mailboxes will be reported.
2021-10-02Fix chkmail loop break conditionJune McEnroe
padvance_magic() returns -1 when there are no more paths left, not zero.
2021-10-02Check sizes of mailboxes, not timesJune McEnroe
This fixes "you have mail" showing right after checking and deleting mail, resulting in a modified but empty mailbox. Also somehow fixes "you have mail" always showing 3(!) times.
2021-10-02Replace filter shell scripts with C programJune McEnroe
Eliminates the need for a shell inside the chroot, along with cat, mktemp and rm. It's likely a bit faster too.
2021-10-01Add htagml -m to rename main tagJune McEnroe
2021-10-01Remove igpJune McEnroe
I'm not serving gopher anymore.
2021-10-01Change default WEBROOTs to /var/wwwJune McEnroe
2021-10-01Remove planJune McEnroe
I haven't updated it in ages and I don't want to run (unmodified) finger on OpenBSD since it likes to tell everyone your login IP??
2021-09-30Build and copy static binaries to /var/wwwJune McEnroe
Ideally these wouldn't require sh, cat, rm, mktemp.
2021-09-30Silence owner-info errorJune McEnroe
cgit runs in a chroot. It is normal that it cannot look up user info in /etc/passwd.
2021-09-30pledge(2) mtagsJune McEnroe
2021-09-30pledge(2) htagmlJune McEnroe
2021-09-30pledge(2) hilexJune McEnroe
2021-09-29Remove link to gopherJune McEnroe
Migrating things over, I don't think it's worth continuing to serve text over gopher.
2021-09-27Invert doas/sudo aliasJune McEnroe
Gotten a lot more used to running doas!
2021-09-26Add pyro to ssh configJune McEnroe
2021-09-27Update dash autoconf/automake filesJune McEnroe
No idea why it made me do this...
2021-09-26Add boot commands for serial consoleJune McEnroe
2021-09-26Publish "Installing OpenBSD on Linode"June McEnroe
2021-09-26Use tiny UTF-8-aware col -b replacementJune McEnroe
OpenBSD col(1) doesn't understand UTF-8 and will delete all of it. Stupid, especially when mandoc(1) tells you to use it to remove man formatting. I shouldn't have to write something so trivial.
2021-09-25Install up to cgi-binJune McEnroe
2021-09-25Clean up up (ugh) somewhat againJune McEnroe
2021-09-25Update root path in up.shJune McEnroe
2021-09-25Disable HashKnownHostsJune McEnroe
All this really does is make fixing problems more difficult.
2021-09-25Add scout to ssh configJune McEnroe
2021-09-25Sandbox up on both FreeBSD and OpenBSDJune McEnroe
This is a bit messy. pledge(2) calls based on [1]. [1]: https://kristaps.bsd.lv/kcgi/tutorial6.html
2021-09-25Set SO_REUSEADDR in quickJune McEnroe
2021-09-25Revert "Add cat alias using less"June McEnroe
This reverts commit a64c3653d5df5e823fcdd07a540e240283816683. Yeah this really doesn't work on OpenBSD. I kind of got into the habit of explicitly running less anyway.
2021-09-24Pledge downgradeJune McEnroe
2021-09-24Set original socket CLOEXECJune McEnroe
2021-09-24Consume request headers using MSG_PEEKJune McEnroe
Use MSG_PEEK to determine where the request headers end and consume only up to there, leaving the CGI process to read any request body directly from the socket.
2021-09-24Set only HTTP_HOSTJune McEnroe
And only because kcgi expects it. This is what I wrote originally, because every HTTP_ variable should be unset between each request, but this doesn't track them.
2021-09-23Scroll by single lines in xtermJune McEnroe
2021-09-23Hide htop "function bar"June McEnroe
Useless thing...
2021-09-23Allow FocusEvents in xtermJune McEnroe
Oops! This whole time I thought OpenBSD xterm for some reason didn't support focus events. It turns out allowMouseOps: false disables them by default. Replace the disallowedMouseOps list with everything but.
2021-09-23Use NI_NUMERICSERVJune McEnroe
2021-09-23Make up build away from FreeBSDJune McEnroe
2021-09-23Add quickJune McEnroe