mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
Unbreak tests
This commit is contained in:
parent
ca44d0e036
commit
6ef80e8335
1 changed files with 6 additions and 3 deletions
|
@ -66,9 +66,12 @@ func (s *SASLAuth) SASLMechanisms() []string {
|
|||
}
|
||||
|
||||
func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) {
|
||||
saslUsername, err := s.AuthNormalize(saslUsername)
|
||||
if err != nil {
|
||||
return "", err
|
||||
if s.AuthNormalize != nil {
|
||||
var err error
|
||||
saslUsername, err = s.AuthNormalize(saslUsername)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
}
|
||||
|
||||
if s.AuthMap == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue