Stars: 378
Forks: 155
Pull Requests: 42
Issues: 56
Watchers: 27
Last Updated: 2021-03-27 20:44:17
self-hosted disposable email service (php) using catch-all and imap
License: GNU General Public License v3.0
Languages: PHP, CSS
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
Disposable-mailbox can be installed by copying the src directory to a webserver.
assure the imap extension is installed. The following command should not print any errors:
<?php print imap_base64("SU1BUCBleHRlbnNpb24gc2VlbXMgdG8gYmUgaW5zdGFsbGVkLiA="); ?>
download a release or clone this repository
copy the files in the src
directory to your web server (not the whole repo!).
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.
open it in your browser, check your php error log for messages.
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
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);
This could not be possible without...