Repoint repository references to new location
This commit is contained in:
parent
51d762ac5f
commit
b5fcf10c44
21 changed files with 37 additions and 37 deletions
|
@ -2,7 +2,7 @@ image: alpine/edge
|
|||
packages:
|
||||
- go
|
||||
sources:
|
||||
- https://git.sr.ht/~emersion/alps
|
||||
- https://git.sr.ht/~migadu/alps
|
||||
tasks:
|
||||
- build: |
|
||||
cd alps
|
||||
|
|
12
README.md
12
README.md
|
@ -1,7 +1,7 @@
|
|||
# [alps]
|
||||
|
||||
[![GoDoc](https://godoc.org/git.sr.ht/~emersion/alps?status.svg)](https://godoc.org/git.sr.ht/~emersion/alps)
|
||||
[![builds.sr.ht status](https://builds.sr.ht/~emersion/alps/commits.svg)](https://builds.sr.ht/~emersion/alps/commits?)
|
||||
[![GoDoc](https://godoc.org/git.sr.ht/~migadu/alps?status.svg)](https://godoc.org/git.sr.ht/~migadu/alps)
|
||||
[![builds.sr.ht status](https://builds.sr.ht/~migadu/alps/commits.svg)](https://builds.sr.ht/~migadu/alps/commits?)
|
||||
|
||||
A simple and extensible webmail.
|
||||
|
||||
|
@ -29,8 +29,8 @@ Send patches on the [mailing list], report bugs on the [issue tracker].
|
|||
|
||||
MIT
|
||||
|
||||
[alps]: https://sr.ht/~emersion/alps
|
||||
[alps]: https://sr.ht/~migadu/alps
|
||||
[RFC 6186]: https://tools.ietf.org/html/rfc6186
|
||||
[Go plugin helpers]: https://godoc.org/git.sr.ht/~emersion/alps#GoPlugin
|
||||
[mailing list]: https://lists.sr.ht/~emersion/alps-dev
|
||||
[issue tracker]: https://todo.sr.ht/~emersion/alps
|
||||
[Go plugin helpers]: https://godoc.org/git.sr.ht/~migadu/alps#GoPlugin
|
||||
[mailing list]: https://lists.sr.ht/~migadu/alps-dev
|
||||
[issue tracker]: https://todo.sr.ht/~migadu/alps
|
||||
|
|
|
@ -9,18 +9,18 @@ import (
|
|||
"syscall"
|
||||
"time"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/fernet/fernet-go"
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/labstack/echo/v4/middleware"
|
||||
"github.com/labstack/gommon/log"
|
||||
|
||||
_ "git.sr.ht/~emersion/alps/plugins/base"
|
||||
_ "git.sr.ht/~emersion/alps/plugins/caldav"
|
||||
_ "git.sr.ht/~emersion/alps/plugins/carddav"
|
||||
_ "git.sr.ht/~emersion/alps/plugins/lua"
|
||||
_ "git.sr.ht/~emersion/alps/plugins/viewhtml"
|
||||
_ "git.sr.ht/~emersion/alps/plugins/viewtext"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/base"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/caldav"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/carddav"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/lua"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/viewhtml"
|
||||
_ "git.sr.ht/~migadu/alps/plugins/viewtext"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module git.sr.ht/~emersion/alps
|
||||
module git.sr.ht/~migadu/alps
|
||||
|
||||
go 1.13
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package alpsbase
|
||||
|
||||
import (
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-imap"
|
||||
"github.com/emersion/go-message"
|
||||
"github.com/emersion/go-message/mail"
|
||||
|
|
|
@ -3,7 +3,7 @@ package alpsbase
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-message"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-webdav/caldav"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-ical"
|
||||
"github.com/emersion/go-webdav/caldav"
|
||||
"github.com/google/uuid"
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-webdav/carddav"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
"github.com/emersion/go-vcard"
|
||||
"github.com/emersion/go-webdav/carddav"
|
||||
)
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"path"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/emersion/go-vcard"
|
||||
"github.com/emersion/go-webdav/carddav"
|
||||
"github.com/google/uuid"
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"html/template"
|
||||
"path/filepath"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/yuin/gopher-lua"
|
||||
"layeh.com/gopher-luar"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package alpslua
|
||||
|
||||
import (
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"regexp"
|
||||
"strings"
|
||||
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
"github.com/aymerick/douceur/css"
|
||||
cssparser "github.com/chris-ramon/douceur/parser"
|
||||
"github.com/microcosm-cc/bluemonday"
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"io/ioutil"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
"github.com/emersion/go-message"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package alpsviewtext
|
||||
|
||||
import (
|
||||
"git.sr.ht/~emersion/alps"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"net/url"
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~emersion/alps"
|
||||
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
|
||||
"git.sr.ht/~migadu/alps"
|
||||
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
|
||||
"github.com/emersion/go-message"
|
||||
"gitlab.com/golang-commonmark/linkify"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue