From b1d4c5af79c26e7d1b2b2ebcbe241e08985b6425 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 22 Dec 2019 15:00:33 +0200 Subject: [PATCH] mu: fix list-post email regexp '_' is valid in email addresses. Fix courtesy of jaknel; fixes #1529. --- lib/mu-msg-sexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mu-msg-sexp.c b/lib/mu-msg-sexp.c index eca13c8f..3beca37b 100644 --- a/lib/mu-msg-sexp.c +++ b/lib/mu-msg-sexp.c @@ -178,7 +178,7 @@ maybe_append_list_post_as_reply_to (GString *gstr, MuMsg *msg) if (!list_post) return; - rx = g_regex_new ("^(?", G_REGEX_CASELESS, 0, NULL); + rx = g_regex_new ("^(?", G_REGEX_CASELESS, 0, NULL); g_return_if_fail(rx); if (g_regex_match (rx, list_post, 0, &minfo)) {