测试应用 邮件服务器

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
萌森 2024-07-26 17:44:51 +08:00
parent 78b0acae02
commit c6b9fdec7e
2 changed files with 23 additions and 0 deletions

View File

@ -75,6 +75,13 @@ additionalProperties:
required: false
rule: paramPort
type: number
- default: "domain.com"
edit: true
envKey: HOSTNAME_FQDN
labelZh: 邮件服务器域名
labelEn: Mail server domain name
required: true
type: text
- default: "postmaster@domain.com"
edit: true
envKey: POSTMASTER_ADDRESS

View File

@ -40,6 +40,22 @@ SQL 数据库。其形象以 "保持简单和版本化 "为口号。
将证书文件放置在 持久化目录的 `certs` 目录下,文件名为 `public.crt``private.key`
### 端口占用检查
- `25` SMTP 端口
```sh
netstat -tuln | grep 25
```
停止Linux 邮件服务 `postfix` 服务, 释放 25 端口, 避免端口占用。
```sh
systemctl status postfix.service
systemctl stop postfix.service
systemctl disable postfix.service
```
## 安装完成
首次启动至少要添加一个账户,您有两分钟的时间来执行此操作。请在容器终端中运行以下命令。