Enable THREAD=ORDEREDSUBJECT and SORT extensions for go-imap-sql

Closes #252.
This commit is contained in:
fox.cpp 2020-07-27 16:43:53 +03:00
parent c2f309f51b
commit 665c443de6
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
4 changed files with 42 additions and 2 deletions

View file

@ -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)