/maildump

fake smtp server with websocket

Primary LanguageJavaMIT LicenseMIT

maildump

Purpose

MailDump is a simply spring boot application whose goal is to simulate a SMTP server. You can see instantly the new emails in a web interface thanks to WebSocket.

Usage

  • First step, you have to generate the Dockerfile and install it in your Docker instance.
$ mvn package docker:build -DpushImage
  • After that, you can simply run the image in a new container.
$ docker run -p 8080:8080 -p 25:25 -t dopse/maildump
  • Now, you can go to the page localhost:8080 and see the emails when an email is sent to the port 25 of your local machine.