mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
auth/sasl: Add missing usernameForAuth call
This commit is contained in:
parent
06fd5249d2
commit
c48332a940
1 changed files with 11 additions and 1 deletions
|
@ -139,7 +139,12 @@ func (s *SASLAuth) CreateSASL(mech string, remoteAddr net.Addr, successCb func(i
|
|||
return ErrInvalidAuthCred
|
||||
}
|
||||
|
||||
err := s.AuthPlain(username, password)
|
||||
username, err := s.usernameForAuth(context.Background(), username)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = s.AuthPlain(username, password)
|
||||
if err != nil {
|
||||
s.Log.Error("authentication failed", err, "username", username, "src_ip", remoteAddr)
|
||||
return ErrInvalidAuthCred
|
||||
|
@ -156,6 +161,11 @@ func (s *SASLAuth) CreateSASL(mech string, remoteAddr net.Addr, successCb func(i
|
|||
}
|
||||
|
||||
return sasllogin.NewLoginServer(func(username, password string) error {
|
||||
username, err := s.usernameForAuth(context.Background(), username)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err := s.AuthPlain(username, password)
|
||||
if err != nil {
|
||||
s.Log.Error("authentication failed", err, "username", username, "src_ip", remoteAddr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue