diff --git a/go.mod b/go.mod index fcd87ce..bdd0f05 100644 --- a/go.mod +++ b/go.mod @@ -20,6 +20,7 @@ require ( github.com/emersion/go-smtp v0.13.1-0.20200521085049-d143b3ef4b5e github.com/foxcpp/go-dovecot-sasl v0.0.0-20200522223722-c4699d7a24bf github.com/foxcpp/go-imap-i18nlevel v0.0.0-20200208001533-d6ec88553005 + github.com/foxcpp/go-imap-namespace v0.0.0-20200722130255-93092adf35f1 github.com/foxcpp/go-imap-sql v0.4.1-0.20200719153150-6551cd572c1c github.com/foxcpp/go-mockdns v0.0.0-20200531120619-ae750bbf9d73 github.com/foxcpp/go-mtasts v0.0.0-20191219193356-62bc3f1f74b8 diff --git a/go.sum b/go.sum index ea6b13e..dd74226 100644 --- a/go.sum +++ b/go.sum @@ -78,6 +78,8 @@ github.com/foxcpp/go-imap-backend-tests v0.0.0-20200616221226-85255dc9f40f/go.mo github.com/foxcpp/go-imap-backend-tests v0.0.0-20200617132817-958ea5829771/go.mod h1:yUISYv/uXLQ6tQZcds/p/hdcZ5JzrEUifyED2VffWpc= github.com/foxcpp/go-imap-i18nlevel v0.0.0-20200208001533-d6ec88553005 h1:pfoFtkTTQ473qStSN79jhCFBWqMQt/3DQ3NGuXvT+50= github.com/foxcpp/go-imap-i18nlevel v0.0.0-20200208001533-d6ec88553005/go.mod h1:34FwxnjC2N+EFs2wMtsHevrZLWRKRuVU8wEcHWKq/nE= +github.com/foxcpp/go-imap-namespace v0.0.0-20200722130255-93092adf35f1 h1:B4zNQ2r4qC7FLn8J8+LWt09fFW0tXddypBPS0+HI50s= +github.com/foxcpp/go-imap-namespace v0.0.0-20200722130255-93092adf35f1/go.mod h1:WJYkFIdxyljR/byiqcYMKUF4iFDej4CaIKe2JJrQxu8= github.com/foxcpp/go-imap-sql v0.4.1-0.20200616221550-090ab5cc9d2c h1:3wyt0bf0DRtGKqCbIUKRMOlUEC++3mNSdnT4SecvW0E= github.com/foxcpp/go-imap-sql v0.4.1-0.20200616221550-090ab5cc9d2c/go.mod h1:LfXhVsDbgYtxpiBcnNCeXFpNiNab+7Yq3UmpBr0lctU= github.com/foxcpp/go-imap-sql v0.4.1-0.20200717190338-17ce9f4538cb h1:DWbllOQ5R/cZSZxkCc0Ns5oLeyHwtDrVh9gRNbUPHXU= diff --git a/internal/endpoint/imap/imap.go b/internal/endpoint/imap/imap.go index b066251..6c978b3 100644 --- a/internal/endpoint/imap/imap.go +++ b/internal/endpoint/imap/imap.go @@ -21,6 +21,7 @@ import ( _ "github.com/emersion/go-message/charset" "github.com/emersion/go-sasl" i18nlevel "github.com/foxcpp/go-imap-i18nlevel" + namespace "github.com/foxcpp/go-imap-namespace" "github.com/foxcpp/go-imap-sql/children" "github.com/foxcpp/maddy/framework/config" modconfig "github.com/foxcpp/maddy/framework/config/module" @@ -254,6 +255,7 @@ func (endp *Endpoint) enableExtensions() error { endp.serv.Enable(compress.NewExtension()) endp.serv.Enable(unselect.NewExtension()) endp.serv.Enable(idle.NewExtension()) + endp.serv.Enable(namespace.NewExtension()) return nil }