A self-hosted disposable mailbox service (aka trash mail)
src | ||
.gitignore | ||
composer.json | ||
composer.lock | ||
readme.md | ||
screenshot.png |
self-hosted disposable email service
Goals:
- easy to use: generate random name or use custom name, auto refresh
- easy to host: just php5 + imap extension
- easy to install: just copy some files
- minimal code base: minimal features and complexity
![]() |
---|
You have to know
- You should sign up for the chat and you will be notified about issues and bugfixes:
- This is WORK IN PROGRESS (WIP) software, do not use it in production yet! There are still unsolved problems. Contributions are welcome!
- Licence:
disposable-mailbox by github:synox is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Webserver requirements
- php >=5.3.0
- imap extension
- apache 2 (but should work on any webserver)
Installation
-
assure the imap extension is installed. The following command should not print any errors:
<?php print imap_base64("SU1BUCBleHRlbnNpb24gc2VlbXMgdG8gYmUgaW5zdGFsbGVkLiA="); ?>
-
clone or download this repository
-
copy the
src
directory to your web server. -
rename
config.sample.php
toconfig.php
and apply the imap settings. Moveconfig.php
to a safe location outside thepublic_html
. -
open
backend.php
and set the new path toconfig.php
.
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 install
Credit
This could not be possible without...