Skip to content

0x5c0f/forsaken-mail

 
 

Repository files navigation

Forsaken-Mail

https://github.com/denghongcai/forsaken-mail

  • 自托管的一次性邮件服务。
  • 相对于原项目翻译了下自述文件、改了些前端以适应个人需求

DNS 解析

  • _@mx.example.com
记录类型 主机记录 线路 记录值 MX优先级 TTL
A mx 默认 <server_ip> - 600
MX mx 默认 mx.example.com 10 600

访问

http://mx.example.com

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!

About

a self-hosted disposable mail service

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 50.3%
  • CSS 28.4%
  • HTML 20.3%
  • Dockerfile 1.0%