Open Trashmail

Open Trashmail

![](https://img.shields.io/badge/php-7%2B-brightgreen.svg) ![](https://img.shields.io/badge/python-2.7%2B-brightgreen.svg) ![](https://img.shields.io/badge/made%20with-htmx-brightgreen.svg) [![](https://img.shields.io/docker/pulls/hascheksolutions/opentrashmail?color=brightgreen)](https://hub.docker.com/r/hascheksolutions/opentrashmail) [![](https://github.com/hascheksolutions/opentrashmail/actions/workflows/build-docker.yml/badge.svg?color=brightgreen)](https://github.com/HaschekSolutions/opentrashmail/actions) [![Apache License](https://img.shields.io/badge/license-Apache-blue.svg?style=flat)](https://github.com/HaschekSolutions/opentrashmail/blob/master/LICENSE) [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FHaschekSolutions%2Fopentrashmail&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com) [![](https://img.shields.io/github/stars/HaschekSolutions/opentrashmail.svg?label=Stars&style=social)](https://github.com/HaschekSolutions/opentrashmail) #### Selfhosted `trashmail` solution - Receive Emails via `Web UI`, `JSON API` and `RSS feed`
![Screenshot of Open Trashmail](https://pictshare.net/9tim7k.png) # [Changelog](/CHANGELOG.md) # Features - Python-powered mail server that works out of the box for any domain you throw at it - RSS feed for every email address - JSON API for integrating it in your own projects. Can be used to automate 2fa emails - Handles attachments - Web interface to manage emails - Generates random email addresses - 100% file based, no database needed - Can be used as Email Honeypot # General API calls and functions | Endpoint | Explanation | Example output | |----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| | /rss/`[email-address]` | Renders RSS XML for rss clients to render emails | [![](https://pictshare.net/ysu5qp.png)](https://pictshare.net/ysu5qp.png) | | /api/raw/`[email-address]/[id]` | Returns the raw email of the address. Warning: Output can be as large as the email itself so might be up to 20mb for mails with large attachments | [![](https://pictshare.net/pkb49p.png)](https://pictshare.net/pkb49p.png) | | /api/attachment`[email-address]/[attachment-id]` | Returns the attachment with the correct mime type as header | | | /api/delete/`[email-address]/[id]` | Deletes a specific email message and their attachments | | | /api/deleteaccount/`[email-address]`| Deletes all messages and attachments of this email account | | # JSON API | Endpoint | Explanation | Example output | |----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| | /json/`[email-address]` | Returns an array of received emails with links to the attachments and the parsed text based body of the email. If `ADMIN` email is entered, will return all emails of all accounts | [![](https://pictshare.net/100x100/sflw6t.png)](https://pictshare.net/sflw6t.png) | | /json/`[email-address]/[id]` | To see all the data of a received email, take the ID from the previous call and poll this to get the raw and HTML body of the email. Can be huge since the body can contain all attachments in base64 | [![](https://pictshare.net/100x100/eltku4.png)](https://pictshare.net/eltku4.png) | | /json/listaccounts | If `SHOW_ACCOUNT_LIST` is set to true in the config.ini, this endpoint will return an array of all email addresses which have received at least one email | [![](https://pictshare.net/100x100/u6agji.png)](https://pictshare.net/u6agji.png) | # Configuration Just edit the `config.ini` You can use the following settings - `URL` -> The url under which the GUI will be hosted. No tailing slash! example: https://trashmail.mydomain.eu - `DOMAINS` -> Comma separated list of domains this mail server will be receiving emails on. It's just so the web interface can generate random addresses - `MAILPORT`-> The port the Python-powered SMTP server will listen on. `Default: 25` - `ADMIN` -> An email address (doesn't have to exist, just has to be valid) that will list all emails of all addresses the server has received. Kind of a catch-all - `DATEFORMAT` -> How should timestamps be shown on the web interface ([moment.js syntax](https://momentjs.com/docs/#/displaying/)) # Roadmap - [x] Mail server - [x] Storing received mails in JSON - [x] Storing file attachments - [x] Docker files and configs - [ ] Web interface - [x] Choose email - [x] Get random email address - [x] Download attachments safely - [x] Display Text/HTML - [x] API so all features from the site can also be automated and integrated - [x] Automatically check for new emails while on site - [x] Admin overview for all available email addresses - [x] Option to show raw email - [x] Delete messages - [x] Make better theme - [x] Secure HTML, so no malicious things can be loaded - [ ] Display embedded images inline using Content-ID - [ ] Configurable settings - [x] Choose domains for random generation - [x] Choose if out-of-scope emails are discarded - [x] Automated cleanup of old mails - [ ] Honeypot mode where all emails are also saved for a catchall account - [ ] Optionally secure whole site with a password - [ ] Optionally allow site to be seen only from specific IP Range # Quick start ## Set the MX Records In your DNS panel create a MX record for your domain pointing to the IP of the server hosting OpenTrashmail. The following example will allow you to send emails to example.com ```zonefile mail.example.com. IN A 93.184.216.34 example.com. 14400 IN MX 10 mail.example.com. ``` This advanced example will allow you to use a wildcard domain: ```zonefile mail.example.com. IN A 93.184.216.34 *.example.com. 14400 IN MX 10 mail.example.com. ``` This in combination with the configuration option "DOMAINS" (eg docker parameter `-e DOMAINS="*.example.com"`) will allow you to use any address with any subdomain of example.com (eg test@robot.example.com, john@lynn.example.com, etc..) ## Running in docker (preferred) Simple start with no persistence ```bash docker run -it -p 25:25 -p 80:80 -e URL="https://localhost:80" hascheksolutions/opentrashmail:1 ``` Saving data directory on host machine ```bash docker run -p 80:80 -p 25:25 -e URL="https://localhost:80" -v /path/on/host/where/to/save/data:/var/www/opentrashmail/data hascheksolutions/opentrashmail:1 ``` Complete example with running as daemon, persistence, a domain for auto-generation of emails, acceptng only emails for configured domains, cleanup for mails older than 90 days and auto restart ```bash docker run -d --restart=unless-stopped --name opentrashmail -e "DOMAINS=mydomain.eu" -e "DATEFORMAT='D.M.YYYY HH:mm'" -e "DISCARD_UNKNOWN=false" -e "DELETE_OLDER_THAN_DAYS=90" -p 80:80 -p 25:25 -v /path/on/host/where/to/save/data:/var/www/opentrashmail/data hascheksolutions/opentrashmail:1 ``` # How it works The heart of Open Trashmail is a **Python-powered SMTP server** that listens on incoming emails and stores them as JSON files. The server doesn't have to know the right email domain, it will just **catch everything** it receives. You only have to **expose port 25 to the web** and set an **MX record** of your domain pointing to the IP address of your machine. # Configuration In Docker you can use the following environment variables: | ENV var | What it does | Example values | | --------|--------------|----------| | DISCARD_UNKNOWN | Tells the Mailserver to wether or not delete emails that are addressed to domains that are not configured | true, false | | DOMAINS | The whitelisted Domains the server will listen for. If DISCARD_UNKNOWN is set to false, this will only be used to generate random emails in the webinterface | | URL | The URL of the web interface. Used by the API and RSS feed | http://localhost:8080 | | SHOW_ACCOUNT_LIST | If set to `true`, all accounts that have previously received emails can be listed via API or webinterface | true,false | | ADMIN | If set to a valid email address and this address is entered in the API or webinterface, will show all emails of all accounts. Kind-of catch-all | test@test.com | DATEFORMAT | Will format the received date in the web interface based on [moment.js](https://momentjs.com/) syntax | "MMMM Do YYYY, h:mm:ss a" |