summary refs log tree commit diff
path: root/www (unfollow)
Commit message (Collapse)Author
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
2021-09-23Add The HobbitJune McEnroe
Surprisingly good for something written by a man like a hundred years ago!
2021-09-22Remove PSF fontsJune McEnroe
They were fun to make but I never actually used them.
2021-09-22Remove Linux-specific utilitiesJune McEnroe
I haven't used these in ages.
2021-09-22Call sandbox in CGI modeJune McEnroe
Otherwise upload won't actually work.
2021-09-22Support HTTP PUT in upJune McEnroe
For use by Palaver[1]. Unfortunately, at least in the current App Store version of Palaver, this doesn't work correctly with basic auth. [1]: https://palaverapp.com/guides/commands/set.html#ui-image_service
2021-09-22Remove default faviconJune McEnroe
I hate these things and also this one sucks.
2021-09-21Use Z_FILTERED strategyJune McEnroe
2021-09-21Recalculate various lengths only as neededJune McEnroe
This actually speeds things up quite a bit, saving roughly a second on a big PNG screenshot. Almost all the remaining time is spent in deflate.
2021-09-21Rewrite pngo, add explicit optionsJune McEnroe
Interesting to see how my code habits have changed.
2021-09-16Fix /* **/ comment matchingJune McEnroe