mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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:
parent
8f1d57293c
commit
a45c7090c4
11 changed files with 72 additions and 65 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue