git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* smtp server on windows
@ 2010-09-04 14:03 Pascal Obry
  2010-09-04 14:24 ` Ævar Arnfjörð Bjarmason
  0 siblings, 1 reply; 3+ messages in thread
From: Pascal Obry @ 2010-09-04 14:03 UTC (permalink / raw)
  To: git list


Hi there,

One simple SMTP server on Windows (using Cygwin) is msmtp.

I'd like to use two different SMTP accounts depending on the repository
I'm working (this is to get the proper identify on the from header).

I have two accounts configured and working in my ~/.msmtprc named gmail
and wanadoo.

I have on my .git/config to send e-mail (and this is working):

[sendemail]
        smtpserver = /usr/sbin/msmtp

This is using the default account as specified in my .msmtprc. I want to
use a specific account (say gmail) for this repository, I tried:

[sendemail]
        smtpserver = /usr/sbin/msmtp --account=gmail

but this fails as smtpserver is expecting a simple executable. Is there
a way to pass some parameters to an smtpserver specified on a Git
configuration?

Thanks.

Pascal.

-- 

--|------------------------------------------------------
--| Pascal Obry                           Team-Ada Member
--| 45, rue Gabriel Peri - 78114 Magny Les Hameaux FRANCE
--|------------------------------------------------------
--|    http://www.obry.net  -  http://v2p.fr.eu.org
--| "The best way to travel is by means of imagination"
--|
--| gpg --keyserver keys.gnupg.net --recv-key F949BD3B

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: smtp server on windows
  2010-09-04 14:03 smtp server on windows Pascal Obry
@ 2010-09-04 14:24 ` Ævar Arnfjörð Bjarmason
  2010-09-04 15:15   ` Pascal Obry
  0 siblings, 1 reply; 3+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2010-09-04 14:24 UTC (permalink / raw)
  To: pascal; +Cc: git list

On Sat, Sep 4, 2010 at 14:03, Pascal Obry <pascal.obry@gmail.com> wrote:

> This is using the default account as specified in my .msmtprc. I want to
> use a specific account (say gmail) for this repository, I tried:
>
> [sendemail]
>        smtpserver = /usr/sbin/msmtp --account=gmail
>
> but this fails as smtpserver is expecting a simple executable. Is there
> a way to pass some parameters to an smtpserver specified on a Git
> configuration?

No, but you could modify this bit in git-send-email.perl:

    } elsif ($smtp_server =~ m#^/#) {
        my $pid = open my $sm, '|-';
        defined $pid or die $!;

Or, to make it work right now: just make a wrapper script.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: smtp server on windows
  2010-09-04 14:24 ` Ævar Arnfjörð Bjarmason
@ 2010-09-04 15:15   ` Pascal Obry
  0 siblings, 0 replies; 3+ messages in thread
From: Pascal Obry @ 2010-09-04 15:15 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason; +Cc: git list

Le 04/09/2010 16:24, Ævar Arnfjörð Bjarmason a écrit :
> No, but you could modify this bit in git-send-email.perl:
> 
>     } elsif ($smtp_server =~ m#^/#) {
>         my $pid = open my $sm, '|-';
>         defined $pid or die $!;

Ok, thanks for the quick answer and the pointer. I have zero knowledge
in Perl so I probably won't be able to do that. I'll see...

> Or, to make it work right now: just make a wrapper script.

Right, I wanted to avoid that.

Pascal.

-- 

--|------------------------------------------------------
--| Pascal Obry                           Team-Ada Member
--| 45, rue Gabriel Peri - 78114 Magny Les Hameaux FRANCE
--|------------------------------------------------------
--|    http://www.obry.net  -  http://v2p.fr.eu.org
--| "The best way to travel is by means of imagination"
--|
--| gpg --keyserver keys.gnupg.net --recv-key F949BD3B

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-09-04 15:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-04 14:03 smtp server on windows Pascal Obry
2010-09-04 14:24 ` Ævar Arnfjörð Bjarmason
2010-09-04 15:15   ` Pascal Obry

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).