2015-06-13 19:46:07 +02:00
|
|
|
|
2016-04-20 20:47:23 +02:00
|
|
|
/**
|
|
|
|
* POP3 protocol - RFC1939 - https://www.ietf.org/rfc/rfc1939.txt
|
2016-04-20 20:54:44 +02:00
|
|
|
*
|
2016-04-20 20:47:23 +02:00
|
|
|
* Dependencies:
|
|
|
|
* * poplib - https://www.npmjs.com/package/poplib
|
|
|
|
* * nodemailer - https://www.npmjs.com/package/nodemailer
|
|
|
|
* * imap - https://www.npmjs.com/package/imap
|
|
|
|
* * mailparser - https://www.npmjs.com/package/mailparser
|
|
|
|
*/
|
|
|
|
|
2015-06-13 19:46:07 +02:00
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var nodemailer = require("nodemailer");
|
2016-04-20 20:54:44 +02:00
|
|
|
var Imap = require('imap');
|
2016-04-20 20:47:23 +02:00
|
|
|
var POP3Client = require("poplib");
|
|
|
|
var MailParser = require("mailparser").MailParser;
|
|
|
|
var util = require("util");
|
2015-06-13 19:46:07 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
var globalkeys = RED.settings.email || require(process.env.NODE_RED_HOME+"/../emailkeys.js");
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
catch(err) {
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function EmailNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.topic = n.topic;
|
|
|
|
this.name = n.name;
|
|
|
|
this.outserver = n.server;
|
|
|
|
this.outport = n.port;
|
2017-02-13 23:43:43 +01:00
|
|
|
this.secure = n.secure;
|
2015-06-13 19:46:07 +02:00
|
|
|
var flag = false;
|
|
|
|
if (this.credentials && this.credentials.hasOwnProperty("userid")) {
|
|
|
|
this.userid = this.credentials.userid;
|
|
|
|
} else {
|
|
|
|
if (globalkeys) {
|
|
|
|
this.userid = globalkeys.user;
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.credentials && this.credentials.hasOwnProperty("password")) {
|
|
|
|
this.password = this.credentials.password;
|
|
|
|
} else {
|
|
|
|
if (globalkeys) {
|
|
|
|
this.password = globalkeys.pass;
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flag) {
|
|
|
|
RED.nodes.addCredentials(n.id,{userid:this.userid, password:this.password, global:true});
|
|
|
|
}
|
|
|
|
var node = this;
|
|
|
|
|
2017-02-21 14:00:21 +01:00
|
|
|
var smtpOptions = {
|
2015-06-13 19:46:07 +02:00
|
|
|
host: node.outserver,
|
|
|
|
port: node.outport,
|
2017-02-21 14:00:21 +01:00
|
|
|
secure: node.secure
|
|
|
|
}
|
2017-02-15 19:33:05 +01:00
|
|
|
|
2017-02-21 14:07:42 +01:00
|
|
|
if (this.userid && this.password) {
|
2017-02-21 14:00:21 +01:00
|
|
|
smtpOptions.auth = {
|
2015-06-13 19:46:07 +02:00
|
|
|
user: node.userid,
|
|
|
|
pass: node.password
|
2017-02-15 19:33:05 +01:00
|
|
|
};
|
|
|
|
}
|
2017-02-21 14:00:21 +01:00
|
|
|
var smtpTransport = nodemailer.createTransport(smtpOptions);
|
2015-06-13 19:46:07 +02:00
|
|
|
|
|
|
|
this.on("input", function(msg) {
|
|
|
|
if (msg.hasOwnProperty("payload")) {
|
|
|
|
if (smtpTransport) {
|
2015-07-07 22:31:28 +02:00
|
|
|
node.status({fill:"blue",shape:"dot",text:"email.status.sending"});
|
2015-06-13 19:46:07 +02:00
|
|
|
if (msg.to && node.name && (msg.to !== node.name)) {
|
2015-06-16 12:16:29 +02:00
|
|
|
node.warn(RED._("node-red:common.errors.nooverride"));
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
2016-08-03 09:55:39 +02:00
|
|
|
var sendopts = { from: ((msg.from) ? msg.from : node.userid) }; // sender address
|
2015-06-13 19:46:07 +02:00
|
|
|
sendopts.to = node.name || msg.to; // comma separated list of addressees
|
2016-06-03 17:14:20 +02:00
|
|
|
if (node.name === "") {
|
|
|
|
sendopts.cc = msg.cc;
|
|
|
|
sendopts.bcc = msg.bcc;
|
|
|
|
}
|
2015-06-13 19:46:07 +02:00
|
|
|
sendopts.subject = msg.topic || msg.title || "Message from Node-RED"; // subject line
|
2016-05-19 11:13:47 +02:00
|
|
|
if (msg.hasOwnProperty("envelope")) { sendopts.envelope = msg.envelope; }
|
2015-06-13 19:46:07 +02:00
|
|
|
if (Buffer.isBuffer(msg.payload)) { // if it's a buffer in the payload then auto create an attachment instead
|
|
|
|
if (!msg.filename) {
|
|
|
|
var fe = "bin";
|
|
|
|
if ((msg.payload[0] === 0xFF)&&(msg.payload[1] === 0xD8)) { fe = "jpg"; }
|
|
|
|
if ((msg.payload[0] === 0x47)&&(msg.payload[1] === 0x49)) { fe = "gif"; } //46
|
|
|
|
if ((msg.payload[0] === 0x42)&&(msg.payload[1] === 0x4D)) { fe = "bmp"; }
|
|
|
|
if ((msg.payload[0] === 0x89)&&(msg.payload[1] === 0x50)) { fe = "png"; } //4E
|
|
|
|
msg.filename = "attachment."+fe;
|
|
|
|
}
|
2017-04-03 19:02:17 +02:00
|
|
|
var fname = msg.filename.replace(/^.*[\\\/]/, '') || "file.bin";
|
|
|
|
sendopts.attachments = [ { content:msg.payload, filename:fname } ];
|
2015-06-13 19:46:07 +02:00
|
|
|
if (msg.hasOwnProperty("headers") && msg.headers.hasOwnProperty("content-type")) {
|
|
|
|
sendopts.attachments[0].contentType = msg.headers["content-type"];
|
|
|
|
}
|
|
|
|
// Create some body text..
|
2017-04-03 19:02:17 +02:00
|
|
|
sendopts.text = RED._("email.default-message",{filename:fname, description:(msg.description||"")});
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
var payload = RED.util.ensureString(msg.payload);
|
|
|
|
sendopts.text = payload; // plaintext body
|
|
|
|
if (/<[a-z][\s\S]*>/i.test(payload)) { sendopts.html = payload; } // html body
|
|
|
|
if (msg.attachments) { sendopts.attachments = msg.attachments; } // add attachments
|
|
|
|
}
|
|
|
|
smtpTransport.sendMail(sendopts, function(error, info) {
|
|
|
|
if (error) {
|
|
|
|
node.error(error,msg);
|
2015-07-07 22:31:28 +02:00
|
|
|
node.status({fill:"red",shape:"ring",text:"email.status.sendfail"});
|
2015-06-13 19:46:07 +02:00
|
|
|
} else {
|
2015-06-16 11:36:19 +02:00
|
|
|
node.log(RED._("email.status.messagesent",{response:info.response}));
|
2015-06-13 19:46:07 +02:00
|
|
|
node.status({});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-02-15 19:33:05 +01:00
|
|
|
else { node.warn(RED._("email.errors.nosmtptransport")); }
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
2015-06-16 11:36:19 +02:00
|
|
|
else { node.warn(RED._("email.errors.nopayload")); }
|
2015-06-13 19:46:07 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("e-mail",EmailNode,{
|
|
|
|
credentials: {
|
|
|
|
userid: {type:"text"},
|
|
|
|
password: {type: "password"},
|
|
|
|
global: { type:"boolean"}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// EmailInNode
|
|
|
|
//
|
|
|
|
// Setup the EmailInNode
|
2015-06-13 19:46:07 +02:00
|
|
|
function EmailInNode(n) {
|
2016-04-20 20:54:44 +02:00
|
|
|
var imap;
|
|
|
|
|
2015-06-13 19:46:07 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
2016-04-20 20:54:44 +02:00
|
|
|
this.name = n.name;
|
|
|
|
this.repeat = n.repeat * 1000 || 300000;
|
|
|
|
this.inserver = n.server || (globalkeys && globalkeys.server) || "imap.gmail.com";
|
|
|
|
this.inport = n.port || (globalkeys && globalkeys.port) || "993";
|
|
|
|
this.box = n.box || "INBOX";
|
|
|
|
this.useSSL= n.useSSL;
|
|
|
|
this.protocol = n.protocol || "IMAP";
|
2016-04-20 20:47:23 +02:00
|
|
|
this.disposition = n.disposition || "None"; // "None", "Delete", "Read"
|
2016-04-20 20:54:44 +02:00
|
|
|
|
2015-06-13 19:46:07 +02:00
|
|
|
var flag = false;
|
|
|
|
|
|
|
|
if (this.credentials && this.credentials.hasOwnProperty("userid")) {
|
|
|
|
this.userid = this.credentials.userid;
|
|
|
|
} else {
|
|
|
|
if (globalkeys) {
|
|
|
|
this.userid = globalkeys.user;
|
|
|
|
flag = true;
|
|
|
|
} else {
|
2015-06-16 11:36:19 +02:00
|
|
|
this.error(RED._("email.errors.nouserid"));
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.credentials && this.credentials.hasOwnProperty("password")) {
|
|
|
|
this.password = this.credentials.password;
|
|
|
|
} else {
|
|
|
|
if (globalkeys) {
|
|
|
|
this.password = globalkeys.pass;
|
|
|
|
flag = true;
|
|
|
|
} else {
|
2015-06-16 11:36:19 +02:00
|
|
|
this.error(RED._("email.errors.nopassword"));
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flag) {
|
|
|
|
RED.nodes.addCredentials(n.id,{userid:this.userid, password:this.password, global:true});
|
|
|
|
}
|
|
|
|
|
|
|
|
var node = this;
|
|
|
|
this.interval_id = null;
|
2016-04-20 20:54:44 +02:00
|
|
|
|
|
|
|
// Process a new email message by building a Node-RED message to be passed onwards
|
|
|
|
// in the message flow. The parameter called `msg` is the template message we
|
|
|
|
// start with while `mailMessage` is an object returned from `mailparser` that
|
|
|
|
// will be used to populate the email.
|
2016-06-07 16:57:40 +02:00
|
|
|
// DCJ NOTE: - heirachical multipart mime parsers seem to not exist - this one is barely functional.
|
2016-04-20 20:47:23 +02:00
|
|
|
function processNewMessage(msg, mailMessage) {
|
|
|
|
msg = JSON.parse(JSON.stringify(msg)); // Clone the message
|
|
|
|
// Populate the msg fields from the content of the email message
|
|
|
|
// that we have just parsed.
|
2016-06-12 18:04:07 +02:00
|
|
|
msg.payload = mailMessage.text;
|
|
|
|
msg.topic = mailMessage.subject;
|
|
|
|
msg.date = mailMessage.date;
|
2017-02-22 18:55:46 +01:00
|
|
|
msg.header = mailMessage.headers;
|
2016-12-12 22:10:36 +01:00
|
|
|
if (mailMessage.html) { msg.html = mailMessage.html; }
|
|
|
|
if (mailMessage.to && mailMessage.from.to > 0) { msg.to = mailMessage.to; }
|
|
|
|
if (mailMessage.cc && mailMessage.from.cc > 0) { msg.cc = mailMessage.cc; }
|
|
|
|
if (mailMessage.bcc && mailMessage.from.bcc > 0) { msg.bcc = mailMessage.bcc; }
|
|
|
|
if (mailMessage.from && mailMessage.from.length > 0) { msg.from = mailMessage.from[0].address; }
|
|
|
|
if (mailMessage.attachments) { msg.attachments = mailMessage.attachments; }
|
|
|
|
else { msg.attachments = []; }
|
2016-06-12 18:04:07 +02:00
|
|
|
node.send(msg); // Propagate the message down the flow
|
2016-04-20 20:54:44 +02:00
|
|
|
} // End of processNewMessage
|
|
|
|
|
|
|
|
// Check the POP3 email mailbox for any new messages. For any that are found,
|
|
|
|
// retrieve each message, call processNewMessage to process it and then delete
|
|
|
|
// the messages from the server.
|
2016-04-20 20:47:23 +02:00
|
|
|
function checkPOP3(msg) {
|
|
|
|
var currentMessage;
|
|
|
|
var maxMessage;
|
2015-06-13 19:46:07 +02:00
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// Form a new connection to our email server using POP3.
|
2016-04-20 20:47:23 +02:00
|
|
|
var pop3Client = new POP3Client(
|
|
|
|
node.inport, node.inserver,
|
|
|
|
{enabletls: node.useSSL} // Should we use SSL to connect to our email server?
|
|
|
|
);
|
2015-06-13 19:46:07 +02:00
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// If we have a next message to retrieve, ask to retrieve it otherwise issue a
|
|
|
|
// quit request.
|
2016-04-20 20:47:23 +02:00
|
|
|
function nextMessage() {
|
|
|
|
if (currentMessage > maxMessage) {
|
|
|
|
pop3Client.quit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pop3Client.retr(currentMessage);
|
|
|
|
currentMessage++;
|
|
|
|
} // End of nextMessage
|
2016-04-20 20:54:44 +02:00
|
|
|
|
2016-04-20 20:47:23 +02:00
|
|
|
pop3Client.on("stat", function(status, data) {
|
2016-04-20 20:54:44 +02:00
|
|
|
// Data contains:
|
|
|
|
// {
|
|
|
|
// count: <Number of messages to be read>
|
|
|
|
// octect: <size of messages to be read>
|
|
|
|
// }
|
2016-04-20 20:47:23 +02:00
|
|
|
if (status) {
|
2016-04-20 20:54:44 +02:00
|
|
|
currentMessage = 1;
|
|
|
|
maxMessage = data.count;
|
|
|
|
nextMessage();
|
2016-04-20 20:47:23 +02:00
|
|
|
} else {
|
2016-04-20 20:54:44 +02:00
|
|
|
node.log(util.format("stat error: %s %j", status, data));
|
2016-04-20 20:47:23 +02:00
|
|
|
}
|
|
|
|
});
|
2016-04-20 20:54:44 +02:00
|
|
|
|
2016-04-20 20:47:23 +02:00
|
|
|
pop3Client.on("error", function(err) {
|
|
|
|
node.log("We caught an error: " + JSON.stringify(err));
|
|
|
|
});
|
2015-06-13 19:46:07 +02:00
|
|
|
|
2016-04-20 20:47:23 +02:00
|
|
|
pop3Client.on("connect", function() {
|
|
|
|
//node.log("We are now connected");
|
2017-02-04 18:06:19 +01:00
|
|
|
pop3Client.login(node.userid, node.password);
|
2016-04-20 20:47:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
pop3Client.on("login", function(status, rawData) {
|
|
|
|
//node.log("login: " + status + ", " + rawData);
|
|
|
|
if (status) {
|
|
|
|
pop3Client.stat();
|
|
|
|
} else {
|
|
|
|
node.log(util.format("login error: %s %j", status, rawData));
|
|
|
|
pop3Client.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
pop3Client.on("retr", function(status, msgNumber, data, rawData) {
|
2017-02-04 18:06:19 +01:00
|
|
|
// node.log(util.format("retr: status=%s, msgNumber=%d, data=%j", status, msgNumber, data));
|
2016-04-20 20:47:23 +02:00
|
|
|
if (status) {
|
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// We have now received a new email message. Create an instance of a mail parser
|
|
|
|
// and pass in the email message. The parser will signal when it has parsed the message.
|
2016-04-20 20:47:23 +02:00
|
|
|
var mailparser = new MailParser();
|
|
|
|
mailparser.on("end", function(mailObject) {
|
|
|
|
//node.log(util.format("mailparser: on(end): %j", mailObject));
|
|
|
|
processNewMessage(msg, mailObject);
|
|
|
|
});
|
|
|
|
mailparser.write(data);
|
|
|
|
mailparser.end();
|
|
|
|
pop3Client.dele(msgNumber);
|
2016-04-20 20:54:44 +02:00
|
|
|
}
|
2016-04-20 20:47:23 +02:00
|
|
|
else {
|
|
|
|
node.log(util.format("retr error: %s %j", status, rawData));
|
|
|
|
pop3Client.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
pop3Client.on("invalid-state", function(cmd) {
|
|
|
|
node.log("Invalid state: " + cmd);
|
|
|
|
});
|
|
|
|
|
|
|
|
pop3Client.on("locked", function(cmd) {
|
|
|
|
node.log("We were locked: " + cmd);
|
|
|
|
});
|
2016-04-20 20:54:44 +02:00
|
|
|
|
|
|
|
// When we have deleted the last processed message, we can move on to
|
|
|
|
// processing the next message.
|
2016-04-20 20:47:23 +02:00
|
|
|
pop3Client.on("dele", function(status, msgNumber) {
|
|
|
|
nextMessage();
|
|
|
|
});
|
2016-04-20 20:54:44 +02:00
|
|
|
} // End of checkPOP3
|
2016-04-20 20:47:23 +02:00
|
|
|
|
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
//
|
|
|
|
// checkIMAP
|
|
|
|
//
|
|
|
|
// Check the email sever using the IMAP protocol for new messages.
|
2016-04-20 20:47:23 +02:00
|
|
|
function checkIMAP(msg) {
|
2016-06-07 16:57:40 +02:00
|
|
|
node.log("Checking IMAP for new messages");
|
2016-04-20 20:54:44 +02:00
|
|
|
// We get back a 'ready' event once we have connected to imap
|
|
|
|
imap.once("ready", function() {
|
|
|
|
node.status({fill:"blue", shape:"dot", text:"email.status.fetching"});
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> ready");
|
2016-04-20 20:54:44 +02:00
|
|
|
// Open the inbox folder
|
2016-06-27 13:01:19 +02:00
|
|
|
imap.openBox(node.box, // Mailbox name
|
2016-04-20 20:54:44 +02:00
|
|
|
false, // Open readonly?
|
|
|
|
function(err, box) {
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> Inbox open: %j", box);
|
2016-04-20 20:54:44 +02:00
|
|
|
imap.search([ 'UNSEEN' ], function(err, results) {
|
|
|
|
if (err) {
|
|
|
|
node.status({fill:"red", shape:"ring", text:"email.status.foldererror"});
|
|
|
|
node.error(RED._("email.errors.fetchfail", {folder:node.box}),err);
|
2016-06-07 16:57:40 +02:00
|
|
|
imap.end();
|
2016-04-20 20:54:44 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> search - err=%j, results=%j", err, results);
|
2016-04-20 20:54:44 +02:00
|
|
|
if (results.length === 0) {
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log(" [X] - Nothing to fetch");
|
|
|
|
node.status({});
|
|
|
|
imap.end();
|
2016-04-20 20:54:44 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-04-20 20:47:23 +02:00
|
|
|
|
2016-12-12 22:10:36 +01:00
|
|
|
var marks = false;
|
2016-12-21 18:17:35 +01:00
|
|
|
if (node.disposition === "Read") { marks = true; }
|
2016-04-20 20:54:44 +02:00
|
|
|
// We have the search results that contain the list of unseen messages and can now fetch those messages.
|
|
|
|
var fetch = imap.fetch(results, {
|
2016-06-12 18:04:07 +02:00
|
|
|
bodies: '',
|
|
|
|
struct: true,
|
2016-12-12 22:10:36 +01:00
|
|
|
markSeen: marks
|
2016-04-20 20:54:44 +02:00
|
|
|
});
|
2016-04-20 20:47:23 +02:00
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// For each fetched message returned ...
|
|
|
|
fetch.on('message', function(imapMessage, seqno) {
|
2016-06-07 16:57:40 +02:00
|
|
|
//node.log(RED._("email.status.message",{number:seqno}));
|
2016-06-12 18:04:07 +02:00
|
|
|
var messageText = "";
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> Fetch message - msg=%j, seqno=%d", imapMessage, seqno);
|
2016-04-20 20:54:44 +02:00
|
|
|
imapMessage.on('body', function(stream, info) {
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> message - body - stream=?, info=%j", info);
|
2016-04-20 20:54:44 +02:00
|
|
|
stream.on('data', function(chunk) {
|
2016-06-07 16:57:40 +02:00
|
|
|
//console.log("> stream - data - chunk=??");
|
2016-04-20 20:54:44 +02:00
|
|
|
messageText += chunk.toString('utf8');
|
|
|
|
});
|
2016-06-07 16:57:40 +02:00
|
|
|
stream.once('end', function() {
|
2016-06-12 18:04:07 +02:00
|
|
|
var mailParser = new MailParser();
|
|
|
|
mailParser.on('end', function(mailMessage) {
|
|
|
|
processNewMessage(msg, mailMessage);
|
|
|
|
});
|
|
|
|
mailParser.write(messageText);
|
|
|
|
mailParser.end();
|
2016-06-07 16:57:40 +02:00
|
|
|
}); // End of msg->end
|
2016-04-20 20:54:44 +02:00
|
|
|
}); // End of msg->body
|
|
|
|
}); // End of fetch->message
|
2015-06-13 19:46:07 +02:00
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// When we have fetched all the messages, we don't need the imap connection any more.
|
|
|
|
fetch.on('end', function() {
|
2016-12-21 18:17:35 +01:00
|
|
|
node.status({});
|
2016-04-20 20:54:44 +02:00
|
|
|
var cleanup = function() {
|
|
|
|
imap.end();
|
|
|
|
};
|
2016-12-12 22:10:36 +01:00
|
|
|
if (this.disposition === "Delete") {
|
2016-04-20 20:54:44 +02:00
|
|
|
imap.addFlags(results, "\Deleted", cleanup);
|
2016-12-12 22:10:36 +01:00
|
|
|
} else if (this.disposition === "Read") {
|
|
|
|
imap.addFlags(results, "\Seen", cleanup);
|
2016-04-20 20:54:44 +02:00
|
|
|
} else {
|
|
|
|
cleanup();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
fetch.once('error', function(err) {
|
|
|
|
console.log('Fetch error: ' + err);
|
|
|
|
});
|
|
|
|
}); // End of imap->search
|
|
|
|
}); // End of imap->openInbox
|
|
|
|
}); // End of imap->ready
|
|
|
|
node.status({fill:"grey",shape:"dot",text:"node-red:common.status.connecting"});
|
2016-12-21 18:17:35 +01:00
|
|
|
imap.connect();
|
2016-04-20 20:54:44 +02:00
|
|
|
} // End of checkIMAP
|
|
|
|
|
|
|
|
|
|
|
|
// Perform a check of the email inboxes using either POP3 or IMAP
|
2016-04-20 20:47:23 +02:00
|
|
|
function checkEmail(msg) {
|
|
|
|
if (node.protocol === "POP3") {
|
|
|
|
checkPOP3(msg);
|
|
|
|
} else if (node.protocol === "IMAP") {
|
|
|
|
checkIMAP(msg);
|
|
|
|
}
|
2016-04-20 20:54:44 +02:00
|
|
|
} // End of checkEmail
|
2016-04-20 20:47:23 +02:00
|
|
|
|
|
|
|
if (node.protocol === "IMAP") {
|
2016-04-20 20:54:44 +02:00
|
|
|
imap = new Imap({
|
|
|
|
user: node.userid,
|
|
|
|
password: node.password,
|
|
|
|
host: node.inserver,
|
|
|
|
port: node.inport,
|
|
|
|
tls: node.useSSL,
|
|
|
|
tlsOptions: { rejectUnauthorized: false },
|
|
|
|
connTimeout: node.repeat,
|
|
|
|
authTimeout: node.repeat
|
|
|
|
});
|
2016-06-27 13:01:19 +02:00
|
|
|
imap.on('error', function(err) {
|
2016-06-12 18:04:07 +02:00
|
|
|
if (err.errno !== "ECONNRESET") {
|
|
|
|
node.log(err);
|
|
|
|
node.status({fill:"red",shape:"ring",text:"email.status.connecterror"});
|
|
|
|
}
|
2016-04-20 20:54:44 +02:00
|
|
|
});
|
|
|
|
}
|
2016-04-20 20:47:23 +02:00
|
|
|
|
|
|
|
this.on("input", function(msg) {
|
2016-04-20 20:54:44 +02:00
|
|
|
checkEmail(msg);
|
2015-06-13 19:46:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.on("close", function() {
|
|
|
|
if (this.interval_id != null) {
|
|
|
|
clearInterval(this.interval_id);
|
|
|
|
}
|
|
|
|
if (imap) { imap.destroy(); }
|
|
|
|
});
|
|
|
|
|
2016-04-20 20:54:44 +02:00
|
|
|
// Set the repetition timer as needed
|
|
|
|
if (!isNaN(this.repeat) && this.repeat > 0) {
|
|
|
|
this.interval_id = setInterval( function() {
|
|
|
|
node.emit("input",{});
|
|
|
|
}, this.repeat );
|
|
|
|
}
|
|
|
|
|
2015-06-13 19:46:07 +02:00
|
|
|
node.emit("input",{});
|
2016-04-20 20:47:23 +02:00
|
|
|
}
|
2016-04-20 20:54:44 +02:00
|
|
|
|
2015-06-13 19:46:07 +02:00
|
|
|
RED.nodes.registerType("e-mail in",EmailInNode,{
|
|
|
|
credentials: {
|
2016-04-20 20:54:44 +02:00
|
|
|
userid: { type:"text" },
|
2016-04-20 20:47:23 +02:00
|
|
|
password: { type: "password" },
|
2016-04-20 20:54:44 +02:00
|
|
|
global: { type:"boolean" }
|
2015-06-13 19:46:07 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|