DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Mail — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
M

dsh-mail

Mail

用于代理电子邮件工具的 DSH 插件:发送、批量发送(CSV 个性化)、稍后发送(计划队列)、读取/获取收件箱、列出域名。支持多种提供商:Lettermint、AgentMail、Resend、OVH(SMTP/IMAP)、手动 SMTP+IMAP/POP、本地自托管(专家)。设置界面 + 侧边栏标签页 + 代理工具。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:lucagiftzek/dsh-mail#fc86c1cf16bbb635ba236f33c92f60b214f990c2
README兼容性版本

兼容性与来源证明

Mail 以 dsh-mail 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/19

版本

0.1.0stable
2026/9/19

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/19
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Im@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

dsh-mail

Agent email tools for the DeepSeek Harness. Send, mass-send (CSV-personalised), schedule, read inbox, list domains, and queue emails for manual review — all from the sidebar Mail tab, with 6 provider backends.

Providers

IDBackendAuthInbox read
lettermintLettermint APIx-lettermint-tokenno
agentmailAgentMail APIBeareryes
resendResend APIBearerno
ovhOVH SMTPuser/passvia IMAP (planned)
smtpManual SMTPuser/passvia IMAP (planned)
localSelf-host SMTPuser/passvia IMAP (planned)

Agent tools

  • mail_send — send one email
  • mail_mass_send — CSV-personalised bulk send with inter-email delay
  • mail_send_later — schedule an email for future sending
  • mail_read — read recent inbox messages (AgentMail)
  • mail_fetch — fetch a single message by ID
  • mail_domains — list available sending domains/inboxes
  • mail_list_queue — list queue entries
  • mail_cancel — cancel a queued/scheduled email

Sidebar tab

The Mail tab (order 91) shows:

  • Overview: provider status, queue counts
  • Queue: pending, sent, failed, cancelled entries with Send-now / Cancel
  • Send: compose and send a test email
  • Settings: configure all provider credentials and limits

Installation

cd /opt/stacks/llm/plugins/dsh-mail
pnpm install   # dev deps (esbuild)
pnpm build     # bundle src/client.jsx → lib/client.js

Then add the plugin to the web profile:

# In ~/.dsh/profiles/web/package.json, add to dependencies:
"   \"dsh-mail\": \"file:/opt/stacks/llm/plugins/dsh-mail\","

# And to the bundles array:
"   \"dsh-mail\","

pnpm install --dir ~/.dsh/profiles/web

Restart dsh-web to mount the plugin (ask the user first — this session runs inside dsh-web).

Settings

Settings live in ~/.dsh/settings.yaml under the dsh-mail namespace. Credentials are auto-populated from estate files on first use:

  • Lettermint: ~/.config/lettermint/credentials (LETTERMINT_API_KEY)
  • AgentMail: ~/.config/agentmail/credentials (AGENTMAIL_API_KEY, AGENTMAIL_TEST_INBOX)

Credentials are never hard-coded in the repo. They are read at call time and merged with settings (settings win only when non-empty).

Credential provenance on this estate (2026-09-19): the populated LETTERMINT_API_KEY lives in ~/.config/erioun-prod/credentials on Main (the Erioun prod service's key — same x-lettermint-token auth the plugin uses). It was filled into the empty LETTERMINT_API_KEY= line of the local ~/.config/lettermint/credentials on BlackServer so dsh-mail's estate discovery picks it up. Verified live: POST /v1/send with an empty payload returns 422 (auth accepted, validation rejects), never 401. No key value is stored in this repo, in settings.yaml, or in any artifact.

Kill switch

Set DSH_MAIL_DISABLE=1 in the environment or disabled: true in cordis to disable the plugin.

Architecture

lib/index.js      host half — tools, settings, routes, timer
lib/providers.js  multi-provider transport layer
lib/staging.js    queue management, CSV parsing, template personalisation
lib/security.js   4-layer route security (loopback, trust fence, capability, cookie)
src/client.jsx    browser half — sidebar tab UI
scripts/build.mjs esbuild bundler

See docs/DESIGN.md for the full architecture.