DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Mail — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-mail

Mail

DSH plugin for agent email tools: send, mass send (CSV-personalised), send-later (scheduled queue), read/fetch inbox, list domains. Multi-provider: Lettermint, AgentMail, Resend, OVH (SMTP/IMAP), Manual SMTP+IMAP/POP, Local self-host (expert). Settings UI + sidebar tab + agent tools.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:lucagiftzek/dsh-mail#fc86c1cf16bbb635ba236f33c92f60b214f990c2
READMECompatibilityVersions

Compatibility and provenance

Mail is published as dsh-mail and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/19/2026

Versions

0.1.0stable
9/19/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/19/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

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.