This is the main dovel repository, it has the Go code to run dovel SMTP server.
Author: b (git@mail.blmayer.dev)
Date: Mon Jul 17 12:33:21 2023 -0300
Parent: 8d16dbb
Updated module paths
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/cmd/dovel/backend.go b/cmd/dovel/backend.go index fdb0ea0..5b61426 100644 --- a/cmd/dovel/backend.go +++ b/cmd/dovel/backend.go @@ -7,7 +7,7 @@ import ( "net/mail" "strings" - "blmayer.dev/x/dovel/interfaces" + "git.derelict.garden/dovel/email/interfaces" "github.com/OfimaticSRL/parsemail" "github.com/emersion/go-smtp" )
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/cmd/dovel/main.go b/cmd/dovel/main.go index 38b1a29..ac366e6 100644 --- a/cmd/dovel/main.go +++ b/cmd/dovel/main.go @@ -9,10 +9,10 @@ import ( "html/template" "time" - "blmayer.dev/x/dovel/config" - "blmayer.dev/x/dovel/interfaces" - "blmayer.dev/x/dovel/interfaces/file" - "blmayer.dev/x/dovel/interfaces/gwi" + "git.derelict.garden/dovel/email/config" + "git.derelict.garden/dovel/email/interfaces" + "git.derelict.garden/dovel/email/interfaces/file" + "git.derelict.garden/dovel/email/interfaces/gwi" "blmayer.dev/x/vault"
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/cmd/dovel/web.go b/cmd/dovel/web.go index a1121aa..cc21460 100644 --- a/cmd/dovel/web.go +++ b/cmd/dovel/web.go @@ -9,7 +9,7 @@ import ( "path" "time" - "blmayer.dev/x/dovel/interfaces" + "git.derelict.garden/dovel/email/interfaces" "blmayer.dev/x/vault" )
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/doc.go b/doc.go index f565c23..91a9d7b 100644 --- a/doc.go +++ b/doc.go @@ -13,7 +13,7 @@ // The other part is the optional web interface that is used to visualize your // mail. // -// The structure of this config file is [blmayer.dev/x/dovel/config.Config]. See that doc for more +// The structure of this config file is [git.derelict.garden/dovel/email/config.Config]. See that doc for more // info. // // # The library @@ -36,7 +36,7 @@ // - 587: is also official by RFC, this port is used for TLS encrypted mail. // // The current recomendation in to use port 586. To configure this server see -// [blmayer.dev/x/dovel/config.Config]. +// [git.derelict.garden/dovel/email/config.Config]. // // The server itself only receives email, for this feature only the MX record // is enough. There are 2 handlers included in this project:
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/go.mod b/go.mod index abe3f0f..d217aa2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module blmayer.dev/x/dovel +module git.derelict.garden/dovel/email go 1.19
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/interfaces/file/file.go b/interfaces/file/file.go index bd959e0..579c275 100644 --- a/interfaces/file/file.go +++ b/interfaces/file/file.go @@ -19,9 +19,9 @@ import ( "strings" "time" - "blmayer.dev/x/dovel/config" - "blmayer.dev/x/dovel/interfaces" - "blmayer.dev/x/dovel/util/wkd" + "git.derelict.garden/dovel/email/config" + "git.derelict.garden/dovel/email/interfaces" + "git.derelict.garden/dovel/email/util/wkd" "blmayer.dev/x/vault"
commit e1cd59ffc8534eed95740b5a742dfb62fd209cb6 Author: b <git@mail.blmayer.dev> Date: Mon Jul 17 12:33:21 2023 -0300 Updated module paths diff --git a/interfaces/gwi/gwi.go b/interfaces/gwi/gwi.go index f92fcc1..b1dc3e8 100644 --- a/interfaces/gwi/gwi.go +++ b/interfaces/gwi/gwi.go @@ -19,8 +19,8 @@ import ( "strings" "time" - "blmayer.dev/x/dovel/config" - "blmayer.dev/x/dovel/interfaces" + "git.derelict.garden/dovel/email/config" + "git.derelict.garden/dovel/email/interfaces" "blmayer.dev/x/vault"