Improve auth. provider interface

The authentication provider can now provide multiple authorization
identities associated with credentials. Protocols that support that
(e.g. JMAP, SASL) can let the client select the wanted identity.
This commit is contained in:
fox.cpp 2020-02-27 01:22:47 +03:00
parent 8f1d57293c
commit a45c7090c4
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
11 changed files with 72 additions and 65 deletions

View file

@ -519,7 +519,7 @@ func (endp *Endpoint) wrapErr(msgId string, mangleUTF8 bool, err error) error {
type Endpoint struct {
hostname string
Auth module.AuthProvider
Auth module.PlainAuth
serv *smtp.Server
name string
addrs []string
@ -803,11 +803,14 @@ func (endp *Endpoint) Login(state *smtp.ConnectionState, username, password stri
return nil, endp.wrapErr("", true, err)
}
if !endp.Auth.CheckPlain(username, password) {
endp.Log.Msg("authentication failed", "username", username, "src_ip", state.RemoteAddr)
_, err := endp.Auth.AuthPlain(username, password)
if err != nil {
// TODO: Update fail2ban filters.
endp.Log.Error("authentication failed", err, "username", username, "src_ip", state.RemoteAddr)
return nil, errors.New("Invalid credentials")
}
// TODO: Pass valid identifies to SMTP pipeline.
return endp.newSession(false, username, password, state), nil
}