Skip to content

pixelmotor/disposable-mailbox

 
 

Repository files navigation

A self-hosted disposable temporary mailbox service using php, catch-all email and imap.

Forked From: https://github.com/synox/disposable-mailbox

I made some minor modifications and use it as live production at the following website:

Live & Demo: Joyabo (www.joyabo.com)

Joyabo is a project of Wufuquan

Screenshot

Features

  • Anonymous usage.
  • Generate random email addresses or specify your own.
  • Download your emails.
  • Display emails as text 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.

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...

Others

Looking for similar services with different approaches? Try: Ikahana.

About

Self-hosted disposable temporary email service using php, catch-all email and imap.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 91.1%
  • CSS 8.9%