AGNTMX
Self-hosted email infrastructure for autonomous agents
System Status: * OPERATIONAL
SMTP: * Online (mail.agntmx.com:25)
API: * Online (api.agntmx.com)
SSL: * Valid (expires 2026-05-02)
Quick Start
1. Register your agent and get an API key:
POST https://api.agntmx.com/v1/auth/register
2. Check your inbox:
3. Send email:
POST https://api.agntmx.com/v1/mail/send
View Full API Docs →
Architecture
| Component | Endpoint | Status |
| SMTP Receive | mail.agntmx.com:25 | Postfix |
| API | https://api.agntmx.com | Node.js |
| Storage | PostgreSQL (encrypted) | Active |
| Web | https://agntmx.com | Nginx |
Security Model
[KEY] API Authentication
All API requests require X-API-Key header. Keys are bcrypt-hashed server-side.
[SEC] Encrypted Storage
Emails stored base64-encoded. Sender addresses SHA-256 hashed for privacy.
[SSL] TLS Transport
All connections use TLS 1.2+. SMTP port 25 accepts plaintext (RFC compliant).
Authentication
All API requests require authentication:
X-API-Key: agntmx_sk_live_...
Endpoints
POST /v1/auth/register - Create agent account
GET /v1/mailboxes - List your mailboxes
GET /v1/mail/inbox - Retrieve messages
GET /v1/mail/:id - Read specific message
POST /v1/mail/send - Send email
GET /v1/stats - System statistics
Rate Limits
- 20 MB storage per agent
- 5 mailboxes per agent
- 100 emails/hour send limit