git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Panagiotis Issaris <takis.issaris@uhasselt.be>
To: Junio C Hamano <junkio@cox.net>
Cc: Johannes Schindelin <Johannes.Schindelin@gmx.de>, git@vger.kernel.org
Subject: Re: Creating attachments using git-format-patch
Date: Sun, 4 Mar 2007 22:48:09 +0100	[thread overview]
Message-ID: <20070304214809.GA18861@issaris.org> (raw)
In-Reply-To: <7vodn84ru2.fsf@assigned-by-dhcp.cox.net>

Hi,

On Sun, Mar 04, 2007 at 01:33:09PM -0800, Junio C Hamano wrote:
> Panagiotis Issaris <takis@issaris.org> writes:
> 
> > The patch did not work for me in the sense that the patches still 
> > appeared as inline text in both Mutt (1.5.13) and Thunderbird (2 beta 2).
> >
> > The email show up as being threaded in Mutt, but in Thunderbird they 
> > still do not show up threaded.
> > thread about git-format-patch attachments, so Thunderbird appears to 
> > work alright).
> 
> If the patch below is needed, then I doubt you can honestly say
> it appears to work...
Well, here on Ubuntu using Mutt and Thunderbird the change below indeed makes
the patches appear as attachments instead of inline text.

The e-mails not showing up as one thread is probably some other issue, or some
misuse of me of git-format-patch and git-send-email.

I'm trying to get one e-mail sent with a header of [PATCH 00/16] with the other
patches as attachments to that one summary e-mail. Initially they did not show
up as being threaded in Thunderbird, but they did show up being threaded in
Mutt. Now, with some experimentation, I managed to get them to show up in a
thread in Thunderbird too, but unfortunately, now I am seeing the [PATCH 00/16]
e-mail followed by one reply [PATCH 01/16] and all others are replies to [PATCH
01/16] instead of [PATCH 00/16]. Or by further experimentation, I got the [PATCH
00/16] e-mail sent with 14 replies correctly threaded, but two of them for some
reader not ending up in the same thread...

git-format-patch --thread --attach -n origin..or2

git-send-email --no-chain-reply-to --to takis.issaris@uhasselt.be --from \
takis@issaris.org --subject "[PATCH 00/16] Various Doxygen related patches" \
--suppress-from --compose 00*patch

I've tried removing the --no-chain-reply and removing the --thread option of
format-patch, but I never manage to get the mails sent in the way I want them
to.

Anyway, I think my not-showing-up-as-a-thread issue is mainly because of me not
understanding how to use it correctly :) and being unrelated to the
patches-showing-up-inline-instead-of-as-attachments issue, which is really fixed
here with the patch shown below.

In fact, I noticed that using --inline or --attach does not seem to make a
difference for Mutt or Thunderbird, in both cases the emails appear to have
attachments now :-/

The way I came to the patch below is by manually editing the e-mails generated
by git-format-patch and sending them after each modification with git-send-email
until I figured out what change made the patches appear as attachments in both
email clients.

> > diff -u b/log-tree.c b/log-tree.c
> > --- b/log-tree.c
> > +++ b/log-tree.c
> > @@ -186,7 +186,7 @@
> >  			snprintf(subject_buffer, sizeof(subject_buffer) - 1,
> >  				 "%s"
> >  				 "MIME-Version: 1.0\n"
> > -				 "Content-Type: multipart/mixed;\n"
> > +				 "Content-Type: multipart/mixed;"
> >  				 " boundary=\"%s%s\"\n"
> >  				 "\n"
> >  				 "This is a multi-part message in MIME "
> > @@ -202,10 +202,10 @@
> >  
> >  			snprintf(buffer, sizeof(buffer) - 1,
> >  				 "--%s%s\n"
> > -				 "Content-Type: text/x-patch;\n"
> > +				 "Content-Type: text/x-patch;"
> >  				 " name=\"%s.diff\"\n"
> >  				 "Content-Transfer-Encoding: 8bit\n"
> > -				 "Content-Disposition: %s;\n"
> > +				 "Content-Disposition: %s;"
> >  				 " filename=\"%s.diff\"\n\n",
> >  				 mime_boundary_leader, opt->mime_boundary,
> >  				 sha1,
> 
> But if it helps some implementations of MIME decoder without
> harming others, then I'd say why not.  I just wanted to make
> sure it does not throw regression at others (for example by
> making the physical line too long for them to grok).
Of course, I fully understand your cautiousness.

With friendly regards,
Takis 

  reply	other threads:[~2007-03-04 21:48 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-03 21:07 Creating attachments using git-format-patch Panagiotis Issaris
2007-03-03 22:49 ` Junio C Hamano
2007-03-03 22:56   ` Johannes Schindelin
2007-03-03 23:12     ` [PATCH] format-patch: add --no-inline option Johannes Schindelin
2007-03-04  3:43     ` Creating attachments using git-format-patch Junio C Hamano
2007-03-04  4:23       ` Junio C Hamano
2007-03-04 11:30         ` Johannes Schindelin
2007-03-04 19:48         ` Panagiotis Issaris
2007-03-04 19:56           ` Panagiotis Issaris
2007-03-04 21:33           ` Junio C Hamano
2007-03-04 21:48             ` Panagiotis Issaris [this message]
2007-03-05  0:09           ` Junio C Hamano

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=20070304214809.GA18861@issaris.org \
    --to=takis.issaris@uhasselt.be \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    --cc=junkio@cox.net \
    /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).