Andy Shevchenko (2008-11-21 12:37 +0200) wrote: > On Fri, Nov 21, 2008 at 12:34 PM, Arafangion <thestar@xxxxxxxxxxxxxxxx> wrote: >>> By default git-send-email does not accept patch which is contain >>> lines longer than 998 symbols. Sometime it's inconvenient, i.e. you >>> have a long list in one variable in shell script. So, define >>> environment variable GIT_SEND_EMAIL_LONGLINE to something to avoid >>> that restriction. >> >> As a curiosity, why is such a check even neccessary? > I'm not an author of that strange check (possible it's somehow related > to b8ebe08b9a643f432866eb7150c3b20d59b755f2) The author (so to say) of that strange check is RFC 2822 - Internet Message Format. 2.1.1. Line Length Limits There are two limits that this standard places on the number of characters in a line. Each line of characters MUST be no more than 998 characters, and SHOULD be no more than 78 characters, excluding the CRLF. The 998 character limit is due to limitations in many implementations which send, receive, or store Internet Message Format messages that simply cannot handle more than 998 characters on a line. [...] http://www.faqs.org/rfcs/rfc2822.html Perhaps longer lines will work in many cases but atleast warning should be printed to user, or something. -- To unsubscribe from this list: 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