Questions tagged [haraka]

Haraka is a flexible and high performance Mail Transfer Agent written in JavaScript using Node.js. Its primary purpose is to provide you an easily-extended SMTP server.

Haraka was an open source Mail Transfer Agent written in Node.js. It achieves high concurrency by using the asynchronous and event driven model from Node.js.

Haraka's architecture is plugin-oriented and event-driven. It provides a SMTP server in its core and other functionalities are implemented as plugins. Every JavaScript developer can write a plugin to change or extend behavior of Haraka.

Haraka documentation can be found here.

2 questions
6
votes
2 answers

How can I configure a Haraka mail server to forward mails to another address on another domain?

I'd like to setup an Haraka mail server on a domain (let's say 'example.com') that will only act as a forwarding service to a 'gmail.com' email address. For the sake of the example let's say I'd like all emails sent to 'me@example.com' to be…
juriejan
  • 161
  • 1
  • 2
0
votes
1 answer

Different SMTP port for sending and receiving emails (serverside)

My current smtp server setup is like this: Inbound emails: Internet -> server1:25 (haraka1 smtp server) -> server1:2525 (haraka2 smtp server) -> server2:25 (Microsoft Exchange) Outgoing emails: server2:25 (Microsoft Exchange) -> ISP's SMTP server…
user12933
  • 111
  • 2