mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
Enable THREAD=ORDEREDSUBJECT and SORT extensions for go-imap-sql
Closes #252.
This commit is contained in:
parent
c2f309f51b
commit
665c443de6
4 changed files with 42 additions and 2 deletions
|
@ -37,6 +37,8 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/emersion/go-imap"
|
||||
sortthread "github.com/emersion/go-imap-sortthread"
|
||||
specialuse "github.com/emersion/go-imap-specialuse"
|
||||
"github.com/emersion/go-imap/backend"
|
||||
"github.com/emersion/go-message/textproto"
|
||||
|
@ -417,7 +419,7 @@ func (store *Storage) I18NLevel() int {
|
|||
}
|
||||
|
||||
func (store *Storage) IMAPExtensions() []string {
|
||||
return []string{"APPENDLIMIT", "MOVE", "CHILDREN", "SPECIAL-USE", "I18NLEVEL=1"}
|
||||
return []string{"APPENDLIMIT", "MOVE", "CHILDREN", "SPECIAL-USE", "I18NLEVEL=1", "SORT", "THREAD=ORDEREDSUBJECT"}
|
||||
}
|
||||
|
||||
func (store *Storage) CreateMessageLimit() *uint32 {
|
||||
|
@ -509,6 +511,14 @@ func (store *Storage) Close() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (store *Storage) Login(_ *imap.ConnInfo, usenrame, password string) (backend.User, error) {
|
||||
panic("This method should not be called and is added only to satisfy backend.Backend interface")
|
||||
}
|
||||
|
||||
func (store *Storage) SupportedThreadAlgorithms() []sortthread.ThreadAlgorithm {
|
||||
return []sortthread.ThreadAlgorithm{sortthread.OrderedSubject}
|
||||
}
|
||||
|
||||
func init() {
|
||||
module.RegisterDeprecated("imapsql", "storage.imapsql", New)
|
||||
module.Register("storage.imapsql", New)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue