summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-12-23 14:33:18 -0500
committerJune McEnroe <june@causal.agency>2019-12-23 14:33:18 -0500
commitd806183d7b72a7ed5b8e8b12aeaf20c5306aaf52 (patch)
tree01c7b80f059781932949c1f886a70250cbd7e3fa
parentRestrict search to plain-text messages (diff)
downloadimbox-d806183d7b72a7ed5b8e8b12aeaf20c5306aaf52.tar.gz
imbox-d806183d7b72a7ed5b8e8b12aeaf20c5306aaf52.zip
Handle folded From headers
-rw-r--r--imbox.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/imbox.c b/imbox.c
index e620a61..a55b09f 100644
--- a/imbox.c
+++ b/imbox.c
@@ -66,11 +66,11 @@ static void mboxrd(const char *headers, const char *body) {
 	(int)((match).rm_eo - (match).rm_so), &(str)[(match).rm_so]
 	static regex_t fromRegex, dateRegex;
 
-	compile(&fromRegex, "^From: .*<([^>]+)>");
-	regmatch_t from[2];
-	int error = regexec(&fromRegex, headers, 2, from, 0);
+	compile(&fromRegex, "^From: ([^\r]|\r\n[ \t])*<([^>]+)>");
+	regmatch_t from[3];
+	int error = regexec(&fromRegex, headers, 3, from, 0);
 	if (error) errx(EX_DATAERR, "missing From header");
-	printf("From %.*s ", MATCH(headers, from[1]));
+	printf("From %.*s ", MATCH(headers, from[2]));
 
 	// Day, Date Month Year Time -> Day Month Date Time Year
 	compile(&dateRegex, "^Date: (...), (..) (...) (....) (.{8})");
='/src/commit/home/.config/X/resources?id=11db1d928fcd0fe72d9bc70a7a3a2f9d5ecc1685&follow=1'>Set urgency on bell in xtermJune McEnroe 2021-02-07Add bindings for brightness controlJune McEnroe Weirdly the Fn key doesn't change how the F row registers... I wonder if I can do something about that. 2021-02-07Set X key repeat rateJune McEnroe 2021-02-07Bump font size to 12June McEnroe 11 is what I use on macOS, but I feel like my eyes are working harder here. 2021-02-07Fully configure and rebind cwmJune McEnroe This is sort of a mix of trying to emulate macOS somewhat for my muscle memory and just rebinding some of the cwm defaults to use 4- rather than M-. 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such. 2021-02-06Add xterm output to schemeJune McEnroe