mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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.
27 lines
840 B
Go
27 lines
840 B
Go
package module
|
|
|
|
import imapbackend "github.com/emersion/go-imap/backend"
|
|
|
|
// Storage interface is a slightly modified go-imap's Backend interface
|
|
// (authentication is removed).
|
|
type Storage interface {
|
|
// GetOrCreateIMAPAcct returns User associated with storage account specified by
|
|
// the name.
|
|
//
|
|
// If it doesn't exists - it should be created.
|
|
GetOrCreateIMAPAcct(username string) (imapbackend.User, error)
|
|
GetIMAPAcct(username string) (imapbackend.User, error)
|
|
|
|
// Extensions returns list of IMAP extensions supported by backend.
|
|
IMAPExtensions() []string
|
|
}
|
|
|
|
// ManageableStorage is an extended Storage interface that allows to
|
|
// list existing accounts, create and delete them.
|
|
type ManageableStorage interface {
|
|
Storage
|
|
|
|
ListAccts() ([]string, error)
|
|
CreateAcct(username string) error
|
|
DeleteAcct(username string) error
|
|
}
|