self-hosted disposable email service (php) using catch-all and imap
Find a file
2019-03-06 22:30:45 +07:00
src removed unused bootstrap.min.css file 2019-03-06 22:30:45 +07:00
.gitignore simpler version without much js, just vanilla pure simple php (with some libs) 2018-01-09 00:23:36 +01:00
app.json Updates for Heroku (#68) 2018-09-20 13:44:41 -05:00
browserstack.png Link to browserstack 2017-10-12 12:02:34 +02:00
CHANGELOG.md fix #71 find config.php automatically in current and parent directori… (#74) 2018-12-25 22:45:10 -03:00
composer.json Updates for Heroku (#68) 2018-09-20 13:44:41 -05:00
composer.lock Bump fightbulc/moment from 1.26.10 to 1.29.0 (#78) 2019-02-03 12:05:05 -10:00
CONTRIBUTING.md License: GPL-3.0 2017-04-15 21:10:22 +02:00
LICENSE.txt License: GPL-3.0 2017-04-15 21:10:22 +02:00
README.md update demo url 2019-03-03 21:34:30 +07:00
screenshot_example.png new screenshot 2018-06-24 19:46:53 +02:00

disposable-mailbox

Join the chat at https://gitter.im/synox/disposable-mailbox

A self-hosted disposable mailbox service (aka trash mail) ☁️ ✉️

Demo: BhadooMail

Screenshot

Features

  • Anonymous usage, generate random email addresses.
  • New Mail notification. Download and delete your emails.
  • Display emails as text or html with sanitization filter.
  • Display emails based on one catch-all imap mailbox.
  • Only requires PHP >=7.2 and imap extension

Usage

Requirements

Before you start

Installation

Disposable-mailbox can be installed by copying the src directory to a webserver.

  1. assure the imap extension is installed. The following command should not print any errors:

     <?php print imap_base64("SU1BUCBleHRlbnNpb24gc2VlbXMgdG8gYmUgaW5zdGFsbGVkLiA="); ?>
    
  2. download a release or clone this repository

  3. copy the files in the src directory to your web server (not the whole repo!).

  4. rename config.sample.php to config.php and apply the imap settings. Move config.php to a safe location in a parent directory outside the public_html, so it is not reachable through the browser.

  5. open it in your browser, check your php error log for messages.

Build it yourself

The src directory contains all required files. If you want to update the php dependencies, you can update them yourself. You must have composer installed.

Install php dependecies:

composer update

Troubleshooting

  • IMAP Server has invalid certificate: You might have to add novalidate-cert to the IMAP settings. See flags on http://php.net/manual/en/function.imap-open.php.

  • Error 500, Internal error: Check your error log file. Add to config.php:

    ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);

Credit 👍

This could not be possible without...

BrowserStack

Supported by BrowserStack, which allows us to test projects online with any browser as a service. :-)