The current perl Net::SMTP support will not use AUTH LOGIN when other authentication options are available. Add an option to force the use of AUTH LOGIN when necessary. (Like when using my current hosted email server, grumble) Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> --- Documentation/git-send-email.txt | 3 +++ git-send-email.perl | 19 +++++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt index 327233c..9595773 100644 --- a/Documentation/git-send-email.txt +++ b/Documentation/git-send-email.txt @@ -198,6 +198,9 @@ must be used for each option. if a username is not specified (with '--smtp-user' or 'sendemail.smtpuser'), then authentication is not attempted. +--smtp-auth=<authorization_type>:: + Force the smtp authentication to use a particular type. + Currently supported forced style is "login" Automating ~~~~~~~~~~ diff --git a/git-send-email.perl b/git-send-email.perl index 98ab33a..37dfbe7 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -28,6 +28,7 @@ use File::Temp qw/ tempdir tempfile /; use File::Spec::Functions qw(catfile); use Error qw(:try); use Git; +use MIME::Base64; Getopt::Long::Configure qw/ pass_through /; @@ -193,7 +194,7 @@ sub do_edit { my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc); my ($to_cmd, $cc_cmd); my ($smtp_server, $smtp_server_port, @smtp_server_options); -my ($smtp_authuser, $smtp_encryption); +my ($smtp_authuser, $smtp_encryption, $smtp_auth); my ($identity, $aliasfiletype, @alias_files, $smtp_domain); my ($validate, $confirm); my (@suppress_cc); @@ -218,6 +219,7 @@ my %config_settings = ( "smtpserveroption" => \@smtp_server_options, "smtpuser" => \$smtp_authuser, "smtppass" => \$smtp_authpass, + "smtpauth" => \$smtp_auth, "smtpdomain" => \$smtp_domain, "to" => \@initial_to, "tocmd" => \$to_cmd, @@ -293,6 +295,7 @@ my $rc = GetOptions("sender|from=s" => \$sender, "smtp-pass:s" => \$smtp_authpass, "smtp-ssl" => sub { $smtp_encryption = 'ssl' }, "smtp-encryption=s" => \$smtp_encryption, + "smtp-auth=s" => \$smtp_auth, "smtp-debug:i" => \$debug_net_smtp, "smtp-domain:s" => \$smtp_domain, "identity=s" => \$identity, @@ -1111,7 +1114,19 @@ X-Mailer: git-send-email $gitversion system "stty echo"; } - $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message; + if (defined $smtp_auth && $smtp_auth =~ /^login$/i) { + + $smtp->datasend("AUTH LOGIN\n"); + $smtp->response(); + $smtp->datasend(encode_base64("$smtp_authuser")); + $smtp->response(); + $smtp->datasend(encode_base64("$smtp_authpass")); + $smtp->response(); + + } else { + + $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message; + } } $smtp->mail( $raw_from ) or die $smtp->message; -- 1.7.6.131.g99019 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html