talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 1011361620e85c34d5aaf52098f2b09d077b0df4
parent 8ca026606fe6b187f49ed9f9e9b0e8514a47ef8e
Author: Paul <paul@claws-mail.org>
Date:   Wed, 23 May 2018 18:10:46 +0100

fix quoting in reply to format=flowed message

Diffstat:
Msrc/procmime.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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'; \