-
-
Notifications
You must be signed in to change notification settings - Fork 663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mail forwarder #2297
Comments
I'm a bit confused by this: In the "create your own disposable email server" tutorial, there is no mention of the plugin setting In that example, they change |
Don't. Use nodemailer for sending emails. |
Email forwarder:
My aim is to have a database that maps 1 email address to another based on a database table.
eg.
A@X.com (alias) => C@D.com (real email address)
E@X.com (alias) => P@Q.com (real email address)
When the incoming mail gets received and then forwarded to the real email address, the real email address should ideally not realise that the email was forwarded. When they click reply for example, it should reply to the original sender.
I tried to implement it using Haraka a while ago but services like hotmail and gmail recognised that a email forwarding was happening and rejected the forwarded email.
I was informed by @smfreegard #1318 (comment) , that I must use SRS sender rewriting scheme for forwarding.
I found a plugin that supposedly does that:
https://github.com/swerter/haraka-plugins/blob/master/plugins/srs.js (this should be included with Haraka in my opinion)
https://gist.github.com/64kps/285ff2c3dce9d326f910
I was now wondering how to do the actual sending. Which plugin do i use? I don't understand the subtle differences in the documentation:
Thanks in advance
The text was updated successfully, but these errors were encountered: