臨時郵箱程序開源免費源碼–Forsaken-Mail
Forsaken-Mail是一個可以自動生成臨時郵箱賬號地址的程序,而且郵箱地址每次刷新就可以自動更換,網頁上直接可以接收郵件。
很多時候還是有這種需求的。
Github:https://github.com/denghongcai/forsaken-mail
demo:http://shared.readmail.net/
要求:
1.服務器需要開啟25端口
2.域名MX記錄,記錄值@,指向服務器IP地址,優先級設置10
A記錄,記錄值@,指向服務器IP地址
安裝方式:
可以參考github上的地址,下面也寫一下。
1.NPM安裝
1.1安裝npm
#Debian/Ubuntu系統 curl -sL https://deb.nodesource.com/setup_10.x | bash - apt-get install -y nodejs git screen #Centos系統 curl -sL https://rpm.nodesource.com/setup_10.x | bash - yum install nodejs git screen -y
1.2安裝Forsaken Mail
git clone https://github.com/denghongcai/forsaken-mail.git cd forsaken-mail #安裝Forsaken Mail npm install #後台運行Forsaken Mail screen -S forsakenmail npm start
最後按Ctrl+A,再按D鍵返回主界面,然後打開http//mx.xx.com:3000就可以查看Forsaken Mail郵箱界面了,如果你打不開界面,可能還需要開啟防火牆端口。
2.Docker安裝
2.1安裝Docker
#CentOS 6 rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum update -y yum -y install docker-io service docker start chkconfig docker on #CentOS 7、Debian、Ubuntu curl -sSL https://get.docker.com/ | sh systemctl start docker systemctl enable docker
2.2安裝Forsaken Mail
docker run --name forsaken-mail -d -p 25:25 -p 3000:3000 denghongcai/forsaken-mail
安裝成功後打開http//mx.xx.com:3000即可