mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Fully separate authentication from IMAP access
Now imapsql module does not handle authentication. (it was not doing it so well anyway) sql_table module was introduced and used in the default configuration as a replacement for functionality that was implemented by imapsql before. Parts of maddyctl code were rewritten to make it work transparently with any IMAP backend or credentials store. Closes #212.
This commit is contained in:
parent
609a8fd235
commit
e19d21dfcb
29 changed files with 867 additions and 473 deletions
|
@ -201,7 +201,7 @@ func (endp *Endpoint) Close() error {
|
|||
}
|
||||
|
||||
func (endp *Endpoint) openAccount(c imapserver.Conn, identity string) error {
|
||||
u, err := endp.Store.GetOrCreateUser(identity)
|
||||
u, err := endp.Store.GetOrCreateIMAPAcct(identity)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -218,7 +218,7 @@ func (endp *Endpoint) Login(connInfo *imap.ConnInfo, username, password string)
|
|||
return nil, imapbackend.ErrInvalidCredentials
|
||||
}
|
||||
|
||||
return endp.Store.GetOrCreateUser(username)
|
||||
return endp.Store.GetOrCreateIMAPAcct(username)
|
||||
}
|
||||
|
||||
func (endp *Endpoint) EnableChildrenExt() bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue