It was pointed out that the current behaviour might mispart a patch comment so remove this behaviour for now. Signed-off-by: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> --- mailinfo.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/mailinfo.c b/mailinfo.c index 3696d61..325c3b2 100644 --- a/mailinfo.c +++ b/mailinfo.c @@ -254,6 +254,8 @@ #define SEEN_PREFIX 020 /* First lines of body can have From:, Date:, and Subject: or be blank */ static void handle_inbody_header(int *seen, char *line) { + if (*seen & SEEN_PREFIX) + return; if (!memcmp(">From", line, 5) && isspace(line[5])) { if (!(*seen & SEEN_BOGUS_UNIX_FROM)) { *seen |= SEEN_BOGUS_UNIX_FROM; -- 1.4.0.g25f48-dirty - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html