mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07: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
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
|
||||
appendlimit "github.com/emersion/go-imap-appendlimit"
|
||||
"github.com/foxcpp/maddy/internal/module"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
@ -20,19 +21,19 @@ type AppendLimitUser interface {
|
|||
SetMessageLimit(val *uint32) error
|
||||
}
|
||||
|
||||
func usersAppendlimit(be Storage, ctx *cli.Context) error {
|
||||
func imapAcctAppendlimit(be module.Storage, ctx *cli.Context) error {
|
||||
username := ctx.Args().First()
|
||||
if username == "" {
|
||||
return errors.New("Error: USERNAME is required")
|
||||
}
|
||||
|
||||
u, err := be.GetUser(username)
|
||||
u, err := be.GetIMAPAcct(username)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
userAL, ok := u.(AppendLimitUser)
|
||||
if !ok {
|
||||
return errors.New("Error: Storage does not support per-user append limit")
|
||||
return errors.New("Error: module.Storage does not support per-user append limit")
|
||||
}
|
||||
|
||||
if ctx.IsSet("value") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue