node-red / node-red-nodes

Extra nodes for Node-RED
Other
988 stars 593 forks source link

social/email-in module cannot get mail #132

Open jwcrawley opened 9 years ago

jwcrawley commented 9 years ago

Greetings,

I have my server, crankylinuxuser.net serving imap. After setting up the email node, I get the following error via console:

[info] [e-mail in:a72f2d64.baf0c8] Error: 140244797482880:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:795:

My server requires encrypted auth before further communicating. This IP block was previously on a spamhaus ban, which necessitated me to raise IMAP/SMTP to max security settings to have it lifted.

Is there a good chance for full encryption support to be added? If not, I'll close this.

Sincerely, Josh Conway

ghost commented 8 years ago

Did you ever sort this out?


var smtpTransport = nodemailer.createTransport({
            host: node.outserver,
            port: node.outport,
            secure: true,
            auth: {
                user: node.userid,
                pass: node.password
            }
        });

I think the 'secure: true' is the issue here but I cannot find this module in my raspberry pi to test it.