email-usage
使用本地邮件服务器收发我们自己域名的邮件。固定脚本位于 scripts/ 目录,直接执行即可。发送失败或密码遗忘时联系 小爪子。
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/axelhu/email-usageEmail 使用
SMTP 发送(需要认证)
python3 skills/email-usage/scripts/send_email.py <收件人> <主题> <正文> <发件邮箱> <密码>
参数:收件人、主题、正文、发件邮箱、密码(向 小爪子 查询)
示例:
python3 skills/email-usage/scripts/send_email.py \
'[email protected]' '邮件标题' '邮件正文' \
'[email protected]' 'test1234'
IMAP 读取
python3 skills/email-usage/scripts/read_email.py <用户名> <密码> [最新N封,默认5]
示例:
python3 skills/email-usage/scripts/read_email.py '[email protected]' 'test1234' 3
新增邮箱账号
python3 skills/email-usage/scripts/create_email.py <邮箱> <密码>
示例:
python3 skills/email-usage/scripts/create_email.py [email protected] securepass
账号创建后,发件和收件使用同一套密码。
规则
- 不要配置 SMTP/Postfix/amavis
- 不要操作邮件队列(postqueue/postsuper)
- 不要修改容器内配置
- 连接超时或发送失败 → 联系 小爪子
- 密码遗忘 → 联系 小爪子
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-axelhu-email-usage": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Openclaw Sleep
Skill by axelhu
superpowers-overview
Use when starting any development work or when unsure which superpowers development skill to use - provides entry point and navigation to the full superpowers skill suite for OpenClaw agents
superpowers-subagent-dev
Use when executing implementation plans with independent tasks - coordinates task execution by dispatching subagents per task with verification checkpoints, adapted for OpenClaw's isolated session model
contacts
通讯录查询与维护技能。用于查找联系人信息(open_id、chat_id、account_id 等)、记录新联系人、或查询历史沟通偏好。触发时机:(1) 需要 @某人或向某渠道发消息时 (2) 认识新联系人后需要录入通讯录时 (3) 查询某人的联系方式或交流偏好时 (4) 询问"谁知道xxx的飞书ID"或"怎么联系xxx"时。
superpowers-executing-plans
Use when executing a written implementation plan in the current session with sequential task execution and review checkpoints - for when subagent-driven mode is not available