mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
endpoint/smtp: Drop duplicate RunEarlyChecks call
This commit is contained in:
parent
c48332a940
commit
b3ebe4b81e
1 changed files with 0 additions and 5 deletions
|
@ -103,11 +103,6 @@ func (s *Session) AuthMechanisms() []string {
|
|||
}
|
||||
|
||||
func (s *Session) Auth(mech string) (sasl.Server, error) {
|
||||
// Executed before authentication and session initialization.
|
||||
if err := s.endp.pipeline.RunEarlyChecks(s.sessionCtx, &s.connState); err != nil {
|
||||
return nil, s.endp.wrapErr("", true, "AUTH", err)
|
||||
}
|
||||
|
||||
return s.endp.saslAuth.CreateSASL(mech, s.connState.RemoteAddr, func(identity string, data auth.ContextData) error {
|
||||
s.connState.AuthUser = identity
|
||||
s.connState.AuthPassword = data.Password
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue