Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

smtpsmtp 测试

Agent Skill

smtp 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,350

周安装

355

GitHub Stars

公开资料未说明

下载量

2,925
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:smtp(smtp 测试)
来源仓库:https://github.com/ivangdavila/smtp
安装命令:
openclaw skills install smtp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install smtp

简介

通过安全的试运行、提供商感知的身份验证和送达能力检查来发送、测试和调试 SMTP 邮件流。

SKILL.md

name
SMTP
slug
smtp
version
1.0.0
homepage
https://clawic.com/skills/smtp
description
Send, test, and debug SMTP mail flows with safe dry runs, provider-aware auth, and deliverability checks.
changelog
Initial release with safe SMTP send flow, provider profiles, auth diagnostics, and deliverability checks.
metadata
{"clawdbot":{"emoji":"📬","requires":{"bins":[]},"os":["linux","darwin","win32"],"configPaths":["~/smtp/"]}}

When to Use

Use this skill when the user needs to configure, test, send, or debug outbound email over SMTP. It is for submission and delivery work: provider setup, ports and TLS, auth failures, relay denials, canary sends, bounce interpretation, and inbox-placement diagnosis.

Architecture

Memory lives in ~/smtp/. If ~/smtp/ does not exist, run setup.md. Use memory-template.md, memory.md, provider-profiles.md, send-log.md, and deliverability-notes.md as the local baseline.

~/smtp/
├── memory.md               # Status, approved providers, domains, and safety defaults
├── provider-profiles.md    # Known-good hosts, ports, auth mode, and sender identity notes
├── send-log.md             # Dry-run decisions, canary sends, message IDs, and outcomes
└── deliverability-notes.md # SPF, DKIM, DMARC, bounce, and inbox-placement learnings

Quick Reference

TopicFileUse it for
Setup and first-run guardrailssetup.mdInitialize ~/smtp/ without storing secrets or sending mail too early
Memory structurememory-template.mdCreate ~/smtp/memory.md with status and stable context
Baseline memory examplememory.mdShow the expected shape of a live SMTP memory file
Provider profile baselineprovider-profiles.mdTrack approved providers, ports, auth modes, and sender identities
Send decision log baselinesend-log.mdRecord dry runs, canaries, queue IDs, and verification evidence
Deliverability notes baselinedeliverability-notes.mdCapture DNS auth status, spam-folder evidence, and bounce patterns
Safe execution workflowsend-flow.mdRun draft -> preflight -> canary -> verify -> scale
Fault isolation guidediagnostic-playbook.mdSeparate DNS, TLS, auth, relay, and placement failures
Deliverability rulesdeliverability.mdCheck SPF, DKIM, DMARC, alignment, and inbox placement
CLI probe patternsswaks-recipes.mdUse deterministic SMTP tests with placeholder-only examples

Requirements

  • SMTP host access only when the user wants real network testing or live sending.
  • Credentials must come from a user-approved secret source at runtime, never from files under ~/smtp/.
  • Recommended tools: swaks for SMTP probes, openssl for TLS inspection, and dig or nslookup for DNS checks.
  • Explicit confirmation before any live send, external-recipient test, or multi-recipient action.

Core Rules

1. Separate Draft, Probe, and Live Send

  • Decide which mode the task is in before touching the network: draft-only, connectivity probe, auth probe, canary send, or live send.
  • Draft and explain first. Do not jump from "help me configure SMTP" to "message sent."

2. Match Port, TLS, and Auth Exactly

  • Port 465 means implicit TLS. Port 587 usually means STARTTLS. Port 25 is relay transport and is often blocked or policy-limited.
  • Treat host, port, TLS mode, and auth mechanism as one contract. A single mismatch can look like a generic timeout or auth error.

3. Debug One Layer at a Time

  • Validate in order: DNS and hostname, TCP reachability, TLS handshake, EHLO capabilities, auth, submission response, then mailbox placement.
  • Do not tweak deliverability records before proving the connection and auth layers are healthy.

4. Keep Sender Identity Aligned

  • Check whether the authenticated account, envelope sender, visible From address, DKIM domain, and return-path domain actually belong together.
  • Misalignment often produces 550/553 rejections, spam placement, or "sent successfully" with no inbox result.

5. Canary Before Scale

  • The first live test should target one approved canary recipient, ideally on the same org or a controlled inbox.
  • Only widen recipients after you have queue acceptance, message ID evidence, and inbox-or-spam confirmation.

6. Handle Credentials and Logs Safely

  • Never write raw SMTP passwords, API tokens, or full secrets into ~/smtp/.
  • Redact logs and screenshots before storing or sharing them. Keep only the smallest evidence needed to debug.

7. Acceptance Is Not Delivery

  • A 250 queued or similar server response means the SMTP server accepted the message, not that the recipient inbox accepted it.
  • Always verify final state through bounce evidence, mailbox placement, or downstream provider logs when available.

Common Traps

TrapWhy It FailsBetter Move
Treating port 465 and 587 as interchangeableTLS handshake breaks or auth never startsMatch implicit TLS vs STARTTLS explicitly
Changing SPF before fixing authWrong layer, no effect on login failureProve DNS, TLS, and auth separately
Assuming 250 means inbox successQueue acceptance is not mailbox placementCheck spam, bounces, and final recipient evidence
Using external recipients as the first testIncreases blast radius and riskStart with one approved canary inbox
Disabling certificate checks to "make it work"Hides real TLS or hostname issuesFix hostname, CA trust, or port selection instead
Letting From differ wildly from auth identityTriggers relay denial or spam scoringAlign sender identity or document the relay policy

External Endpoints

EndpointData SentPurpose
Configured SMTP submission server, such as smtp.example.comMessage headers, recipients, body, and attachments only for approved live tests or sendsSubmit or test outbound mail
DNS resolvers or authoritative nameservers for the sender domainDomain names and record lookups for SPF, DKIM, DMARC, MX, and PTR checksDiagnose deliverability and domain alignment

No other data should be sent externally unless the user explicitly approves broader tooling.

Data Storage

Local state in ~/smtp/ includes:

  • activation state, approved providers, and safety defaults in memory.md
  • known-good server profiles and sender-identity notes in provider-profiles.md
  • dry-run decisions, canary evidence, and message IDs in send-log.md
  • domain-auth and placement findings in deliverability-notes.md

Security & Privacy

Data that leaves your machine:

  • SMTP envelope and message content only during approved probes or live sends
  • DNS queries needed to validate sender-domain health and routing

Data that stays local:

  • safe defaults and approved provider context in ~/smtp/memory.md
  • known-good provider settings and debugging evidence in ~/smtp/provider-profiles.md, ~/smtp/send-log.md, and ~/smtp/deliverability-notes.md

This skill does NOT:

  • send live mail without explicit confirmation
  • store raw SMTP passwords or tokens in local memory
  • modify DNS records, mailing lists, or provider settings unless the user explicitly asks
  • disable TLS verification silently
  • modify its own skill definition

Trust

By using this skill, approved message content is sent to the configured SMTP provider and related DNS infrastructure. Only install and run it if you trust those providers with your outbound mail flow.

Scope

This skill ONLY:

  • helps configure and diagnose outbound SMTP submission
  • maintains small local notes in ~/smtp/
  • runs canary-first send workflows with explicit confirmation gates

This skill NEVER:

  • guess live-send approval from vague user intent
  • keep credentials in ~/smtp/
  • treat queue acceptance as the final delivery result
  • broaden a one-off test into a bulk-send workflow without consent

Related Skills

Install with clawhub install <slug> if user confirms:

  • mail - broader mailbox operations across IMAP, SMTP, and Apple Mail workflows
  • dns - deeper DNS record work for SPF, DKIM, DMARC, MX, and TTL changes
  • network - port reachability, TLS, and connection debugging beyond mail workflows
  • newsletter - message design and campaign structure once SMTP delivery is healthy
  • email-marketing - deliverability and audience strategy after the send path is stable

Feedback

  • If useful: clawhub star smtp
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.93%
按下载量换算2,426

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills