[PATCH] git-imap-send bugfix: Allow lines starting with "From " in body
From: Ramkumar Ramachandra <hidden>
Date: 2016-06-15 22:48:28
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
From: Ramkumar Ramachandra <hidden>
Date: 2016-06-15 22:48:28
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
Signed-off-by: Ramkumar Ramachandra <redacted> --- Documentation/git-imap-send.txt | 5 ----- imap-send.c | 8 +++++++- 2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/Documentation/git-imap-send.txt b/Documentation/git-imap-send.txt
index 6cafbe2..ed9d3ce 100644
--- a/Documentation/git-imap-send.txt
+++ b/Documentation/git-imap-send.txt@@ -123,11 +123,6 @@ users may wish to visit this web page for more information: http://kb.mozillazine.org/Plain_text_e-mail_-_Thunderbird#Completely_plain_email -BUGS ----- -Doesn't handle lines starting with "From " in the message body. - - Author ------ Derived from isync 1.0.1 by Mike McCormack.
diff --git a/imap-send.c b/imap-send.c
index aeb2985..3163bb9 100644
--- a/imap-send.c
+++ b/imap-send.c@@ -1431,8 +1431,14 @@ static int count_messages(struct msg_data *msg) while (1) { if (!prefixcmp(p, "From ")) { + p = strstr(p+5, "\nFrom: "); + if (!p) break; + p = strstr(p+7, "\nDate: "); + if (!p) break; + p = strstr(p+7, "\nSubject: "); + if (!p) break; count++; - p += 5; + p += 10; } p = strstr(p+5, "\nFrom "); if (!p)
--
1.7.0