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.
14 lines
303 B
Go
14 lines
303 B
Go
package module
|
|
|
|
// Tabele is the interface implemented by module that implementation string-to-string
|
|
// translation.
|
|
type Table interface {
|
|
Lookup(s string) (string, bool, error)
|
|
}
|
|
|
|
type MutableTable interface {
|
|
Table
|
|
Keys() ([]string, error)
|
|
RemoveKey(k string) error
|
|
SetKey(k, v string) error
|
|
}
|