From 1011361620e85c34d5aaf52098f2b09d077b0df4 Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 23 May 2018 18:10:46 +0100 Subject: [PATCH] fix quoting in reply to format=flowed message --- src/procmime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/procmime.c b/src/procmime.c index 2be4b12c7..76ee31702 100644 --- a/src/procmime.c +++ b/src/procmime.c @@ -293,7 +293,8 @@ static int procmime_fclose(FILE *fp) gint llen = 0; \ strretchomp(lastline); \ llen = strlen(lastline); \ - if (lastline[llen-1] == ' ' && strcmp(lastline,"-- ")) { \ + if (lastline[llen-1] == ' ' && strcmp(lastline,"-- ") && \ + strcmp(lastline,"> ")) { \ /* this is flowed */ \ if (delsp) \ lastline[llen-1] = '\0'; \ -- 2.25.1