mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
1. There is only one version for maddy and imapsql-ctl utility. This prevents confusion about compatibility. 2. Modified imapsql-ctl understands maddy config format, this allows it to read needed values from it without the need for lengthy commmand line arguments. Closes #148.
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
package main
|
|
|
|
import appendlimit "github.com/emersion/go-imap-appendlimit"
|
|
|
|
// Copied from go-imap-backend-tests.
|
|
|
|
// AppendLimitBackend is extension for main backend interface (backend.Backend) which
|
|
// allows to set append limit value for testing and administration purposes.
|
|
type AppendLimitBackend interface {
|
|
appendlimit.Backend
|
|
|
|
// SetMessageLimit sets new value for limit.
|
|
// nil pointer means no limit.
|
|
SetMessageLimit(val *uint32) error
|
|
}
|
|
|
|
// AppendLimitUser is extension for backend.User interface which allows to
|
|
// set append limit value for testing and administration purposes.
|
|
type AppendLimitUser interface {
|
|
appendlimit.User
|
|
|
|
// SetMessageLimit sets new value for limit.
|
|
// nil pointer means no limit.
|
|
SetMessageLimit(val *uint32) error
|
|
}
|
|
|
|
// AppendLimitMbox is extension for backend.Mailbox interface which allows to
|
|
// set append limit value for testing and administration purposes.
|
|
type AppendLimitMbox interface {
|
|
CreateMessageLimit() *uint32
|
|
|
|
// SetMessageLimit sets new value for limit.
|
|
// nil pointer means no limit.
|
|
SetMessageLimit(val *uint32) error
|
|
}
|