Merge pull request #762 from mlipscombe/issue-761

fix: correctly announce SASL LOGIN capabilty
This commit is contained in:
Max Mazurov 2025-02-10 20:40:20 +03:00 committed by GitHub
commit 55cd9b0764
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,7 +62,7 @@ func (s *SASLAuth) SASLMechanisms() []string {
if len(s.Plain) != 0 {
mechs = append(mechs, sasl.Plain)
if s.OnlyFirstID {
if s.EnableLogin {
mechs = append(mechs, sasl.Login)
}
}