From 392100ae7640e82482b479261a49c742f4dac50c Mon Sep 17 00:00:00 2001 From: Ian Kent Date: Mon, 28 Apr 2014 01:52:15 +0100 Subject: [PATCH] Add releases summary --- README.md | 2 +- RELEASES.md | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 RELEASES.md diff --git a/README.md b/README.md index a70d0a2..e73cd59 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Go was chosen for portability - MailHog runs without installation on multiple pl ### Getting started -* Download the latest release of Go-MailHog for your platform +* [Download the latest release](RELEASES.md) of Go-MailHog for your platform * Start MailHog By default, the SMTP server will start on port 1025, the HTTP server will start diff --git a/RELEASES.md b/RELEASES.md new file mode 100644 index 0000000..751b756 --- /dev/null +++ b/RELEASES.md @@ -0,0 +1,34 @@ +Go-MailHog Releases +=================== + +### [v0.03](https://github.com/ian-kent/Go-MailHog/releases/tag/0.03) + +* Download message in .eml format +* Cleaned up v1 API +* Web UI and API improvements + * Fixed UI rendering bugs + * Message search and matched/total message count + * Message list resizing and scrolling + * EventSource support for message streaming + * Better error handling and reporting + * View/download individual MIME parts + * 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) + +* Better support for ESMTP (RFC5321) +* Support for SMTP AUTH (RFC4954) and PIPELINING (RFC2920) +* Improved AJAX web interface to view messages (plain text, HTML or source) +* Improved HTTP API to list, retrieve and delete messages +* Multipart MIME support +* In-memory message storage +* MongoDB storage for message persistence + +### [v0.01](https://github.com/ian-kent/Go-MailHog/releases/tag/0.01) + +* Basic support for SMTP and HTTP servers +* Accepts SMTP messages +* Stores parsed messages in MongoDB +* Makes messages available via API +* has Bootstrap/AngularJS UI for viewing/deleting messages