Re-lint a load of nodes

This commit is contained in:
Dave Conway-Jones
2017-01-29 17:45:44 +00:00
parent 603189f123
commit 316a2fd272
42 changed files with 447 additions and 254 deletions

View File

@@ -19,7 +19,8 @@ module.exports = function(RED) {
try {
var globalkeys = RED.settings.email || require(process.env.NODE_RED_HOME+"/../emailkeys.js");
} catch(err) {
}
catch(err) {
}
function EmailNode(n) {
@@ -57,7 +58,7 @@ module.exports = function(RED) {
var smtpTransport = nodemailer.createTransport({
host: node.outserver,
port: node.outport,
secure: true,
secure: node.useSSL,
auth: {
user: node.userid,
pass: node.password

View File

@@ -1,6 +1,6 @@
{
"name": "node-red-node-email",
"version": "0.1.15",
"version": "0.1.16",
"description": "Node-RED nodes to send and receive simple emails",
"dependencies": {
"nodemailer": "^1.11.0",