Sign inSign up

eaudeweb/mailtrap

By eaudeweb

Updated 10 months ago

Mail Trap

Image
14

500K+

eaudeweb/mailtrap repository overview

Mailtrap Docker Image

Catch all mail and display it in roundcube interface.

Usage

Start Mailtrap

$ docker run -d --name=mailtrap -p 80:80 eaudeweb/mailtrap

Send email

$ docker run -it --link mailtrap alpine:3.6 sh

  $ telnet mailtrap 25
  ehlo example.com
  mail from: [email protected]
  rcpt to: [email protected]
  data
  Subject: Hello from me
  Hello You,

  This is a test.

  Cheers,
  Me
  .
  quit

See email via Mailtrap Web UI:

Default login:

  • Username: mailtrap
  • Password: mailtrap

Customisations:

Set environment variables

  • MT_USER - mailbox user, default mailtrap
  • MT_PASSWD - mailbox user password, default mailtrap
  • MT_MAILBOX_LIMIT - mailbox limit in bytes, default 51200000
  • MT_MESSAGE_LIMIT - message limit in bytes, default 10240000

and recreate the container.

Testing the image locally

sudo docker build -t eaudeweb/mailtrap:test .
sudo docker-compose up

Tag summary

Content type

Image

Digest

sha256:7f97aaf94

Size

108.4 MB

Last updated

10 months ago

docker pull eaudeweb/mailtrap