介绍:

Forsaken-Mail,超简单的临时邮箱部署工具,在我之前的文章中,介绍过两种办法,一种是使用Cloudflare的邮件转发功能,转发到自己邮箱,只能投送到一个邮箱,功能受限,一种是使用 Hestia 面板,不仅有独立邮箱,还能够使用这个邮箱发送邮件。
但是有的小伙伴希望只使用临时邮箱服务,不需要发送邮件,只需要接收就可以,那有没有更简单的方案呢?来啦,今天就介绍下 Forsaken-Mail 的部署方案,真的超级简单,跟着步骤走就可以了

效果图:

部署方法一:使用Docker安装

第一步:更新源并安装依赖

Ubuntu/Debian:

apt update -y && apt upgrade -y
sudo apt-get install git -y

Centos:

yum update -y && yum upgrade -y
sudo yum install git -y

第二步:安装Docker

curl -fsSL https://get.docker.com -o get-docker.sh && sh ./get-docker.sh

第三步:克隆仓库

git clone https://github.com/denghongcai/forsaken-mail.git
cd forsaken-mail

第四步:构建Docker镜像

docker build -t denghongcai/forsaken-mail .

第五步:运行Docker容器

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

运行完成后可以访问 http://<your-ip>:3000 来访问临时邮箱啦

部署方法二:从源代码安装

第一步:更新源并安装依赖

Ubuntu/Debian:

apt update -y && apt upgrade -y
sudo apt-get install git -y

Centos:

yum update -y && yum upgrade -y
sudo yum install git -y

第二步:安装 Node.js 和 npm

sudo apt-get install nodejs npm

验证Node.js和npm的安装:

node -v
npm -v

第三步:克隆仓库

git clone https://github.com/denghongcai/forsaken-mail.git
cd forsaken-mail

第四步:安装依赖

npm install

第五步:启动 Forsaken-Mail

npm start

运行完成后可以访问 http://<your-ip>:3000 来访问临时邮箱啦

标签: 部署, Forsaken-Mail, 临时邮箱

原文链接:https://blog.fuyiran.link/Technology/17.html

版权声明:本博客所有文章除特別声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 傅说 (blog.fuyiran.link)

添加新评论