临时邮箱

Hongcai Deng 0f8c570213 docs: ✏️ clean up readme 4 yıl önce
bin 77eeab9024 init 10 yıl önce
modules a9ba767457 fix: 🐛 add default keyword blacklist 4 yıl önce
public a80cb6cdee chore: replace cdn.bootcss.com to lib.baomitu.com 7 yıl önce
routes 77eeab9024 init 10 yıl önce
.gitignore 77eeab9024 init 10 yıl önce
Dockerfile bc635dfa21 minimize docker image (#9) 5 yıl önce
LICENSE 77eeab9024 init 10 yıl önce
README.md 0f8c570213 docs: ✏️ clean up readme 4 yıl önce
app.js 091912db3f update 10 yıl önce
config-default.json a9ba767457 fix: 🐛 add default keyword blacklist 4 yıl önce
package.json 2aeeec070a update README and package.json 10 yıl önce

README.md

Forsaken-Mail

A self-hosted disposable mail service.

Online Demo

Installation

Setting up your DNS correctly

In order to receive emails, your smtp server address should be made available somewhere. Two records should be added to your DNS records. Let us pretend that we want to receive emails at *@subdomain.domain.com:

  • First an MX record: subdomain.domain.com MX 10 mxsubdomain.domain.com. This means that the mail server for addresses like *@subdomain.domain.com will be mxsubdomain.domain.com.
  • Then an A record: mxsubdomain.domain.com A the.ip.address.of.your.mailin.server. This tells at which ip address the mail server can be found.

You can use an smtp server tester to verify that everything is correct.

Let's Go

general way:

npm install && npm start

if you want to run this inside a docker container

docker build -t denghongcai/forsaken-mail .
docker run --name forsaken-mail -d -p 25:25 -p 3000:3000 denghongcai/forsaken-mail

Open your browser and type in

http://localhost:3000

Enjoy!