← ClaudeAtlas

hlzd-rfp-responselisted

B2B 询盘 / 邮件响应自动化 —— 8 大邮箱配置矩阵(Gmail/网易/QQ/Outlook/企业微信/飞书/阿里云/自建)+ Gmail OAuth + IMAP/IMAPS + 凭证加密 + 飞书卡片配置向导。
Alexxiang2008/hlzd-b2b-export-skills · ★ 0 · AI & Automation · score 73
Install: claude install-skill Alexxiang2008/hlzd-b2b-export-skills
# HLZD 询盘响应 v0.2.1(邮件接入升级版) > **v0.2.1 关键升级**:基于你"用网易 + Gmail"的真实场景,全面升级邮件接入层 > - **借鉴 imap_tools**(831 stars)—— Python IMAP 标准库(OAuth2 + IDLE + 无外部依赖) > - **借鉴 google-api-python-client**(8871 stars)—— Gmail 官方 OAuth 2.0 流程 > - **覆盖 8 大邮箱**——网易 163/126/yeah、Gmail、QQ、Outlook、飞书邮箱、企业邮箱 --- ## 🎯 你之前的失真(直接承认) 我之前 SKILL.md 写的"邮件 API 拉取"是**抽象假设**: - ❌ 没考虑你用**网易个人邮箱**(需要授权码,不是密码) - ❌ 没考虑你用 **Gmail**(必须 OAuth 2.0,2024 起强制) - ❌ 没考虑**飞书邮箱**(OAuth 2.0) - ❌ 假设"邮件 API"是简单事,实际是**5 步 OAuth 流程 + 授权码获取** **现在直接修正**,基于真实场景设计。 --- ## 📋 8 大邮箱配置矩阵(覆盖你所有真实场景) | 邮箱服务商 | IMAP 服务器 | 端口 | SSL | 认证方式 | 客户端库 | |---|---|---|---|---|---| | **网易 163** ⭐ 你在用 | `imap.163.com` | 993 | ✅ | 用户名 + **授权码**(非登录密码)| imap_tools | | **网易 126** | `imap.126.com` | 993 | ✅ | 用户名 + **授权码** | imap_tools | | **网易 yeah.net** | `imap.yeah.net` | 993 | ✅ | 用户名 + **授权码** | imap_tools | | **Gmail** ⭐ 你在用 | `imap.gmail.com` | 993 | ✅ | OAuth 2.0 token | imap_tools + google-api-python-client | | **QQ 邮箱** | `imap.qq.com` | 993 | ✅ | 用户名 + **授权码** | imap_tools | | **Outlook / Office365** | `outlook.office365.com` | 993 | ✅ | OAuth 2.0 token | imap_tools | | **飞书邮箱** | `imap.feishu.cn` | 993 | ✅ | OAuth 2.0 token | imap_tools | | **企业邮箱**(如 HLZD.com) | `imap.hlzd.com` | 993 | ✅ | 用户名 + 密码 | imap_tools | **所有 8 大邮箱都被 imap_tools(831 stars)+ google-api-python-client(8871 stars)覆盖**,无需自己实现。 --- ## 🏆 借鉴证据 ### ikvk/imap_tools(831 stars)—— Python IMAP 标准库 **关键特性**(直接对 HLZD 有用): - ✅ **OAuth2 认证**(`xoauth2` 方法)—— Gmail/Outlo