haraka / Haraka

A fast, highly extensible, and event driven SMTP server
https://haraka.github.io
MIT License
5.08k stars 661 forks source link

Manual Outbound Email not DKIM signed #880

Closed garyns closed 9 years ago

garyns commented 9 years ago

Sending an email using outbound.send_email(form, to, contents) does not get signed. Should it / can it?' Thanks.

baudehlo commented 9 years ago

Unfortunately it doesn't go through the plugins, so doesn't get signed. The only way to do it (right now) is use something like nodemailer to do a full SMTP connection through your server and send an outbound mail (relay it somehow).

We do kind of consider it a bit of a bug, but it's tough to fix.

On Tue, Mar 10, 2015 at 1:28 AM, garyns notifications@github.com wrote:

Sending an email using outbound.send_email(form, to, contents) does not get signed. Should it / can it?' Thanks.

— Reply to this email directly or view it on GitHub https://github.com/baudehlo/Haraka/issues/880.

garyns commented 9 years ago

Thanks nodemailer was my backup plan. I'll proceed with it.