2024-02-22 20:12:41 +08:00
|
|
|
# Roundcubemail 安装和使用
|
|
|
|
|
|
|
|
Roundcubemail 是基于 Web 的邮件客户端软件。
|
|
|
|
|
|
|
|
docker 安装和启动命令:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker pull roundcube/roundcubemail
|
|
|
|
|
2024-03-09 08:52:56 +08:00
|
|
|
docker run --name=roundcub-qq -e ROUNDCUBEMAIL_DEFAULT_HOST="ssl://imap.qiye.163.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 8000:80 -d roundcube/roundcubemail
|
|
|
|
|
|
|
|
docker run --name=roundcube-163 -e ROUNDCUBEMAIL_DEFAULT_HOST="ssl://imaphz.qiye.163.com" -e ROUNDCUBEMAIL_DEFAULT_PORT=993 -e ROUNDCUBEMAIL_SMTP_SERVER="ssl://smtphz.qiye.163.com" -e ROUNDCUBEMAIL_SMTP_PORT=994 -e ROUNDCUBEMAIL_DB_TYPE=sqlite -p 8000:80 -d roundcube/roundcubemail
|
2024-02-22 20:12:41 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
直接使用电子邮箱的账号和密码登录即可。
|
|
|
|
|
|
|
|
## 外部参考资料
|
|
|
|
|
|
|
|
1. [docker hub-roundcube/roundcubemail](https://hub.docker.com/r/roundcube/roundcubemail#advanced-configuration)
|
|
|
|
2. [7 个最佳的开源基于 Web 的电子邮件客户端 | Linux 中国](https://zhuanlan.zhihu.com/p/644053759)
|