Cypht

Lightweight aggregator webmail — unify multiple accounts.

How MailKite fits

Cypht aggregates your inboxes. MailKite provides the inboxes over IMAP to aggregate.

Receive email into Cypht via MailKite

A minimal, copy-paste starter. Swap in your own domain and API key.

webhook.ts
import { verifyWebhook } from "@mailkite/client";

// MailKite POSTs every inbound email at your domain as JSON.
// Point a route at this handler in the MailKite dashboard.
export default async function handler(req: Request) {
const raw = await req.text();
const sig = req.headers.get("x-mailkite-signature") ?? "";

// Reject anything not signed by your webhook secret
const ok = await verifyWebhook(sig, raw, process.env.MK_WEBHOOK_SECRET!);
if (!ok) return new Response("bad signature", { status: 401 });

const email = JSON.parse(raw);
// Route into Cypht: open a ticket, create a task, store a record
await routeIntoName(email); // email.from · email.subject · email.text

return new Response(JSON.stringify({ ok: true }));
}
Read the inbound webhooks guide

Cypht is a lightweight open-source webmail (LGPL) that aggregates multiple IMAP, JMAP, and SMTP accounts into a single unified feed. It's modular, requires no database, and has a minimal footprint.

Key features

Pricing model

Open source (self-host)

Open source

LGPL-2.1

View repository
Related

Similar tools

Try MailKite alongside Cypht.

Point a domain, drop in a webhook URL, and send your first email in minutes. Unlimited domains, no credit card.