Install
openclaw skills install 139mail139邮箱IMAP/POP3操作技能。支持通过IMAP/POP3协议查看收件箱/未读邮件、发送邮件、搜索邮件、管理邮件、邮件分拣。首次使用需配置账号和授权码。当用户需要操作139邮箱(mail.10086.cn)时触发此技能。
openclaw skills install 139mail本技能非 139 邮箱官方发布
本技能由 139 邮箱发烧友基于标准 IMAP/POP3 协议开发,旨在为 OpenClaw 用户提供便捷的 139 邮箱访问方式。
注意事项:
- 本技能为非官方第三方工具
- 使用本技能产生的风险与 139 邮箱官方无关
- 请用户谨慎使用,妥善保管账号密码
- 建议定期更换邮箱授权码以确保安全
使用前请确保:
- 您已了解并接受上述声明
- 您已开启 139 邮箱的 IMAP/POP3 服务
- 您已生成邮箱授权码(非登录密码)
本技能通过IMAP/POP3协议直接连接139邮箱服务器,实现高效的邮件管理功能。
重要:首次使用需配置账号和授权码
本技能需要安装第三方依赖库:
pip install imapclient
依赖说明:
imapclient:用于IMAP协议连接139邮箱服务器smtplib, email, json, argparse(Python内置)由于139邮箱服务器使用的是较旧版本的TLS协议(TLS 1.0/1.1),本技能使用兼容模式连接。 安全建议:
当用户首次请求操作139邮箱时:
运行环境检查脚本,确保所有依赖就绪:
python scripts/check_env.py
此脚本会检查:
pip install imapclient
⚠️ 重要:授权码只显示一次,请务必保存!
python scripts/config_manager.py save --username 136xxxxxxxxx@139.com --password 你的授权码
python scripts/check_mail.py --limit 5
如果显示邮件列表,说明配置成功!
# 1. 安装依赖
pip install imapclient
# 2. 运行环境检查
python scripts/check_env.py
# 3. 配置账号(替换为你的账号和授权码)
python scripts/config_manager.py save --username 136xxxxxxxxx@139.com --password xxxxxxxxxxxxxxxx
# 4. 查看邮件
python scripts/check_mail.py --unread
脚本:scripts/config_manager.py
命令:
python scripts/config_manager.py check - 检查是否已配置python scripts/config_manager.py save --username <账号> --password <授权码> - 保存配置python scripts/config_manager.py show - 显示当前配置(隐藏授权码)配置文件:config/139mail.conf
配置文件格式(JSON):
{
"username": "136xxxxxxxxx@139.com",
"password": "授权码",
"imap_server": "imap.139.com",
"imap_port": 993,
"smtp_server": "smtp.139.com",
"smtp_port": 465
}
skills/139mail/
├── SKILL.md # 本文件 - 使用文档
├── config/ # 配置目录
│ └── 139mail.conf # 账号配置文件(自动创建)
├── references/ # 参考资料
│ ├── credentials.md # 服务器配置信息
│ └── imap_guide.md # IMAP操作指南
└── scripts/ # 核心脚本
├── check_env.py # ⭐ 环境检查脚本(新手先用)
├── config_manager.py # 配置管理
├── check_mail.py # 查看邮件
├── view_mail.py # 查看邮件详情
├── send_mail.py # 发送邮件
├── search_mail.py # 搜索邮件
├── manage_mail.py # 邮件管理(标记/删除)
└── move_mail.py # 邮件分拣
触发场景:"查看139邮箱"、"有没有新邮件"
流程:
config_manager.py check)scripts/check_mail.py --unread命令示例:
python scripts/check_mail.py --limit 10
python scripts/check_mail.py --unread
脚本:scripts/view_mail.py <邮件ID>
示例:
python scripts/view_mail.py 123
脚本:scripts/send_mail.py <收件人> <主题> <正文>
示例:
python scripts/send_mail.py "recipient@example.com" "主题" "正文内容"
脚本:scripts/search_mail.py <关键词>
示例:
python scripts/search_mail.py "工作汇报"
脚本:scripts/manage_mail.py
常用命令:
# 列出邮件
python scripts/manage_mail.py --list
# 列出已删除邮件
python scripts/manage_mail.py --list-trash
# 标记已读/未读
python scripts/manage_mail.py --mark-read <ID>
python scripts/manage_mail.py --mark-unread <ID>
# 删除邮件(移动到已删除文件夹)
python scripts/manage_mail.py --delete <ID>
# 恢复邮件(从已删除文件夹恢复)
python scripts/manage_mail.py --restore <ID>
# 彻底删除(永久删除,不可恢复)
python scripts/manage_mail.py --permanent-delete <ID>
脚本:scripts/move_mail.py
示例:
# 列出所有文件夹
python scripts/move_mail.py --list-folders
# 移动邮件
python scripts/move_mail.py --move <邮件ID> --to <目标文件夹>
错误信息:
[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure
原因:
解决方案: 本技能已自动配置兼容性设置,无需手动修改。如仍失败:
# 检查Python版本
python --version # 需要 >= 3.8
# 检查OpenSSL版本
python -c "import ssl; print(ssl.OPENSSL_VERSION)" # 需要 >= 1.1.1
错误信息:
imapclient.exceptions.LoginError
检查清单:
136xxxxxxxxx@139.com(不是纯手机号)错误信息:
ModuleNotFoundError: No module named 'imapclient'
解决:
pip install imapclient
现象:邮件主题/发件人显示为乱码
原因:Windows终端编码问题
解决:
chcp 65001
如需详细调试信息,可在运行脚本前设置环境变量:
set PYTHONHTTPSVERIFY=0
python scripts/check_mail.py --limit 5
当检测到用户未配置时,使用以下提示:
首次使用139邮箱功能,需要您先完成以下设置:
1. 安装依赖:
pip install imapclient
2. 登录 https://mail.10086.cn/
3. 进入 设置 → 账户 → IMAP/POP3服务
4. 开启 IMAP/POP3 服务
5. 获取授权码(不是登录密码!)
请提供:
- 139邮箱账号(如 136xxxxxxxxx@139.com)
- 授权码:______
config/139mail.conf 保存时设置权限为 600(仅所有者可读写)