From cb5bcebf756ebde2328e2c69210eb8ab31e82c89 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sat, 10 Oct 2020 21:17:35 +0300 Subject: [PATCH] Separate quote from reply with an empty line This makes quotes easier to read in previous DC versions and plaintext MUAs. --- src/mimefactory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mimefactory.rs b/src/mimefactory.rs index 24434f603..c143ff066 100644 --- a/src/mimefactory.rs +++ b/src/mimefactory.rs @@ -920,7 +920,7 @@ impl<'a, 'b> MimeFactory<'a, 'b> { let quoted_text = self .msg .quoted_text() - .map(|quote| format_flowed_quote("e) + "\r\n"); + .map(|quote| format_flowed_quote("e) + "\r\n\r\n"); let flowed_text = format_flowed(final_text); let footer = &self.selfstatus;