mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +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
|
@ -32,7 +32,7 @@ type Endpoint struct {
|
|||
addrs []string
|
||||
serv *imapserver.Server
|
||||
listeners []net.Listener
|
||||
Auth module.AuthProvider
|
||||
Auth module.PlainAuth
|
||||
Store module.Storage
|
||||
|
||||
updater imapbackend.BackendUpdater
|
||||
|
@ -184,11 +184,14 @@ func (endp *Endpoint) Close() error {
|
|||
}
|
||||
|
||||
func (endp *Endpoint) Login(connInfo *imap.ConnInfo, username, password string) (imapbackend.User, error) {
|
||||
if !endp.Auth.CheckPlain(username, password) {
|
||||
endp.Log.Msg("authentication failed", "username", username, "src_ip", connInfo.RemoteAddr)
|
||||
_, err := endp.Auth.AuthPlain(username, password)
|
||||
if err != nil {
|
||||
endp.Log.Error("authentication failed", err, "username", username, "src_ip", connInfo.RemoteAddr)
|
||||
return nil, imapbackend.ErrInvalidCredentials
|
||||
}
|
||||
|
||||
// TODO: Wrap GetOrCreateUser and possibly implement INBOXES extension
|
||||
// (though it is draft 00 for quite some time so it likely has no future).
|
||||
return endp.Store.GetOrCreateUser(username)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue