#agenticmail
21 posts with this tag.
-
Why AI Agents Need Real Email Addresses
// · 4 min readThe thesis behind AgenticMail. Why agents need their own email identity, not just API access, and how a self hosted mail server makes it possible.
-
The Outbound Guard: Preventing AI Agents from Leaking Sensitive Data
// · 5 min readHow AgenticMail's outbound guard module uses 30+ detection rules across 5 categories to stop AI agents from accidentally leaking sensitive information through email.
-
Building a Spam Filter That Protects AI Agents from Prompt Injection
// · 5 min readHow AgenticMail's spam filter uses 40+ rules across 9 categories to protect AI agents from prompt injection, social engineering, and data exfiltration attempts.
-
Defending Against Invisible Unicode Attacks in Agent Email
// · 4 min readHow AgenticMail's sanitizer strips invisible Unicode, hidden HTML elements, and other steganographic techniques that attackers use to smuggle instructions past AI agents.
-
Inter Agent Communication: Task Queues and RPC That Actually Work
// · 5 min readHow AgenticMail implements task assignment, RPC with promise based completion, and capability based access control for multi agent coordination.
-
Two Ways to Connect AI Agents to the Internet Email System
// · 4 min readAgenticMail's gateway supports relay mode via Gmail/Outlook sub addressing and domain mode with full DNS, SPF, DKIM, and DMARC configuration through Cloudflare.
-
Building an MCP Server with 62 Tools for Agent Email
// · 5 min readHow AgenticMail's MCP package exposes 62 tools over stdio transport, with stateless design, rich input schemas, telemetry, and a follow up reminder system.
-
Teaching AI Agents to Read SMS and Verification Codes
// · 5 min readHow AgenticMail's SmsManager integrates with Google Voice to give AI agents the ability to receive SMS messages and automatically extract verification codes.
-
Escalating Reminders Done Right: The Pending Email Follow Up System
// · 5 min readHow AgenticMail handles blocked outbound emails with an escalating reminder schedule, heartbeat polling, and clean process lifecycle management.
-
Sub Agent Lifecycle Management and Garbage Collection
// · 5 min readHow the OpenClaw plugin auto provisions temporary agent accounts and garbage collects stale ones on a 15 minute interval.
-
Full Text Search in SQLite: Using FTS5 for Agent Email
// · 5 min readHow AgenticMail uses SQLite's FTS5 virtual tables for fast email search, and why query sanitization matters more than you'd think.
-
Constant Time Authentication and Why It Matters
// · 5 min readHow AgenticMail uses SHA-256 hashing and timingSafeEqual for API key verification, plus a two tier key system for admin and scoped agent access.
-
The Conversational Fallacy: Why Text Based Agent Orchestration is Broken
// · 4 min readA look at the LaTeX research paper from the AgenticMail repo on structured RPC versus conversational sub agent spawning, and the 53x speedup that proves the point.
-
Designing a REST API with 107 Endpoints for AI Agent Email
// · 5 min readHow the @agenticmail/api package structures 107 endpoints across 11 route modules using Express, factory patterns, and connection pooling.
-
Building a Developer Friendly CLI with an Interactive Shell
// · 5 min readHow the agenticmail CLI balances developer experience with system management through animated spinners, setup wizards, and an interactive shell.
-
Building an OpenClaw Plugin: Hooks, Channels, and Auto Provisioning
// · 5 min readHow the @agenticmail/openclaw package integrates AgenticMail into OpenClaw with 52 tools, lifecycle hooks, and automatic sub agent provisioning.
-
Structuring a TypeScript Monorepo: Five Packages, One Product
// · 5 min readHow AgenticMail's monorepo uses npm workspaces, tsup, and a clean dependency graph to ship five packages from one repository.
-
Defense in Depth: Client Side and Server Side Outbound Scanning
// · 5 min readWhy AgenticMail scans outbound email at two layers: 35 regex patterns in the MCP client and a blocking guard in the API server.
-
Real Time Email Notifications with Server Sent Events
// · 5 min readHow AgenticMail uses SSE and IMAP IDLE to push new email notifications to agents in real time, with inline spam filtering and rule evaluation.
-
Email Templates with Variable Substitution and Natural Language Scheduling
// · 5 min readHow AgenticMail's features route handles templates with {{var}} substitution, natural language scheduled sends, drafts, signatures, and tag based organization.
-
Giving AI Agents Their Own Database: A Full DBMS Over REST
// · 6 min readHow AgenticMail's storage route exposes 28 database operations over REST, giving AI agents DDL, DML, index management, and import/export capabilities.