feat(email): 初始化自建邮箱 MVP

- 新增 Go + SQLite 后端,支持登录、域名、邮箱、别名、联系人、规则、统计与邮件收发。
- 新增 Webmail 前端,支持多邮箱切换、邮件列表/阅读/写信、附件、搜索、主题切换与个人中心。
- 新增 Docker Compose 部署骨架,补充 Postfix、Dovecot、OpenDKIM、Nginx 配置与部署说明。
This commit is contained in:
LanQin
2026-06-14 01:07:48 +08:00
commit 3ef8caa319
85 changed files with 13649 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
# Dependencies
node_modules/
.pnpm-store/
.yarn/
# Build outputs
/dist/
dist/
build/
.vite/
.cache/
coverage/
*.tsbuildinfo
# Environment files
.env
.env.*
!.env.example
!**/.env.example
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Runtime data / local databases
/data/
/tmp/
tmp/
apps/api/data/
apps/api/tmp/
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3
# Mail/runtime generated artifacts
maildata/
dkim-keys/
*.pem
*.key
*.crt
# Go generated binaries / test artifacts
*.exe
*.test
*.out
coverage.out
# OS / editor local files
.DS_Store
Thumbs.db
desktop.ini
.vscode/
.idea/
.cursor/
.claude/
*.swp
*.swo