2026-02-10 16:25:55 +00:00
# @push.rocks/smartmta
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with a Rust-powered SMTP engine — no nodemailer, no shortcuts. 🚀
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
## Issue Reporting and Security
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/ ](https://community.foss.global/ ). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/ ](https://code.foss.global/ ) account to submit Pull Requests directly.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
## Install
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```bash
pnpm install @push .rocks/smartmta
# or
npm install @push .rocks/smartmta
```
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
After installation, run `pnpm build` to compile the Rust binary (`mailer-bin` ). The Rust binary is **required ** — `smartmta` will not start without it.
2026-02-10 16:25:55 +00:00
## Overview
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
`@push.rocks/smartmta` is a **complete mail server solution ** — SMTP server, SMTP client, email security, content scanning, and delivery management — all built with a custom SMTP implementation. The SMTP engine runs as a Rust binary for maximum performance, communicating with the TypeScript orchestration layer via JSON-over-stdin/stdout IPC.
2026-02-10 16:25:55 +00:00
2026-02-10 22:04:56 +00:00
### ⚡ What's Inside
2026-02-10 16:25:55 +00:00
| Module | What It Does |
|---|---|
2026-02-11 07:36:54 +00:00
| **Rust SMTP Server ** | High-performance SMTP engine in Rust — TCP/TLS listener, STARTTLS, AUTH, pipelining, per-connection rate limiting |
| **Rust SMTP Client ** | Outbound delivery with connection pooling, retry logic, TLS negotiation, DKIM signing — all in Rust |
2026-02-10 22:04:56 +00:00
| **DKIM ** | Key generation, signing, and verification — per domain, with automatic rotation |
| **SPF ** | Full SPF record validation via Rust |
2026-02-10 16:25:55 +00:00
| **DMARC ** | Policy enforcement and verification |
| **Email Router ** | Pattern-based routing with priority, forward/deliver/reject/process actions |
2026-02-10 22:04:56 +00:00
| **Bounce Manager ** | Automatic bounce detection via Rust, classification (hard/soft), and suppression tracking |
| **Content Scanner ** | Spam, phishing, malware, XSS, and suspicious link detection — powered by Rust |
| **IP Reputation ** | DNSBL checks, proxy/TOR/VPN detection, risk scoring via Rust |
2026-02-10 16:57:14 +00:00
| **Rate Limiter ** | Hierarchical rate limiting (global, per-domain, per-IP) |
2026-02-10 16:25:55 +00:00
| **Delivery Queue ** | Persistent queue with exponential backoff retry |
| **Template Engine ** | Email templates with variable substitution |
| **Domain Registry ** | Multi-domain management with per-domain configuration |
2026-02-11 07:36:54 +00:00
| **DNS Manager ** | Automatic DNS record management (MX, SPF, DKIM, DMARC) |
2026-02-10 16:25:55 +00:00
2026-02-10 22:04:56 +00:00
### 🏗️ Architecture
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
┌──────────────────────────────────────────────────────────────┐
│ UnifiedEmailServer │
│ (orchestrates all components, emits events) │
├───────────┬───────────┬──────────────┬───────────────────────┤
│ Email │ Security │ Delivery │ Configuration │
│ Router │ Stack │ System │ │
│ ┌──────┐ │ ┌───────┐ │ ┌──────────┐ │ ┌────────────────┐ │
│ │Match │ │ │ DKIM │ │ │ Queue │ │ │ DomainRegistry │ │
│ │Route │ │ │ SPF │ │ │ Rate Lim │ │ │ DnsManager │ │
2026-02-11 07:36:54 +00:00
│ │ Act │ │ │ DMARC │ │ │ Retry │ │ │ DKIMCreator │ │
│ └──────┘ │ │ IPRep │ │ └──────────┘ │ │ Templates │ │
│ │ │ Scan │ │ │ └────────────────┘ │
2026-02-10 22:04:56 +00:00
│ │ └───────┘ │ │ │
├───────────┴───────────┴──────────────┴───────────────────────┤
│ Rust Security Bridge (smartrust IPC) │
├──────────────────────────────────────────────────────────────┤
│ Rust Acceleration Layer │
│ ┌──────────────┐ ┌───────────────┐ ┌──────────────────┐ │
│ │ mailer-smtp │ │mailer-security│ │ mailer-core │ │
│ │ SMTP Server │ │DKIM/SPF/DMARC │ │ Types/Validation │ │
2026-02-11 07:36:54 +00:00
│ │ SMTP Client │ │IP Rep/Content │ │ MIME/Bounce │ │
│ │ TLS/AUTH │ │ Scanning │ │ Detection │ │
2026-02-10 22:04:56 +00:00
│ └──────────────┘ └───────────────┘ └──────────────────┘ │
└──────────────────────────────────────────────────────────────┘
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
**Data flow for inbound mail:**
2026-02-11 07:36:54 +00:00
1. 📨 Rust SMTP server accepts the connection and handles the full SMTP protocol
2. 🔒 On `DATA` completion, Rust runs the security pipeline **in-process ** (DKIM/SPF/DMARC verification, content scanning, IP reputation check) — zero IPC round-trips
3. 📤 Rust emits an `emailReceived` event via IPC with pre-computed security results attached
4. 🔀 TypeScript processes the email (routing decisions using the pre-computed results, delivery)
5. ✅ Rust sends the final SMTP response to the client
**Data flow for outbound mail:**
1. 📝 TypeScript constructs the email and resolves DKIM keys for the sender domain
2. 🦀 Sends to Rust via IPC — Rust builds the RFC 2822 message, signs with DKIM, and delivers via its SMTP client with connection pooling
3. 📬 Result (accepted/rejected recipients, server response) returned to TypeScript
2026-02-10 22:04:56 +00:00
2026-02-10 16:25:55 +00:00
## Usage
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
### 🚀 Setting Up the Email Server
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
The central entry point is `UnifiedEmailServer` , which orchestrates the Rust SMTP server, routing, security, and delivery:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
import { UnifiedEmailServer } from '@push .rocks/smartmta';
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
const emailServer = new UnifiedEmailServer(dcRouterRef, {
2026-02-10 22:04:56 +00:00
// Ports to listen on (465 = implicit TLS, 25/587 = STARTTLS)
2026-02-10 16:25:55 +00:00
ports: [25, 587, 465],
hostname: 'mail.example.com',
2026-02-10 22:04:56 +00:00
// Multi-domain configuration
2026-02-10 16:25:55 +00:00
domains: [
{
domain: 'example.com',
dnsMode: 'external-dns',
dkim: {
selector: 'default',
keySize: 2048,
rotateKeys: true,
rotationInterval: 90,
},
rateLimits: {
2026-02-10 22:04:56 +00:00
outbound: { messagesPerMinute: 100 },
inbound: { messagesPerMinute: 200, connectionsPerIp: 20 },
2026-02-10 16:25:55 +00:00
},
},
],
2026-02-10 22:04:56 +00:00
// Routing rules (evaluated by priority, highest first)
2026-02-10 16:25:55 +00:00
routes: [
{
name: 'catch-all-forward',
priority: 10,
match: {
recipients: '*@example .com',
},
action: {
type: 'forward',
forward: {
host: 'internal-mail.example.com',
port: 25,
},
},
},
{
name: 'reject-spam-senders',
priority: 100,
match: {
senders: '*@spamdomain .com',
},
action: {
type: 'reject',
reject: {
code: 550,
message: 'Sender rejected by policy',
},
},
},
],
2026-02-10 22:04:56 +00:00
// Authentication settings for the SMTP server
2026-02-10 16:25:55 +00:00
auth: {
required: false,
methods: ['PLAIN', 'LOGIN'],
users: [{ username: 'outbound', password: 'secret' }],
},
2026-02-10 22:04:56 +00:00
// TLS certificates
2026-02-10 16:25:55 +00:00
tls: {
certPath: '/etc/ssl/mail.crt',
keyPath: '/etc/ssl/mail.key',
},
2026-02-10 22:04:56 +00:00
2026-02-10 16:25:55 +00:00
maxMessageSize: 25 * 1024 * 1024, // 25 MB
maxClients: 500,
});
2026-02-10 22:04:56 +00:00
// start() boots the Rust SMTP server, security bridge, DNS records, and delivery queue
2026-02-10 16:25:55 +00:00
await emailServer.start();
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
> 🔒 **Note:** `start()` will throw if the Rust binary is not compiled. Run `pnpm build` first.
2026-02-11 07:36:54 +00:00
### 📧 Sending Outbound Emails
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
All outbound email delivery goes through the Rust SMTP client, accessed via `UnifiedEmailServer.sendOutboundEmail()` . The Rust client handles connection pooling, TLS negotiation, and DKIM signing automatically:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
2026-02-11 07:36:54 +00:00
import { Email, UnifiedEmailServer } from '@push .rocks/smartmta';
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
// Build an email
const email = new Email({
from: 'sender@example .com',
to: ['recipient@example .com'],
cc: ['cc@example .com'],
2026-02-11 07:36:54 +00:00
subject: 'Hello from smartmta! 🚀',
2026-02-10 16:25:55 +00:00
text: 'Plain text body',
html: '<h1>Hello!</h1><p>HTML body with <strong>formatting</strong></p>',
priority: 'high',
attachments: [
{
filename: 'report.pdf',
content: pdfBuffer,
contentType: 'application/pdf',
},
],
});
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
// Send via the Rust SMTP client (connection pooling, TLS, DKIM signing)
const result = await emailServer.sendOutboundEmail('smtp.example.com', 587, email, {
auth: { user: 'sender@example .com', pass: 'your-password' },
dkimDomain: 'example.com',
dkimSelector: 'default',
});
2026-02-10 22:04:56 +00:00
2026-02-11 07:36:54 +00:00
console.log(`Accepted: ${result.accepted.join(', ')}` );
console.log(`Response: ${result.response}` );
// -> Accepted: recipient@example .com
// -> Response: 2.0.0 Ok: queued
2026-02-10 22:04:56 +00:00
```
2026-02-11 07:36:54 +00:00
The `sendOutboundEmail` method:
- 🔑 Automatically resolves DKIM keys from the `DKIMCreator` for the specified domain
- 🔗 Uses connection pooling in Rust — reuses TCP/TLS connections across sends
- ⏱️ Configurable connection and socket timeouts via `outbound` options on the server
### 🔑 DKIM Signing & Key Management
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
DKIM key management is handled by `DKIMCreator` , which generates, stores, and rotates keys per domain. Signing is performed automatically by the Rust SMTP client during outbound delivery:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
import { DKIMCreator } from '@push .rocks/smartmta';
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
const dkimCreator = new DKIMCreator('/path/to/keys', storageManager);
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
// Auto-generate keys if they don't exist
await dkimCreator.handleDKIMKeysForDomain('example.com');
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
// Get the DNS record you need to publish
const dnsRecord = await dkimCreator.getDNSRecordForDomain('example.com');
console.log(dnsRecord);
2026-02-10 16:57:14 +00:00
// -> { type: 'TXT', name: 'default._domainkey.example.com', value: 'v=DKIM1; k=rsa; p=...' }
// Check if keys need rotation
const needsRotation = await dkimCreator.needsRotation('example.com', 'default', 90);
if (needsRotation) {
const newSelector = await dkimCreator.rotateDkimKeys('example.com', 'default', 2048);
console.log(`Rotated to selector: ${newSelector}` );
}
2025-10-24 08:09:29 +00:00
```
2026-02-11 07:36:54 +00:00
When `UnifiedEmailServer.start()` is called:
- DKIM keys are generated or loaded for every configured domain
- Signing is applied to all outbound mail via the Rust security bridge
- Key rotation is checked automatically based on your `rotationInterval` config
2026-02-10 16:57:14 +00:00
2026-02-10 22:04:56 +00:00
### 🛡️ Email Authentication (SPF, DKIM, DMARC)
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
All verification is powered by the Rust binary. For inbound mail, `UnifiedEmailServer` runs the full security pipeline **automatically ** — DKIM, SPF, DMARC, content scanning, and IP reputation in a single Rust pass. Results are attached as headers (`Received-SPF` , `X-DKIM-Result` , `X-DMARC-Result` ).
You can also use the individual verifiers directly:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
import { DKIMVerifier, SpfVerifier, DmarcVerifier } from '@push .rocks/smartmta';
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
// SPF verification
2026-02-10 16:25:55 +00:00
const spfVerifier = new SpfVerifier();
2026-02-10 16:57:14 +00:00
const spfResult = await spfVerifier.verify(email, senderIP, heloDomain);
2026-02-11 07:36:54 +00:00
// -> { result: 'pass' | 'fail' | 'softfail' | 'neutral' | 'none', domain, ip }
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
// DKIM verification
2026-02-10 16:25:55 +00:00
const dkimVerifier = new DKIMVerifier();
const dkimResult = await dkimVerifier.verify(rawEmailContent);
2026-02-11 07:36:54 +00:00
// -> [{ is_valid: true, domain: 'example.com', selector: 'default', status: 'pass' }]
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
// DMARC verification
2026-02-10 16:25:55 +00:00
const dmarcVerifier = new DmarcVerifier();
2026-02-10 16:57:14 +00:00
const dmarcResult = await dmarcVerifier.verify(email, spfResult, dkimResult);
2026-02-11 07:36:54 +00:00
// -> { action: 'pass' | 'quarantine' | 'reject', policy, spfDomainAligned, dkimDomainAligned }
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
### 🔀 Email Routing
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
Pattern-based routing engine with priority ordering and flexible match criteria. Routes are evaluated by priority (highest first):
2026-02-10 16:25:55 +00:00
```typescript
import { EmailRouter } from '@push .rocks/smartmta';
const router = new EmailRouter([
{
name: 'admin-mail',
priority: 100,
match: {
recipients: 'admin@example .com',
authenticated: true,
},
action: {
type: 'deliver',
},
},
{
name: 'external-forward',
priority: 50,
match: {
recipients: '*@example .com',
2026-02-11 07:36:54 +00:00
sizeRange: { max: 10 * 1024 * 1024 }, // under 10MB
2026-02-10 16:25:55 +00:00
},
action: {
type: 'forward',
forward: {
host: 'backend-mail.internal',
port: 25,
preserveHeaders: true,
},
},
},
{
name: 'process-with-scanning',
priority: 10,
match: {
recipients: '*@*',
},
action: {
type: 'process',
process: {
scan: true,
dkim: true,
queue: 'normal',
},
},
},
]);
2025-10-24 08:09:29 +00:00
2026-02-10 16:57:14 +00:00
// Evaluate routes against an email context
const matchedRoute = await router.evaluateRoutes(emailContext);
2025-10-24 08:09:29 +00:00
```
2026-02-11 07:36:54 +00:00
#### Route Action Types
| Action | Description |
|---|---|
| `forward` | Forward the email to another SMTP server via the Rust SMTP client |
| `deliver` | Queue for local MTA delivery |
| `process` | Queue for processing (with optional content scanning and DKIM signing) |
| `reject` | Reject with a configurable SMTP error code and message |
#### Match Criteria
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
| Criterion | Description |
|---|---|
| `recipients` | Glob patterns for recipient addresses (`*@example.com` ) |
| `senders` | Glob patterns for sender addresses |
| `clientIp` | IP addresses or CIDR ranges |
| `authenticated` | Require authentication status |
| `headers` | Match specific headers (string or RegExp) |
| `sizeRange` | Message size constraints (`{ min?, max? }` ) |
| `subject` | Subject line pattern (string or RegExp) |
| `hasAttachments` | Filter by attachment presence |
### ⏱️ Rate Limiting
2026-02-10 16:57:14 +00:00
2026-02-10 22:04:56 +00:00
Hierarchical rate limiting to protect your server and maintain deliverability:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
2026-02-10 22:04:56 +00:00
import { Delivery } from '@push .rocks/smartmta';
const { UnifiedRateLimiter } = Delivery;
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
const rateLimiter = new UnifiedRateLimiter({
global: {
2026-02-10 16:57:14 +00:00
maxMessagesPerMinute: 1000,
maxRecipientsPerMessage: 500,
maxConnectionsPerIP: 20,
maxErrorsPerIP: 10,
maxAuthFailuresPerIP: 5,
blockDuration: 600000, // 10 minutes
2026-02-10 16:25:55 +00:00
},
2026-02-10 16:57:14 +00:00
domains: {
2026-02-10 16:25:55 +00:00
'example.com': {
2026-02-10 16:57:14 +00:00
maxMessagesPerMinute: 100,
maxRecipientsPerMessage: 50,
2026-02-10 16:25:55 +00:00
},
},
2025-10-24 08:09:29 +00:00
});
2026-02-10 16:57:14 +00:00
// Check before sending
const allowed = rateLimiter.checkMessageLimit(
'sender@example .com',
'192.168.1.1',
recipientCount,
undefined,
'example.com'
);
if (!allowed.allowed) {
console.log(`Rate limited: ${allowed.reason}` );
}
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
### 📬 Bounce Management
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
Automatic bounce detection (via Rust), classification, and suppression tracking:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
2026-02-10 22:04:56 +00:00
import { Core } from '@push .rocks/smartmta';
const { BounceManager } = Core;
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
const bounceManager = new BounceManager();
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
// Process an SMTP failure
const bounce = await bounceManager.processSmtpFailure(
'recipient@example .com',
'550 5.1.1 User unknown',
{ originalEmailId: 'msg-123' }
);
2026-02-10 16:57:14 +00:00
// -> { bounceType: 'invalid_recipient', bounceCategory: 'hard', ... }
// Check if an address is suppressed due to bounces
const suppressed = bounceManager.isEmailSuppressed('recipient@example .com');
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
// Manage the suppression list
2026-02-10 16:57:14 +00:00
bounceManager.addToSuppressionList('bad@example .com', 'repeated hard bounces');
bounceManager.removeFromSuppressionList('recovered@example .com');
2025-10-24 08:09:29 +00:00
```
2026-02-10 22:04:56 +00:00
### 📝 Email Templates
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
Template engine with variable substitution for transactional and notification emails:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
2026-02-10 22:04:56 +00:00
import { Core } from '@push .rocks/smartmta';
const { TemplateManager } = Core;
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
const templates = new TemplateManager({
from: 'noreply@example .com',
2026-02-10 22:04:56 +00:00
footerHtml: '<p>© 2026 Example Corp</p>',
2026-02-10 16:25:55 +00:00
});
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
// Register a template
templates.registerTemplate({
id: 'welcome',
name: 'Welcome Email',
description: 'Sent to new users',
from: 'welcome@example .com',
subject: 'Welcome, {{name}}!',
bodyHtml: '<h1>Welcome, {{name}}!</h1><p>Your account is ready.</p>',
bodyText: 'Welcome, {{name}}! Your account is ready.',
category: 'transactional',
});
2025-10-24 08:09:29 +00:00
2026-02-10 16:57:14 +00:00
// Create an Email object from the template
const email = await templates.createEmail('welcome', {
2026-02-10 16:25:55 +00:00
to: 'newuser@example .com',
variables: { name: 'Alice' },
});
```
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
### 🌍 DNS Management
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
When `UnifiedEmailServer.start()` is called, it automatically ensures MX, SPF, DKIM, and DMARC records are in place for all configured domains:
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```typescript
2026-02-10 16:57:14 +00:00
const emailServer = new UnifiedEmailServer(dcRouterRef, {
hostname: 'mail.example.com',
2026-02-10 16:25:55 +00:00
domains: [
{
domain: 'example.com',
2026-02-11 07:36:54 +00:00
dnsMode: 'external-dns', // managed via Cloudflare API
2026-02-10 16:25:55 +00:00
},
],
2026-02-10 16:57:14 +00:00
// ... other config
2026-02-10 16:25:55 +00:00
});
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
// DNS records are set up automatically on start:
// - MX records pointing to your mail server
// - SPF TXT records authorizing your server IP
// - DKIM TXT records with public keys from DKIMCreator
// - DMARC TXT records with your policy
2026-02-10 16:57:14 +00:00
await emailServer.start();
2026-02-10 16:25:55 +00:00
```
2025-10-24 08:09:29 +00:00
2026-02-10 22:04:56 +00:00
## 🦀 Rust Acceleration Layer
2026-02-11 07:36:54 +00:00
Performance-critical operations are implemented in Rust and communicate with the TypeScript runtime via `@push.rocks/smartrust` (JSON-over-stdin/stdout IPC). The Rust workspace lives at `rust/` with four crates:
2026-02-10 22:04:56 +00:00
| Crate | Status | Purpose |
|---|---|---|
| `mailer-core` | ✅ Complete (26 tests) | Email types, validation, MIME building, bounce detection |
| `mailer-security` | ✅ Complete (22 tests) | DKIM sign/verify, SPF, DMARC, IP reputation/DNSBL, content scanning |
2026-02-11 07:36:54 +00:00
| `mailer-smtp` | ✅ Complete (106 tests) | Full SMTP protocol engine — TCP/TLS server + client, STARTTLS, AUTH, pipelining, connection pooling, in-process security pipeline |
| `mailer-bin` | ✅ Complete | CLI + smartrust IPC bridge — wires everything together |
2026-02-10 22:04:56 +00:00
2026-02-11 07:36:54 +00:00
### What Runs Where
2026-02-10 22:04:56 +00:00
| Operation | Runs In | Why |
|---|---|---|
2026-02-11 07:36:54 +00:00
| SMTP server (port listening, protocol, TLS) | 🦀 Rust | Performance, memory safety, zero-copy parsing |
| SMTP client (outbound delivery, connection pooling) | 🦀 Rust | Connection management, TLS negotiation |
| DKIM signing & verification | 🦀 Rust | Crypto-heavy, benefits from native speed |
| SPF validation | 🦀 Rust | DNS lookups with async resolver |
| DMARC policy checking | 🦀 Rust | Integrates with SPF/DKIM results |
| IP reputation / DNSBL | 🦀 Rust | Parallel DNS queries |
| Content scanning (text patterns) | 🦀 Rust | Regex engine performance |
| Bounce detection (pattern matching) | 🦀 Rust | Regex engine performance |
| Email validation & MIME building | 🦀 Rust | Parsing performance |
| Email routing & orchestration | 🟦 TypeScript | Business logic, flexibility |
| Delivery queue & retry | 🟦 TypeScript | State management, persistence |
| Template rendering | 🟦 TypeScript | String interpolation |
| Domain & DNS management | 🟦 TypeScript | API integrations |
## 📁 Project Structure
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
```
smartmta/
2026-02-10 22:04:56 +00:00
├── ts/ # TypeScript source
2026-02-10 16:25:55 +00:00
│ ├── mail/
2026-02-10 22:04:56 +00:00
│ │ ├── core/ # Email, EmailValidator, BounceManager, TemplateManager
2026-02-11 07:36:54 +00:00
│ │ ├── delivery/ # DeliveryQueue, DeliverySystem, RateLimiter
2026-02-10 22:04:56 +00:00
│ │ ├── routing/ # UnifiedEmailServer, EmailRouter, DomainRegistry, DnsManager
│ │ └── security/ # DKIMCreator, DKIMVerifier, SpfVerifier, DmarcVerifier
│ └── security/ # ContentScanner, IPReputationChecker, RustSecurityBridge
├── rust/ # Rust workspace
│ └── crates/
│ ├── mailer-core/ # Email types, validation, MIME, bounce detection
│ ├── mailer-security/ # DKIM, SPF, DMARC, IP reputation, content scanning
2026-02-11 07:36:54 +00:00
│ ├── mailer-smtp/ # Full SMTP server + client (TCP/TLS, rate limiting, pooling)
│ └── mailer-bin/ # CLI + smartrust IPC bridge
├── test/ # Test suite (116 TypeScript + 154 Rust tests)
2026-02-10 22:04:56 +00:00
├── dist_ts/ # Compiled TypeScript output
└── dist_rust/ # Compiled Rust binaries
2026-02-10 16:25:55 +00:00
```
2025-10-24 08:09:29 +00:00
2026-02-11 07:36:54 +00:00
## 🧪 Testing
The project has comprehensive test coverage with both unit and end-to-end tests:
```bash
# Build Rust binary first
pnpm build
# Run all tests
pnpm test
# Run specific test files
tstest test/test.e2e.server-lifecycle.node.ts --verbose --timeout 60
tstest test/test.e2e.inbound-smtp.node.ts --verbose --timeout 60
tstest test/test.e2e.routing-actions.node.ts --verbose --timeout 60
tstest test/test.e2e.outbound-delivery.node.ts --verbose --timeout 60
```
**E2E tests** exercise the full pipeline — starting `UnifiedEmailServer` , connecting via raw TCP sockets, sending SMTP transactions, verifying routing actions, and testing outbound delivery through a mock SMTP receiver.
## API Reference
### Exported Classes (top-level)
| Class | Description |
|---|---|
| `UnifiedEmailServer` | 🎯 Main entry point — orchestrates SMTP server, routing, security, and delivery |
| `Email` | Email message class with validation, attachments, headers, and RFC 822 serialization |
| `EmailRouter` | Pattern-based route matching and evaluation engine |
| `DomainRegistry` | Multi-domain configuration manager |
| `DnsManager` | Automatic DNS record management |
| `DKIMCreator` | DKIM key generation, storage, rotation |
| `DKIMVerifier` | DKIM signature verification (delegates to Rust) |
| `SpfVerifier` | SPF record validation (delegates to Rust) |
| `DmarcVerifier` | DMARC policy enforcement (delegates to Rust) |
### Namespaced Exports
| Namespace | Classes |
|---|---|
| `Core` | `Email` , `EmailValidator` , `TemplateManager` , `BounceManager` |
| `Delivery` | `UnifiedDeliveryQueue` , `MultiModeDeliverySystem` , `DeliveryStatus` , `UnifiedRateLimiter` |
2026-02-10 16:25:55 +00:00
## License and Legal Information
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE ](./LICENSE ) file.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
### Trademarks
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
### Company Information
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
Task Venture Capital GmbH
Registered at District Court Bremen HRB 35230 HB, Germany
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
For any legal inquiries or further information, please contact us via email at hello@task .vc.
2025-10-24 08:09:29 +00:00
2026-02-10 16:25:55 +00:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.