self-hosted disposable email service (php) using catch-all and imap
Go to file
Aravindo Wingeier 58e8a1a317
Update README.md
2021-03-27 21:44:17 +01:00
docs move images to docs/ 2019-03-11 19:58:28 +07:00
src fix #62 2019-03-11 21:34:54 +07:00
.gitignore ignore .php_cs.cache 2019-03-11 20:31:39 +07:00
.php_cs.dist fixed config 2019-03-11 19:45:22 +07:00
CHANGELOG.md Feature/removed router (#83) 2019-03-11 01:09:24 +07:00
CONTRIBUTING.md update standards 2019-03-11 19:43:20 +07:00
LICENSE.txt License: GPL-3.0 2017-04-15 21:10:22 +02:00
README.md Update README.md 2021-03-27 21:44:17 +01:00
app.json Updates for Heroku (#68) 2018-09-20 13:44:41 -05:00
composer.json renamed backend-libs to vendor 2019-03-11 19:58:03 +07:00
composer.lock Bump php-imap/php-imap from 3.0.28 to 3.0.30 (#113) 2019-10-13 19:23:39 +02:00

README.md

disposable-mailbox

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

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

PHP is not your thing? You should try the more efficient NodeJs version: https://github.com/synox/void-mail


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);

Testing on MacOs

  • brew install php
  • brew tap kabel/php-ext
  • brew install kabel/php-ext/php-imap
  • php -S localhost:8000 -t src

Credit 👍

This could not be possible without...