From: John Keeping <john@keeping.me.uk>
To: Eric Sunshine <sunshine@sunshineco.com>
Cc: Git List <git@vger.kernel.org>
Subject: Re: [PATCH 2/2] send-email: expand paths in sendemail.{to,cc}cmd config
Date: Tue, 24 Nov 2015 08:43:53 +0000 [thread overview]
Message-ID: <20151124084353.GH21488@serenity.lan> (raw)
In-Reply-To: <CAPig+cRY3W4VMgqnRuQFeMk7oueKsA=ZhMAk15LLyZg0KfVvCA@mail.gmail.com>
On Mon, Nov 23, 2015 at 07:04:46PM -0500, Eric Sunshine wrote:
> On Tue, Nov 17, 2015 at 5:01 PM, John Keeping <john@keeping.me.uk> wrote:
> > These configuration variables specify the paths to commands so we should
> > support tilde-expansion for files inside a user's home directory.
>
> Hmm, I don't see anything in the documentation which says that these
> are paths to commands, and the code itself treats them purely as
> commands to be invoked, not as paths to commands. What is the
> behavior, for instance, with --tocmd='foobar -x zopp' or even
> --tocmd='foobar -x ~/zopp'?
The path behaviour only expands leading '~' and '~user' (as documented
in git-config(1)):
$ git -c sendemail.tocmd='foobar -x ~/zopp' config --path sendemail.tocmd
foobar -x ~/zopp
> > Signed-off-by: John Keeping <john@keeping.me.uk>
> > ---
> > diff --git a/git-send-email.perl b/git-send-email.perl
> > index 719c715..8e4c0e1 100755
> > --- a/git-send-email.perl
> > +++ b/git-send-email.perl
> > @@ -242,9 +242,7 @@ my %config_settings = (
> > "smtpdomain" => \$smtp_domain,
> > "smtpauth" => \$smtp_auth,
> > "to" => \@initial_to,
> > - "tocmd" => \$to_cmd,
> > "cc" => \@initial_cc,
> > - "cccmd" => \$cc_cmd,
> > "aliasfiletype" => \$aliasfiletype,
> > "bcc" => \@bcclist,
> > "suppresscc" => \@suppress_cc,
> > @@ -259,6 +257,8 @@ my %config_settings = (
> > my %config_path_settings = (
> > "aliasesfile" => \@alias_files,
> > "smtpsslcertpath" => \$smtp_ssl_cert_path,
> > + "tocmd" => \$to_cmd,
> > + "cccmd" => \$cc_cmd,
> > );
next prev parent reply other threads:[~2015-11-24 8:55 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-17 22:01 [PATCH 0/2] send-email config path expansion John Keeping
2015-11-17 22:01 ` [PATCH 1/2] send-email: expand path in sendemail.smtpsslcertpath config John Keeping
2015-11-17 22:01 ` [PATCH 2/2] send-email: expand paths in sendemail.{to,cc}cmd config John Keeping
2015-11-24 0:04 ` Eric Sunshine
2015-11-24 8:43 ` John Keeping [this message]
2015-11-24 22:23 ` Jeff King
2015-11-24 22:58 ` John Keeping
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=20151124084353.GH21488@serenity.lan \
--to=john@keeping.me.uk \
--cc=git@vger.kernel.org \
--cc=sunshine@sunshineco.com \
/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).