mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
Update github URLs
This commit is contained in:
parent
ac84efffe4
commit
1785b3db7f
3 changed files with 11 additions and 11 deletions
2
BUILD.md
2
BUILD.md
|
@ -4,7 +4,7 @@ Building MailHog
|
|||
MailHog is built using `make`, and using [this Makefile](Makefile).
|
||||
|
||||
If you aren't making any code changes, you can install MailHog using
|
||||
`go get github.com/ian-kent/Go-MailHog`, since [assets.go](MailHog-UI/assets/assets.go)
|
||||
`go get github.com/mailhog/MailHog`, since [assets.go](MailHog-UI/assets/assets.go)
|
||||
is already pre-compiled and committed to this repository.
|
||||
|
||||
### Why do I need a Makefile?
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Go-MailHog [ ![Download](https://api.bintray.com/packages/ian-kent/generic/Go-MailHog/images/download.svg) ](https://bintray.com/ian-kent/generic/Go-MailHog/_latestVersion) [![GoDoc](https://godoc.org/github.com/ian-kent/Go-MailHog?status.svg)](https://godoc.org/github.com/ian-kent/Go-MailHog) [![Build Status](https://travis-ci.org/ian-kent/Go-MailHog.svg?branch=master)](https://travis-ci.org/ian-kent/Go-MailHog)
|
||||
Go-MailHog [ ![Download](https://api.bintray.com/packages/ian-kent/generic/Go-MailHog/images/download.svg) ](https://bintray.com/ian-kent/generic/Go-MailHog/_latestVersion) [![GoDoc](https://godoc.org/github.com/mailhog/MailHog?status.svg)](https://godoc.org/github.com/mailhog/MailHog) [![Build Status](https://travis-ci.org/ian-kent/Go-MailHog.svg?branch=master)](https://travis-ci.org/ian-kent/Go-MailHog)
|
||||
=========
|
||||
|
||||
Inspired by [MailCatcher](http://mailcatcher.me/), easier to install.
|
||||
|
@ -44,7 +44,7 @@ Go was chosen for portability - MailHog runs without installation on multiple pl
|
|||
|
||||
### Contributing
|
||||
|
||||
Clone this repository to ```$GOPATH/src/github.com/ian-kent/Go-MailHog``` and type ```make deps```.
|
||||
Clone this repository to ```$GOPATH/src/github.com/mailhog/MailHog``` and type ```make deps```.
|
||||
|
||||
See the [Building MailHog](BUILD.md) guide.
|
||||
|
||||
|
|
16
RELEASES.md
16
RELEASES.md
|
@ -1,7 +1,7 @@
|
|||
Go-MailHog Releases
|
||||
===================
|
||||
|
||||
### [v0.08](https://github.com/ian-kent/Go-MailHog/releases/0.08)
|
||||
### [v0.08](https://github.com/mailhog/MailHog/releases/0.08)
|
||||
|
||||
- Extract SMTP protocol into isolated library
|
||||
- Better protocol tests
|
||||
|
@ -13,19 +13,19 @@ Go-MailHog Releases
|
|||
- Fix #16 - add deployment documentation
|
||||
- Fix #18 - better server-sent event support using [goose](https://github.com/ian-kent/goose)
|
||||
|
||||
### [v0.07](https://github.com/ian-kent/Go-MailHog/releases/tag/0.07)
|
||||
### [v0.07](https://github.com/mailhog/MailHog/releases/tag/0.07)
|
||||
|
||||
- Fix #6 - Make SMTP verbs case-insensitive
|
||||
|
||||
### [v0.06](https://github.com/ian-kent/Go-MailHog/releases/tag/0.06)
|
||||
### [v0.06](https://github.com/mailhog/MailHog/releases/tag/0.06)
|
||||
|
||||
- Fix #5 - Support leading tab in multiline headers
|
||||
|
||||
### [v0.05](https://github.com/ian-kent/Go-MailHog/releases/tag/0.05)
|
||||
### [v0.05](https://github.com/mailhog/MailHog/releases/tag/0.05)
|
||||
|
||||
- Add #4 - UI support for RFC2047 encoded headers
|
||||
|
||||
### [v0.04](https://github.com/ian-kent/Go-MailHog/releases/tag/0.04)
|
||||
### [v0.04](https://github.com/mailhog/MailHog/releases/tag/0.04)
|
||||
|
||||
* Configure from environment
|
||||
* Include example Dockerfile
|
||||
|
@ -34,7 +34,7 @@ Go-MailHog Releases
|
|||
* Fix #3 - incorrect handling of RSET
|
||||
|
||||
|
||||
### [v0.03](https://github.com/ian-kent/Go-MailHog/releases/tag/0.03)
|
||||
### [v0.03](https://github.com/mailhog/MailHog/releases/tag/0.03)
|
||||
|
||||
* Download message in .eml format
|
||||
* Cleaned up v1 API
|
||||
|
@ -48,7 +48,7 @@ Go-MailHog Releases
|
|||
* Release messages to real SMTP servers
|
||||
* Switch to [go-bindata](https://github.com/jteeuwen/go-bindata) for asset embedding
|
||||
|
||||
### [v0.02](https://github.com/ian-kent/Go-MailHog/releases/tag/0.02)
|
||||
### [v0.02](https://github.com/mailhog/MailHog/releases/tag/0.02)
|
||||
|
||||
* Better support for ESMTP (RFC5321)
|
||||
* Support for SMTP AUTH (RFC4954) and PIPELINING (RFC2920)
|
||||
|
@ -58,7 +58,7 @@ Go-MailHog Releases
|
|||
* In-memory message storage
|
||||
* MongoDB storage for message persistence
|
||||
|
||||
### [v0.01](https://github.com/ian-kent/Go-MailHog/releases/tag/0.01)
|
||||
### [v0.01](https://github.com/mailhog/MailHog/releases/tag/0.01)
|
||||
|
||||
* Basic support for SMTP and HTTP servers
|
||||
* Accepts SMTP messages
|
||||
|
|
Loading…
Reference in a new issue