endpoint/smtp: Drop duplicate RunEarlyChecks call

This commit is contained in:
fox.cpp 2025-01-28 23:35:08 +03:00
parent c48332a940
commit b3ebe4b81e
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -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