* [GSoC PATCH v2 0/1] improve smtp auth error handling logic @ 2025-03-11 6:24 Zheng Yuting 2025-03-11 6:24 ` [GSoC PATCH v2 1/1] improve smtp authentication " Zheng Yuting 0 siblings, 1 reply; 3+ messages in thread From: Zheng Yuting @ 2025-03-11 6:24 UTC (permalink / raw) To: git; +Cc: Zheng Yuting This patch enhances error handling in the smtp_auth_maybe() function by distinguishing between temporary errors and permanent authentication failures. Zheng Yuting (1): improve smtp authentication error handling logic git-send-email.perl | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) -- 2.49.0.rc0.57.gdb91954e18 ^ permalink raw reply [flat|nested] 3+ messages in thread
* [GSoC PATCH v2 1/1] improve smtp authentication error handling logic 2025-03-11 6:24 [GSoC PATCH v2 0/1] improve smtp auth error handling logic Zheng Yuting @ 2025-03-11 6:24 ` Zheng Yuting 2025-03-11 6:49 ` Yuting Zheng 0 siblings, 1 reply; 3+ messages in thread From: Zheng Yuting @ 2025-03-11 6:24 UTC (permalink / raw) To: git; +Cc: Zheng Yuting --- git-send-email.perl | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/git-send-email.perl b/git-send-email.perl index 798d59b84f..a012d61abb 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1419,19 +1419,19 @@ sub smtp_auth_maybe { die "invalid smtp auth: '${smtp_auth}'"; } - # TODO: Authentication may fail not because credentials were + # Authentication may fail not because credentials were # invalid but due to other reasons, in which we should not # reject credentials. $auth = Git::credential({ 'protocol' => 'smtp', 'host' => smtp_host_string(), 'username' => $smtp_authuser, - # if there's no password, "git credential fill" will - # give us one, otherwise it'll just pass this one. 'password' => $smtp_authpass + }, sub { my $cred = shift; - + my $result; + my $error; if ($smtp_auth) { my $sasl = Authen::SASL->new( mechanism => $smtp_auth, @@ -1441,13 +1441,27 @@ sub smtp_auth_maybe { authname => $cred->{'username'}, } ); - return !!$smtp->auth($sasl); + } else { + # Handle plain authentication errors + eval { + $result = $smtp->auth($cred->{'username'}, $cred->{'password'}); + 1; # Ensure true value is returned + } or do { + $error = $@ || 'Unknown error'; + }; } - - return !!$smtp->auth($cred->{'username'}, $cred->{'password'}); + # Unified error handling logic + if ($error) { + # Match temporary errors + if ($error =~ /timeout|temporary|greylist|throttled|quota\s+exceeded|queue|overload|try\s+again|connection\s+lost|network\s+error/i) { + warn "SMTP temporary error: $error"; + return 1; + } + return 0; + } + return !!$result; }); - return $auth; } -- 2.49.0.rc0.57.gdb91954e18 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [GSoC PATCH v2 1/1] improve smtp authentication error handling logic 2025-03-11 6:24 ` [GSoC PATCH v2 1/1] improve smtp authentication " Zheng Yuting @ 2025-03-11 6:49 ` Yuting Zheng 0 siblings, 0 replies; 3+ messages in thread From: Yuting Zheng @ 2025-03-11 6:49 UTC (permalink / raw) To: git Hi everyone, I am a new contributor; please forgive my mistake. I mistakenly released the v2 patch without any code changes. Please disregard this version and avoid reverting based on it. I will release a corrected patch with the intended updates shortly. Apologies for any inconvenience. Best regards, Zheng Yuting On Tue, Mar 11, 2025 at 2:25 PM Zheng Yuting <05zyt30@gmail.com> wrote: > > --- > git-send-email.perl | 30 ++++++++++++++++++++++-------- > 1 file changed, 22 insertions(+), 8 deletions(-) > > diff --git a/git-send-email.perl b/git-send-email.perl > index 798d59b84f..a012d61abb 100755 > --- a/git-send-email.perl > +++ b/git-send-email.perl > @@ -1419,19 +1419,19 @@ sub smtp_auth_maybe { > die "invalid smtp auth: '${smtp_auth}'"; > } > > - # TODO: Authentication may fail not because credentials were > + # Authentication may fail not because credentials were > # invalid but due to other reasons, in which we should not > # reject credentials. > $auth = Git::credential({ > 'protocol' => 'smtp', > 'host' => smtp_host_string(), > 'username' => $smtp_authuser, > - # if there's no password, "git credential fill" will > - # give us one, otherwise it'll just pass this one. > 'password' => $smtp_authpass > + > }, sub { > my $cred = shift; > - > + my $result; > + my $error; > if ($smtp_auth) { > my $sasl = Authen::SASL->new( > mechanism => $smtp_auth, > @@ -1441,13 +1441,27 @@ sub smtp_auth_maybe { > authname => $cred->{'username'}, > } > ); > - > return !!$smtp->auth($sasl); > + } else { > + # Handle plain authentication errors > + eval { > + $result = $smtp->auth($cred->{'username'}, $cred->{'password'}); > + 1; # Ensure true value is returned > + } or do { > + $error = $@ || 'Unknown error'; > + }; > } > - > - return !!$smtp->auth($cred->{'username'}, $cred->{'password'}); > + # Unified error handling logic > + if ($error) { > + # Match temporary errors > + if ($error =~ /timeout|temporary|greylist|throttled|quota\s+exceeded|queue|overload|try\s+again|connection\s+lost|network\s+error/i) { > + warn "SMTP temporary error: $error"; > + return 1; > + } > + return 0; > + } > + return !!$result; > }); > - > return $auth; > } > > -- > 2.49.0.rc0.57.gdb91954e18 ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-11 6:49 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-11 6:24 [GSoC PATCH v2 0/1] improve smtp auth error handling logic Zheng Yuting 2025-03-11 6:24 ` [GSoC PATCH v2 1/1] improve smtp authentication " Zheng Yuting 2025-03-11 6:49 ` Yuting Zheng
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).