增加应用说明.

Signed-off-by: rick.chan <cy@sina.com>
This commit is contained in:
rick.chan 2024-02-22 20:12:41 +08:00
parent bd1b5ad6ce
commit 8167c6248f
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Rainloop 的安装和使用
Rainloop 是基于 Web 的邮件客户端软件。
docker 安装和启动命令:
```bash
docker pull hardware/rainloop
docker run -it --name=rainloop -p 8011:8888 hardware/rainloop
```
之后通过 Web 页面访问,管理员用户名:"admin", 密码:"12345"。
设置好邮箱域后退出登录,并访问 [TODO: 页面地址?] 再使用对应的邮箱域下的邮箱账户名和密码登录即可。
## 外部参考资料
1. [7 个最佳的开源基于 Web 的电子邮件客户端 | Linux 中国](https://zhuanlan.zhihu.com/p/644053759)
2. [NAS下搭建一个集成式邮箱客户端—rainloop](https://zhuanlan.zhihu.com/p/613429988)
3. [Rainloop安装配置和利用Rainloop登录并管理Gmail等邮箱](http://www.lamuba.com/rainloop/)

View File

@ -0,0 +1,18 @@
# Roundcubemail 安装和使用
Roundcubemail 是基于 Web 的邮件客户端软件。
docker 安装和启动命令:
```bash
docker pull roundcube/roundcubemail
docker run --name=roundcubemail -e ROUNDCUBEMAIL_DEFAULT_HOST="ssl://imap.exmail.qq.com" -e ROUNDCUBEMAIL_DEFAULT_PORT=993 -e ROUNDCUBEMAIL_SMTP_SERVER="ssl://smtp.exmail.qq.com" -e ROUNDCUBEMAIL_SMTP_PORT=465 -e ROUNDCUBEMAIL_DB_TYPE=sqlite -p 8011:80 -d roundcube/roundcubemail
```
直接使用电子邮箱的账号和密码登录即可。
## 外部参考资料
1. [docker hub-roundcube/roundcubemail](https://hub.docker.com/r/roundcube/roundcubemail#advanced-configuration)
2. [7 个最佳的开源基于 Web 的电子邮件客户端 | Linux 中国](https://zhuanlan.zhihu.com/p/644053759)