https://github.com/mailhog/MailHog
Web and API based SMTP testing
https://github.com/mailhog/MailHog
Last synced: about 2 months ago
JSON representation
Web and API based SMTP testing
- Host: GitHub
- URL: https://github.com/mailhog/MailHog
- Owner: mailhog
- License: mit
- Created: 2014-04-16T22:28:49.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-02-13T18:38:41.000Z (about 1 year ago)
- Last Synced: 2024-10-14T20:26:10.093Z (7 months ago)
- Language: Go
- Homepage:
- Size: 2.84 MB
- Stars: 13,970
- Watchers: 153
- Forks: 1,060
- Open Issues: 249
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-go - MailHog - Email and SMTP testing with web and API interface. (Email / Search and Analytic Databases)
- awesome-starred-test - mailhog/MailHog - Web and API based SMTP testing (Go)
- awesome-list - Mailhog
- go-awesome - MailHog - SMTP testing tool based on web and API (Open source library / Post Office)
- open-production-web-projects - MailHog - Web and API based SMTP testing (Go / AWS Amplify)
- awesome-opensource-email - MailHog - Web and API based SMTP testing - `MIT`, `Go` (Sending / SMTP Testing)
- awesome-go - MailHog - Web and API based SMTP testing - ★ 4026 (Email)
- awesome-hacking-lists - mailhog/MailHog - Web and API based SMTP testing (Go)
- awesome-go-extra - MailHog - 04-16T22:28:49Z|2022-08-03T20:12:09Z| (Email / Advanced Console UIs)
- awesome-go - MailHog - Email and SMTP testing with web and API interface. Stars:`14.7K`. (Email / Search and Analytic Databases)
- awesome-starred - mailhog/MailHog - Web and API based SMTP testing (others)
- awesome-homelab - MailHog
- stars - mailhog/MailHog - Web and API based SMTP testing (Go)
- stars - mailhog/MailHog - Web and API based SMTP testing (Go)
- awesome-go - MailHog
README
MailHog [  ](https://github.com/mailhog/MailHog/releases/tag/v1.0.0) [](https://godoc.org/github.com/mailhog/MailHog) [](https://travis-ci.org/mailhog/MailHog)
=========Inspired by [MailCatcher](https://mailcatcher.me/), easier to install.
* Download and run MailHog
* Configure your outgoing SMTP server
* View your outgoing email in a web UI
* Release it to a real mail serverBuilt with Go - MailHog runs without installation on multiple platforms.
### Overview
MailHog is an email testing tool for developers:
* Configure your application to use MailHog for SMTP delivery
* View messages in the web UI, or retrieve them with the JSON API
* Optionally release messages to real SMTP servers for delivery### Installation
#### Manual installation
[Download the latest release for your platform](/docs/RELEASES.md). Then
[read the deployment guide](/docs/DEPLOY.md) for deployment options.#### MacOS
```bash
brew update && brew install mailhog
```Then, start MailHog by running `mailhog` in the command line.
#### Debian / Ubuntu Go < v1.18
```bash
sudo apt-get -y install golang-go
go get github.com/mailhog/MailHog
```#### Go >= v1.17 (Debian Bookworm)
```bash
sudo apt-get -y install golang-go
go install github.com/mailhog/MailHog@latest
```Then, start MailHog by running `/path/to/MailHog` in the command line.
E.g. the path to Go's bin files on Ubuntu is `~/go/bin/`, so to start the MailHog run:
```bash
~/go/bin/MailHog
```#### FreeBSD
```bash
pkg install mailhog
sysrc mailhog_enable="YES"
service mailhog start
```#### Docker
[Run it from Docker Hub](https://registry.hub.docker.com/r/mailhog/mailhog/) or using the provided [Dockerfile](Dockerfile)### Configuration
Check out how to [configure MailHog](/docs/CONFIG.md), or use the default settings:
* the SMTP server starts on port 1025
* the HTTP server starts on port 8025
* in-memory message storage### Features
See [MailHog libraries](docs/LIBRARIES.md) for a list of MailHog client libraries.
* ESMTP server implementing RFC5321
* Support for SMTP AUTH (RFC4954) and PIPELINING (RFC2920)
* Web interface to view messages (plain text, HTML or source)
* Supports RFC2047 encoded headers
* Real-time updates using EventSource
* Release messages to real SMTP servers
* Chaos Monkey for failure testing
* See [Introduction to Jim](/docs/JIM.md) for more information
* HTTP API to list, retrieve and delete messages
* See [APIv1](/docs/APIv1.md) and [APIv2](/docs/APIv2.md) documentation for more information
* [HTTP basic authentication](docs/Auth.md) for MailHog UI and API
* Multipart MIME support
* Download individual MIME parts
* In-memory message storage
* MongoDB and file based storage for message persistence
* Lightweight and portable
* No installation required#### sendmail
[mhsendmail](https://github.com/mailhog/mhsendmail) is a sendmail replacement for MailHog.
It redirects mail to MailHog using SMTP.
You can also use `MailHog sendmail ...` instead of the separate mhsendmail binary.
Alternatively, you can use your native `sendmail` command by providing `-S`, for example:
```bash
/usr/sbin/sendmail -S mail:1025
```For example, in PHP you could add either of these lines to `php.ini`:
```
sendmail_path = /usr/local/bin/mhsendmail
sendmail_path = /usr/sbin/sendmail -S mail:1025
```#### Web UI

### Contributing
MailHog is a rewritten version of [MailHog](https://github.com/ian-kent/MailHog), which was born out of [M3MTA](https://github.com/ian-kent/M3MTA).
Clone this repository to ```$GOPATH/src/github.com/mailhog/MailHog``` and type ```make deps```.
See the [Building MailHog](/docs/BUILD.md) guide.
Requires Go 1.4+ to build.
Run tests using ```make test``` or ```goconvey```.
If you make any changes, run ```go fmt ./...``` before submitting a pull request.
### Licence
Copyright © 2014 - 2017, Ian Kent (http://iankent.uk)
Released under MIT license, see [LICENSE](LICENSE.md) for details.