2026-04-09 21:48:21 +08:00
|
|
|
|
# Pop 开发记录
|
|
|
|
|
|
|
|
|
|
|
|
## Changelog
|
|
|
|
|
|
|
|
|
|
|
|
| 日期 | 版本 | 描述 |
|
|
|
|
|
|
|------|------|------|
|
|
|
|
|
|
| 2026-04-09 | v0.1.0 | 初始规划:发送历史、收件箱功能 |
|
|
|
|
|
|
| 2026-04-09 | v0.1.1 | 配置简化:支持多账户、自动识别Provider |
|
|
|
|
|
|
|
|
|
|
|
|
## 讨论记录
|
|
|
|
|
|
|
|
|
|
|
|
- [第1次:功能规划](./doc/001-feature-planning.md)
|
|
|
|
|
|
- [第2次:配置简化讨论](./doc/002-config-simplification.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 配置文件格式
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
2026-04-10 00:39:06 +08:00
|
|
|
|
from:
|
|
|
|
|
|
account: foolsecret@163.com
|
|
|
|
|
|
|
2026-04-09 21:48:21 +08:00
|
|
|
|
accounts:
|
2026-04-10 00:39:06 +08:00
|
|
|
|
- name: work
|
2026-04-09 21:48:21 +08:00
|
|
|
|
email: 邮箱
|
|
|
|
|
|
provider: 163
|
2026-04-10 00:39:06 +08:00
|
|
|
|
username: foolsecret@163.com
|
2026-04-09 21:48:21 +08:00
|
|
|
|
password: 密钥
|
|
|
|
|
|
encryption: ssl
|
|
|
|
|
|
insecure: false
|
|
|
|
|
|
imap:
|
|
|
|
|
|
host: imap.163.com
|
|
|
|
|
|
port: 993
|
|
|
|
|
|
smtp:
|
|
|
|
|
|
host: smtp.163.com
|
|
|
|
|
|
port: 465
|
2026-04-10 00:39:06 +08:00
|
|
|
|
- name: qqemail
|
2026-04-09 21:48:21 +08:00
|
|
|
|
email: 邮箱
|
|
|
|
|
|
provider: qq
|
2026-04-10 00:39:06 +08:00
|
|
|
|
username: xxx@qq.com
|
|
|
|
|
|
password: QQ邮箱IMAP授权码
|
|
|
|
|
|
encryption: ssl
|
|
|
|
|
|
insecure: fales
|
|
|
|
|
|
imap:
|
|
|
|
|
|
host: imap.qq.com
|
|
|
|
|
|
port: 993
|
|
|
|
|
|
smtp:
|
|
|
|
|
|
host: smtp.qq.com
|
|
|
|
|
|
port: 465
|
2026-04-09 21:48:21 +08:00
|
|
|
|
```
|