2020-09-20 10:06 | Move errors in parsing headers to the called function | Willy Goiffon | 2 | +8 | -8 |
2020-09-20 09:31 | Release headers memory when program terminates | Willy Goiffon | 1 | +13 | -0 |
2020-09-19 22:27 | Clarify -a flag in man page | Willy Goiffon | 1 | +2 | -2 |
2020-09-19 22:23 | Update manpage to remove parts about the gopher log | Willy Goiffon | 1 | +24 | -15 |
2020-09-19 22:05 | Remove README parts about writing the gopher index | Willy Goiffon | 1 | +7 | -10 |
2020-09-19 22:05 | Set default gopher directory to /var/gopher | Willy Goiffon | 1 | +1 | -1 |
2020-09-19 21:56 | Rearrange sanitize() function to keep '-' and '_' in filenames | Willy Goiffon | 1 | +4 | -6 |
2020-09-19 21:50 | Simplify code to filter email body | Willy Goiffon | 1 | +4 | -5 |
2020-09-19 21:41 | Remove code to write index file | Willy Goiffon | 2 | +10 | -68 |
2020-09-09 22:01 | Add README file | Willy Goiffon | 1 | +44 | -0 |
2020-09-09 21:05 | Add mkfile to build project | Willy Goiffon | 1 | +22 | -0 |
2020-09-09 20:47 | Add LICENSE file | Willy Goiffon | 1 | +13 | -0 |
2020-09-09 20:45 | Rearrange header inclusion | Willy Goiffon | 1 | +2 | -1 |
2020-09-09 20:44 | Handle quoted-printable transfer encoding | Willy Goiffon | 4 | +157 | -2 |
2020-09-09 20:43 | Handle multiline base64 content | Willy Goiffon | 1 | +11 | -5 |
2020-09-09 17:26 | Add rule to link final binary | Willy Goiffon | 1 | +2 | -0 |
2020-09-09 16:04 | Add manpage for scribo(1) | Willy Goiffon | 2 | +100 | -1 |
2020-09-09 15:27 | Make default values more generic | Willy Goiffon | 1 | +4 | -4 |
2020-09-09 15:24 | Accept emails from any address if author is NULL | Willy Goiffon | 2 | +3 | -3 |
2020-09-09 10:37 | Use filter program upon writing, so we can first decode the message | Willy Goiffon | 1 | +40 | -8 |
2020-09-09 07:15 | Optionally accept input from a command (eg. fmt(1)) | Willy Goiffon | 1 | +7 | -2 |
2020-09-09 07:14 | Remove false NOTREACHED comments | Willy Goiffon | 1 | +5 | -5 |
2020-09-09 06:44 | Rename write_b64() to write_base64() | Willy Goiffon | 1 | +3 | -3 |
2020-09-09 06:44 | Add prototypes for write_* functions | Willy Goiffon | 1 | +2 | -0 |
2020-09-08 19:16 | Always write entries content | Willy Goiffon | 1 | +3 | -3 |
2020-09-08 15:59 | Initialize b64/bufsiz value for proper getline() handling | Willy Goiffon | 1 | +3 | -0 |
2020-09-08 14:46 | Remove unused variable in verifyheaders() | Willy Goiffon | 1 | +1 | -1 |
2020-09-08 14:45 | Add missing newline in usage() | Willy Goiffon | 1 | +2 | -2 |
2020-09-08 14:44 | Add support for base64 transfer encoding | Willy Goiffon | 4 | +185 | -14 |
2020-09-08 13:40 | Add flags to change author and date format | Willy Goiffon | 1 | +7 | -1 |
2020-09-08 13:37 | Replace WSP by "-" instead of "_" | Willy Goiffon | 1 | +2 | -1 |
2020-09-08 13:25 | Check Content-Transfer-Encoding header field to be "8bit" | Willy Goiffon | 1 | +13 | -6 |
2020-09-08 12:33 | Move title format in config.h | Willy Goiffon | 2 | +4 | -2 |
2020-09-08 12:24 | Add simple authorisation based on From: field | Willy Goiffon | 4 | +34 | -0 |
2020-09-08 11:57 | Verify headers before processing content | Willy Goiffon | 1 | +34 | -0 |
2020-09-08 11:41 | Add function prototypes | Willy Goiffon | 1 | +9 | -0 |
2020-09-08 11:39 | Treat "-" as stdin for infile | Willy Goiffon | 1 | +2 | -2 |
2020-09-08 11:38 | Remove parsing "From:" field in writeentry() | Willy Goiffon | 1 | +1 | -2 |
2020-09-08 11:35 | Open infile/outfile only when needed | Willy Goiffon | 1 | +10 | -9 |
2020-09-08 11:04 | Accept "-" again for writing index to stdout | Willy Goiffon | 1 | +1 | -1 |
2020-09-08 10:06 | Hardcode index header in config.h | Willy Goiffon | 2 | +7 | -5 |
2020-09-08 10:00 | Handle both LF and CRLF as a separator between headers and body | Willy Goiffon | 1 | +1 | -1 |
2020-09-08 09:55 | Write phlog index from directory listing | Willy Goiffon | 2 | +64 | -13 |
2020-09-07 21:36 | Format file output and dump body as-is | Willy Goiffon | 1 | +10 | -4 |
2020-09-07 21:11 | Handle output file "-" as stdout | Willy Goiffon | 1 | +1 | -1 |
2020-09-07 21:07 | Set outfile based on subject line | Willy Goiffon | 1 | +47 | -12 |
2020-09-07 16:39 | Change directory after openning input file | Willy Goiffon | 1 | +3 | -3 |
2020-09-07 16:37 | Add function to easily retrieve headers | Willy Goiffon | 3 | +29 | -14 |
2020-09-07 16:07 | Explode parseheaders() into multiple functions | Willy Goiffon | 1 | +30 | -11 |
2020-09-07 15:40 | Handle errors on file openning | Willy Goiffon | 1 | +3 | -0 |
2020-09-07 15:30 | Remove dummy code | Willy Goiffon | 1 | +1 | -11 |
2020-09-07 15:29 | Rewrite RFC5322 helpers to be independent from headers structure | Willy Goiffon | 3 | +98 | -85 |
2020-09-07 15:23 | Add working copy of strlcat(3) | Willy Goiffon | 2 | +62 | -1 |
2020-09-07 15:08 | Add working copy of strlcpy(3) | Willy Goiffon | 2 | +57 | -1 |
2020-09-07 15:07 | Move config to config.def.h | Willy Goiffon | 3 | +7 | -1 |
2020-09-07 08:00 | Add missing flags from usage() function | Willy Goiffon | 1 | +1 | -1 |
2020-09-06 18:59 | Add flag to change working directory | Willy Goiffon | 2 | +8 | -0 |
2020-09-06 18:58 | Add flags to change input/output files | Willy Goiffon | 2 | +104 | -12 |
2020-09-06 17:35 | Refresh makefile and config.mk | Willy Goiffon | 2 | +17 | -1 |
2020-09-06 17:30 | Rename project to "scribo" | Willy Goiffon | 2 | +1 | -1 |
2020-09-06 17:20 | Fail when unable to parse headers | Willy Goiffon | 1 | +2 | -1 |
2020-09-06 16:46 | Initial commit | Willy Goiffon | 4 | +149 | -0 |