haraka/Haraka

A fast, highly extensible, and event driven SMTP server

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 26 minutes ago
Added to GitGenius on September 12th, 2026
Created on March 10th, 2011
Open Issues & Pull Requests: 1 (+0)
GitHub issues: Enabled
Number of forks: 713
Total Stargazers: 5,616 (+0)
Total Subscribers: 141 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 17.1 hours
Mean response time: 64.4 days
90th percentile: 70.4 days
Tracked items: 71

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 11% of issues opened in the past year have been closed. Three people close 89% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 0
New in 7 days: 0
Closed in 7 days: 0
Avg open age: N/A days
Stale 30+ days: 0
Stale 90+ days: 0

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • question (10)
  • Feature Request (7)
  • help wanted (6)
  • Documentation (5)
  • Bug (4)
  • Outbound (4)
  • Works As Designed (4)
  • dependencies (2)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Haraka is a Node.js SMTP server that handles thousands of concurrent connections with a modular plugin architecture optimized for throughput and low latency.

Haraka solves the problem of building scalable mail infrastructure by providing an event-driven SMTP server where every transaction flows through well-defined hooks—connect, helo, mail, rcpt, data, data_post, queue, and others—that can be extended with asynchronous JavaScript plugins. This approach means behaviors requiring custom MTA code elsewhere become small plugin files in Haraka. The server includes a built-in outbound delivery engine that automatically queues mail flagged for relaying, and it offers strong spam protection through its plugin ecosystem.

Haraka suits organizations needing a filtering MTA or message submission agent (MSA) that can scale horizontally. It works alongside mail stores, LDAs, and IMAP servers rather than replacing them. The tool is particularly valuable for teams comfortable with JavaScript who need to customize mail handling logic—such as rewriting addresses, integrating with external APIs, or implementing domain-specific routing—without forking the core codebase. A comprehensive plugin registry covers auth, DNSBLs, DKIM, SpamAssassin, rspamd, Redis, ClamAV, and various queue backends, reducing the need to write plugins from scratch.

The project maintains active engagement with its community through GitHub issues and a mailing list implemented as a Haraka plugin itself. Documentation is comprehensive, including a plugin registry, core API documentation, a step-by-step tutorial, and a screencast for getting started. The codebase accepts contributions and maintains a security policy with a documented reporting process.