git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server
@ 2006-10-29 19:31 Sergey Vlasov
  2006-10-29 19:31 ` [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file Sergey Vlasov
  2006-10-29 20:34 ` [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Ryan Anderson
  0 siblings, 2 replies; 4+ messages in thread
From: Sergey Vlasov @ 2006-10-29 19:31 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Ryan Anderson, git, Sergey Vlasov

Fix the --smtp-server option description to match reality.

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
---
 Documentation/git-send-email.txt |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt
index 481b3f5..ec0e201 100644
--- a/Documentation/git-send-email.txt
+++ b/Documentation/git-send-email.txt
@@ -66,8 +66,11 @@ The options available are:
 	all that is output.
 
 --smtp-server::
-	If set, specifies the outgoing SMTP server to use.  Defaults to
-	localhost.
+	If set, specifies the outgoing SMTP server to use.  A full
+	pathname of a sendmail-like program can be specified instead;
+	the program must support the `-i` option.  Defaults to
+	`/usr/sbin/sendmail` or `/usr/lib/sendmail` if such program is
+	available, or to `localhost` otherwise.
 
 --subject::
    	Specify the initial subject of the email thread.
-- 
1.4.3.3.ge502

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

* [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file
  2006-10-29 19:31 [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Sergey Vlasov
@ 2006-10-29 19:31 ` Sergey Vlasov
  2006-10-29 20:37   ` Ryan Anderson
  2006-10-29 20:34 ` [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Ryan Anderson
  1 sibling, 1 reply; 4+ messages in thread
From: Sergey Vlasov @ 2006-10-29 19:31 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Ryan Anderson, git, Sergey Vlasov

Make the default value for --smtp-server configurable through the
'sendemail.smtpserver' option in .git/config (or $HOME/.gitconfig).

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
---
 Documentation/git-send-email.txt |    8 +++++---
 git-send-email.perl              |    3 +++
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt
index ec0e201..4c8d907 100644
--- a/Documentation/git-send-email.txt
+++ b/Documentation/git-send-email.txt
@@ -68,9 +68,11 @@ The options available are:
 --smtp-server::
 	If set, specifies the outgoing SMTP server to use.  A full
 	pathname of a sendmail-like program can be specified instead;
-	the program must support the `-i` option.  Defaults to
-	`/usr/sbin/sendmail` or `/usr/lib/sendmail` if such program is
-	available, or to `localhost` otherwise.
+	the program must support the `-i` option.  Default value can
+	be specified by the 'sendemail.smtpserver' configuration
+	option; the built-in default is `/usr/sbin/sendmail` or
+	`/usr/lib/sendmail` if such program is available, or
+	`localhost` otherwise.
 
 --subject::
    	Specify the initial subject of the email thread.
diff --git a/git-send-email.perl b/git-send-email.perl
index c42dc3b..4c87c20 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -231,6 +231,9 @@ if (!defined $initial_reply_to && $promp
 }
 
 if (!$smtp_server) {
+	$smtp_server = $repo->config('sendemail.smtpserver');
+}
+if (!$smtp_server) {
 	foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
 		if (-x $_) {
 			$smtp_server = $_;
-- 
1.4.3.3.ge502

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

* Re: [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server
  2006-10-29 19:31 [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Sergey Vlasov
  2006-10-29 19:31 ` [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file Sergey Vlasov
@ 2006-10-29 20:34 ` Ryan Anderson
  1 sibling, 0 replies; 4+ messages in thread
From: Ryan Anderson @ 2006-10-29 20:34 UTC (permalink / raw)
  To: Sergey Vlasov; +Cc: Junio C Hamano, git

On 10/29/06, Sergey Vlasov <vsu@altlinux.ru> wrote:
> Fix the --smtp-server option description to match reality.
>
> Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Acked-by: Ryan Anderson <rda@google.com> (or ryan@michonline.com,

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

* Re: [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file
  2006-10-29 19:31 ` [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file Sergey Vlasov
@ 2006-10-29 20:37   ` Ryan Anderson
  0 siblings, 0 replies; 4+ messages in thread
From: Ryan Anderson @ 2006-10-29 20:37 UTC (permalink / raw)
  To: Sergey Vlasov; +Cc: Junio C Hamano, git

On 10/29/06, Sergey Vlasov <vsu@altlinux.ru> wrote:
> Make the default value for --smtp-server configurable through the
> 'sendemail.smtpserver' option in .git/config (or $HOME/.gitconfig).
>
> Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>

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

end of thread, other threads:[~2006-10-29 20:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-29 19:31 [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Sergey Vlasov
2006-10-29 19:31 ` [PATCH 2/2] git-send-email: Read the default SMTP server from the GIT config file Sergey Vlasov
2006-10-29 20:37   ` Ryan Anderson
2006-10-29 20:34 ` [PATCH 1/2] git-send-email: Document support for local sendmail instead of SMTP server Ryan Anderson

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