From: Jeff King <peff@peff.net>
To: Andre Przywara <andre.przywara@amd.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] allow 8bit data in email body sent by send-email
Date: Fri, 9 Jan 2009 02:28:14 -0500 [thread overview]
Message-ID: <20090109072814.GA21180@coredump.intra.peff.net> (raw)
In-Reply-To: <1231422657-15305-1-git-send-email-andre.przywara@amd.com>
On Thu, Jan 08, 2009 at 02:50:57PM +0100, Andre Przywara wrote:
> when sending patch files via git send-email, the perl script assumes
> 7bit characters only. If there are other bytes in the body (foreign language
> characters in names or translations), some servers (like vger.kernel.org)
> reject the mail because of th?t. This patch always adds an 8bit header line
> to each mail.
This should be done already by git-format-patch when you generate the
patch to feed to send-email. What exactly is the workflow you use to
generate this problem? Does it matter where the non-ascii characters are
(commit versus patch, etc)? What version of git are you using?
> diff --git a/git-send-email.perl b/git-send-email.perl
> index 77ca8fe..68a462c 100755
> --- a/git-send-email.perl
> +++ b/git-send-email.perl
> @@ -793,6 +793,7 @@ To: $to${ccline}
> Subject: $subject
> Date: $date
> Message-Id: $message_id
> +Content-Transfer-Encoding: 8bit
> X-Mailer: git-send-email $gitversion
> ";
This fix isn't right anyway. For one thing, if you're going to include
C-T-E, you should also include a MIME-Version header. But more
importantly, we are already handling encoding elsewhere. So
unconditionally adding this means that you may conflict with existing
MIME headers in the @xh variable.
-Peff
next prev parent reply other threads:[~2009-01-09 7:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-08 13:50 [PATCH] allow 8bit data in email body sent by send-email Andre Przywara
2009-01-09 7:28 ` Jeff King [this message]
2009-01-09 14:16 ` Andre Przywara
2009-01-09 14:44 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090109072814.GA21180@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=andre.przywara@amd.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).