mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +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
|
@ -31,6 +31,7 @@ import (
|
|||
compress "github.com/emersion/go-imap-compress"
|
||||
idle "github.com/emersion/go-imap-idle"
|
||||
move "github.com/emersion/go-imap-move"
|
||||
sortthread "github.com/emersion/go-imap-sortthread"
|
||||
specialuse "github.com/emersion/go-imap-specialuse"
|
||||
unselect "github.com/emersion/go-imap-unselect"
|
||||
imapbackend "github.com/emersion/go-imap/backend"
|
||||
|
@ -267,6 +268,11 @@ func (endp *Endpoint) enableExtensions() error {
|
|||
endp.serv.Enable(specialuse.NewExtension())
|
||||
case "I18NLEVEL=1", "I18NLEVEL=2":
|
||||
endp.serv.Enable(i18nlevel.NewExtension())
|
||||
case "SORT":
|
||||
endp.serv.Enable(sortthread.NewSortExtension())
|
||||
}
|
||||
if strings.HasPrefix(ext, "THREAD") {
|
||||
endp.serv.Enable(sortthread.NewThreadExtension())
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -278,6 +284,15 @@ func (endp *Endpoint) enableExtensions() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (endp *Endpoint) SupportedThreadAlgorithms() []sortthread.ThreadAlgorithm {
|
||||
be, ok := endp.Store.(sortthread.ThreadBackend)
|
||||
if !ok {
|
||||
return nil
|
||||
}
|
||||
|
||||
return be.SupportedThreadAlgorithms()
|
||||
}
|
||||
|
||||
func init() {
|
||||
module.RegisterEndpoint("imap", New)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue