Built motion from commit 82438f7.|0.0.115
[motion.git] / server / config / smtp / smtp.js
index 422a01b..1d32ff3 100644 (file)
@@ -1,428 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var nodemailer = require('nodemailer');
-var smtpTransport = require('nodemailer-smtp-transport');
-
-var Contact = require('../../models').Contact;
-var MailRoom = require('../../models').MailRoom;
-var MailMessage = require('../../models').MailMessage;
-var ContactEmail = require('../../models').ContactEmail;
-var MailServerOut = require('../../models').MailServerOut;
-
-module.exports = {
-  create: function (doc) {
-
-    var _smtp;
-    var _doc;
-
-    function onSave(doc) {
-      console.log("MAIL - Account " + doc.username + " SMTP CREATE");
-      _doc = doc;
-      _smtp = nodemailer.createTransport(smtpTransport({
-        host: doc.host,
-        port: doc.port,
-        secure: doc.ssl,
-        debug: true,
-        auth: {
-          user: doc.username,
-          pass: doc.password
-        }
-      }));
-    }
-
-    function onUpdate(doc) {
-      if (_smtp.transporter.options.auth.user === doc.username) {
-        console.log("MAIL - Account " + doc.username + " SMTP UPDATE");
-        _smtp = null;
-        _smtp = nodemailer.createTransport(smtpTransport({
-          host: doc.host,
-          port: doc.port,
-          secure: doc.ssl,
-          debug: true,
-          auth: {
-            user: doc.username,
-            pass: doc.password
-          }
-        }));
-      }
-    }
-
-    function onRemove(doc) {
-      if (_smtp.transporter.options.auth.user === doc.username) {
-        console.log("[MAIL - Account " + doc.username + " SMTP DESTROY");
-        _smtp = null;
-      }
-    }
-
-    function onSend(mailMessage, options) {
-      if (mailMessage.changed('status') && mailMessage.status === 'SENDING' && _smtp.transporter.options.auth.user === mailMessage.from) {
-        console.log('onSend', mailMessage.from);
-        var _mRoom;
-        var _mMessage = mailMessage;
-        var _mFrom, _mTo, _mCc, _mBcc;
-
-        if (_mMessage.inReplyTo) {
-          return MailMessage
-            .findOne({
-              where: {
-                messageId: _mMessage.inReplyTo
-              }
-            })
-            .then(function (mailMessageParent) {
-              return mailMessageParent
-                .getMailRoom();
-            })
-            .then(function (mailRoom) {
-              _mRoom = mailRoom;
-              return mailRoom
-                .addMailMessage(_mMessage, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return ContactEmail
-                .findOrCreate({
-                  where: {
-                    email: _mMessage.from
-                  },
-                  defaults: {
-                    email: _mMessage.from
-                  },
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .spread(function (mFrom, created) {
-              var promises = [];
-              var tos = _mMessage.to ? _mMessage.to.split(';') : [];
-              _mFrom = mFrom;
-
-              tos.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mTo) {
-              var promises = [];
-              var ccs = _mMessage.cc ? _mMessage.cc.split(';') : [];
-              _mTo = _.map(mTo, function (elm) {
-                return elm[0];
-              });
-
-              ccs.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mCc) {
-              var promises = [];
-              var bccs = _mMessage.bcc ? _mMessage.bcc.split(';') : [];
-              _mCc = _.map(mCc, function (elm) {
-                return elm[0];
-              });
-
-              bccs.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mBcc) {
-              _mBcc = _.map(mBcc, function (elm) {
-                return elm[0];
-              });
-
-              return;
-            })
-            .then(function () {
-              return _mMessage
-                .setFrom(_mFrom, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setTo(_mTo, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setCc(_mCc, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setBcc(_mBcc, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              var mail = {
-                status: _mMessage.status,
-                from: _mMessage.from,
-                to: _mMessage.to,
-                cc: _mMessage.cc,
-                subject: _mMessage.subject,
-                html: _mMessage.html,
-                text: _mMessage.text,
-                headers: {
-                  'X-Laziness-level': 1000
-                }
-              };
-
-              if (_mMessage.MailAttachments) {
-                mail.attachments = _.map(_mMessage.MailAttachments, function (elm) {
-                  return {
-                    path: elm.path
-                  }
-                });
-              }
-
-              return new Promise(function (resolve, reject) {
-                _smtp.sendMail(mail, function (err, info) {
-                  if (err) {
-                    return reject(err);
-                  } else {
-                    resolve(info);
-                  }
-                });
-              });
-            })
-            .then(function (info) {
-              return _mMessage
-                .update({
-                  messageId: info.messageId,
-                  status: 'SENT'
-                }, {
-                  transaction: options ? options.transaction : null
-                });
-            });
-        } else {
-          return MailRoom
-            .findOrCreate({
-              where: {
-                id: _mMessage.MailRoomId
-              },
-              defaults: {
-                subject: _mMessage.subject,
-                from: _mMessage.from,
-                status: 'OPEN',
-                MailAccountId: _doc.MailAccountId
-              },
-              transaction: options ? options.transaction : null
-            })
-            .spread(function (mailRoom) {
-              _mRoom = mailRoom;
-              return mailRoom
-                .addMailMessage(_mMessage, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return ContactEmail
-                .findOrCreate({
-                  where: {
-                    email: _mMessage.from
-                  },
-                  defaults: {
-                    email: _mMessage.from,
-                  },
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .spread(function (mFrom) {
-              var promises = [];
-              var tos = _mMessage.to ? _mMessage.to.split(';') : [];
-              _mFrom = mFrom;
-
-              tos.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mTo) {
-              var promises = [];
-              var ccs = _mMessage.cc ? _mMessage.cc.split(';') : [];
-              _mTo = _.map(mTo, function (elm) {
-                return elm[0];
-              });
-
-              ccs.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mCc) {
-              var promises = [];
-              var bccs = _mMessage.bcc ? _mMessage.bcc.split(';') : [];
-              _mCc = _.map(mCc, function (elm) {
-                return elm[0];
-              });
-
-              bccs.forEach(function (email) {
-                promises.push(ContactEmail
-                  .findOrCreate({
-                    where: {
-                      email: email
-                    },
-                    defaults: {
-                      email: email
-                    },
-                    transaction: options ? options.transaction : null
-                  }));
-              });
-
-              return promises;
-            })
-            .all()
-            .then(function (mBcc) {
-              _mBcc = _.map(mBcc, function (elm) {
-                return elm[0];
-              });
-
-              return;
-            })
-            .then(function () {
-              return _mMessage
-                .setFrom(_mFrom, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setTo(_mTo, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setCc(_mCc, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              return _mMessage
-                .setBcc(_mBcc, {
-                  transaction: options ? options.transaction : null
-                });
-            })
-            .then(function () {
-              var mail = {
-                status: _mMessage.status,
-                from: _mMessage.from,
-                to: _mMessage.to,
-                cc: _mMessage.cc,
-                subject: _mMessage.subject,
-                html: _mMessage.html,
-                text: _mMessage.text,
-                headers: {
-                  'X-Laziness-level': 1000
-                }
-              };
-
-              if (_mMessage.MailAttachments) {
-                mail.attachments = _.map(_mMessage.MailAttachments, function (elm) {
-                  return {
-                    path: elm.path
-                  }
-                });
-              }
-
-              return new Promise(function (resolve, reject) {
-                _smtp.sendMail(mail, function (err, info) {
-                  if (err) {
-                    return reject(err);
-                  } else {
-                    resolve(info);
-                  }
-                });
-              });
-            })
-            .then(function (info) {
-              return _mMessage
-                .update({
-                  messageId: info.messageId,
-                  status: 'SENT'
-                }, {
-                  transaction: options ? options.transaction : null
-                });
-            });
-        }
-      }
-    }
-
-    onSave(doc);
-
-    // HANDLE ACCOUNT UPDATE/DELETE
-    MailServerOut.afterUpdate(function (doc) {
-      onUpdate(doc);
-    });
-    MailServerOut.afterDestroy(function (doc) {
-      onRemove(doc);
-    });
-    // HANDLE SEND MAIL
-    MailMessage.afterCreate(function (doc, options) {
-      return onSend(doc, options);
-    });
-    // HANDLE SEND MAIL
-    // MailMessage.afterUpdate(function (doc) {
-    //   // onSend(doc);
-    // });
-  }
-};
+var _0x7ecc=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x75\x74\x69\x6C","\x62\x6C\x75\x65\x62\x69\x72\x64","\x6C\x6F\x64\x61\x73\x68","\x6D\x6F\x6D\x65\x6E\x74","\x6D\x75\x73\x74\x61\x63\x68\x65","\x6E\x6F\x64\x65\x6D\x61\x69\x6C\x65\x72","\x6E\x6F\x64\x65\x6D\x61\x69\x6C\x65\x72\x2D\x73\x6D\x74\x70\x2D\x74\x72\x61\x6E\x73\x70\x6F\x72\x74","\x68\x74\x6D\x6C\x2D\x74\x6F\x2D\x74\x65\x78\x74","\x55\x73\x65\x72","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x4D\x61\x69\x6C\x52\x6F\x6F\x6D","\x54\x65\x6D\x70\x6C\x61\x74\x65","\x4D\x61\x69\x6C\x41\x63\x63\x6F\x75\x6E\x74","\x4D\x61\x69\x6C\x4D\x65\x73\x73\x61\x67\x65","\x4D\x61\x69\x6C\x53\x65\x72\x76\x65\x72\x4F\x75\x74","\x4D\x61\x69\x6C\x52\x6F\x6F\x6D\x53\x74\x61\x74\x75\x73","\x4D\x61\x69\x6C\x41\x74\x74\x61\x63\x68\x6D\x65\x6E\x74","\x65\x72\x72\x6F\x72","\x6F\x6E","\x63\x6C\x6F\x73\x65","\x53\x4D\x54\x50\x20\x53\x45\x52\x56\x45\x52\x20\x25\x73\x20\x45\x58\x49\x54\x45\x44\x20\x57\x49\x54\x48\x20\x43\x4F\x44\x45\x20\x25\x73","\x61\x72\x67\x76","\x66\x6F\x72\x6D\x61\x74","\x6C\x6F\x67","\x6D\x65\x73\x73\x61\x67\x65","\x74\x79\x70\x65","\x73\x74\x61\x74\x65","\x75\x73\x65\x72\x6E\x61\x6D\x65","\x43\x4F\x4E\x4E\x45\x43\x54\x49\x4E\x47","\x53\x4D\x54\x50\x20\x53\x45\x52\x56\x45\x52\x20\x25\x73\x20\x53\x54\x41\x52\x54\x49\x4E\x47\x2C\x20\x50\x52\x4F\x43\x45\x53\x53\x20\x49\x44\x3A\x20\x25\x73\x20","\x70\x69\x64","\x45\x52\x52\x4F\x52","\x73\x74\x72\x69\x6E\x67\x69\x66\x79","\x53\x4D\x54\x50\x20\x53\x45\x52\x56\x45\x52\x20\x25\x73\x20\x45\x52\x52\x4F\x52\x2C\x20\x50\x52\x4F\x43\x45\x53\x53\x20\x49\x44\x3A\x20\x25\x73\x20","\x73\x65\x6E\x64","\x63\x61\x74\x63\x68","\x43\x4F\x4E\x4E\x45\x43\x54\x45\x44","\x53\x4D\x54\x50\x20\x53\x45\x52\x56\x45\x52\x20\x25\x73\x20\x43\x4F\x4E\x4E\x45\x43\x54\x45\x44\x2C\x20\x50\x52\x4F\x43\x45\x53\x53\x20\x49\x44\x3A\x20\x25\x73\x20","\x74\x68\x65\x6E","\x76\x65\x72\x69\x66\x79","\x68\x6F\x73\x74","\x70\x6F\x72\x74","\x73\x73\x6C","\x70\x61\x73\x73\x77\x6F\x72\x64","\x63\x72\x65\x61\x74\x65\x54\x72\x61\x6E\x73\x70\x6F\x72\x74","\x6D\x61\x69\x6C\x41\x63\x63\x6F\x75\x6E\x74\x49\x64","\x4D\x61\x69\x6C\x41\x63\x63\x6F\x75\x6E\x74\x49\x64","\x6D\x61\x69\x6C\x53\x65\x72\x76\x65\x72\x4F\x75\x74\x49\x64","\x69\x64","\x53\x4D\x54\x50\x20\x53\x45\x52\x56\x45\x52\x20\x25\x73\x20\x53\x45\x4E\x44\x49\x4E\x47\x20\x4D\x53\x47\x2C\x20\x50\x52\x4F\x43\x45\x53\x53\x20\x49\x44\x3A\x20\x25\x73\x20","\x73\x74\x61\x74\x75\x73","\x53\x45\x4E\x44\x49\x4E\x47","\x69\x6E\x52\x65\x70\x6C\x79\x54\x6F","\x75\x70\x64\x61\x74\x65","\x46\x41\x49\x4C\x45\x44","\x72\x65\x74\x72\x79\x53\x65\x6E\x64","\x6D\x65\x73\x73\x61\x67\x65\x49\x64","\x53\x45\x4E\x54","\x68\x74\x6D\x6C","\x75\x74\x66\x38","\x74\x65\x78\x74","\x73\x75\x62\x6A\x65\x63\x74","\x6E\x61\x6D\x65","\x66\x72\x6F\x6D","\x74\x6F","\x63\x63","\x62\x63\x63","\x66\x75\x6C\x6C\x6E\x61\x6D\x65","\x65\x6D\x61\x69\x6C","\x63\x72\x65\x61\x74\x65\x64\x41\x74","\x72\x65\x6E\x64\x65\x72","\x66\x72\x6F\x6D\x53\x74\x72\x69\x6E\x67","\x4D\x61\x69\x6C\x41\x74\x74\x61\x63\x68\x6D\x65\x6E\x74\x73","\x61\x74\x74\x61\x63\x68\x6D\x65\x6E\x74\x73","\x70\x61\x74\x68","\x6D\x61\x70","\x73\x65\x6E\x64\x4D\x61\x69\x6C","\x61\x64\x64\x55\x73\x65\x72","\x66\x69\x6E\x64\x42\x79\x49\x64","\x50\x45\x4E\x44\x49\x4E\x47","\x6C\x65\x6E\x67\x74\x68","\x6D\x61\x69\x6C\x4F\x75\x74","\x61\x64\x64\x4D\x61\x69\x6C\x4D\x65\x73\x73\x61\x67\x65","\x67\x65\x74\x4D\x61\x69\x6C\x52\x6F\x6F\x6D","\x66\x69\x6E\x64\x4F\x6E\x65","","\x4D\x61\x69\x6C\x52\x6F\x6F\x6D\x49\x64","\x59\x59\x59\x59\x2D\x4D\x4D\x2D\x44\x44\x20\x48\x48\x3A\x6D\x6D\x3A\x73\x73","\x63\x72\x65\x61\x74\x65"];_0x7ecc[0];var util=require(_0x7ecc[1]);var promise=require(_0x7ecc[2]);var _=require(_0x7ecc[3]);var moment=require(_0x7ecc[4]);var Mustache=require(_0x7ecc[5]);var nodemailer=require(_0x7ecc[6]);var smtpTransport=require(_0x7ecc[7]);var htmlToText=require(_0x7ecc[8]);var Agent=require(_0x7ecc[10])[_0x7ecc[9]];var Room=require(_0x7ecc[10])[_0x7ecc[11]];var Template=require(_0x7ecc[10])[_0x7ecc[12]];var Account=require(_0x7ecc[10])[_0x7ecc[13]];var Message=require(_0x7ecc[10])[_0x7ecc[14]];var Server=require(_0x7ecc[10])[_0x7ecc[15]];var Status=require(_0x7ecc[10])[_0x7ecc[16]];var Attachment=require(_0x7ecc[10])[_0x7ecc[17]];var smtp;var timeout;process[_0x7ecc[19]](_0x7ecc[25],function(_0x1b74x15){if(_0x1b74x15[_0x7ecc[26]]=== _0x7ecc[25]){onSend(_0x1b74x15)};if(_0x1b74x15[_0x7ecc[26]]=== _0x7ecc[27]){switch(_0x1b74x15[_0x7ecc[27]]){case _0x7ecc[29]:onVerify(_0x1b74x15[_0x7ecc[28]]);break;default:}}})[_0x7ecc[19]](_0x7ecc[20],function(_0x1b74x14){console[_0x7ecc[24]](util[_0x7ecc[23]](_0x7ecc[21],process[_0x7ecc[22]][3],_0x1b74x14))})[_0x7ecc[19]](_0x7ecc[18],function(_0x1b74x13){console[_0x7ecc[18]](_0x1b74x13)});console[_0x7ecc[24]](util[_0x7ecc[23]](_0x7ecc[30],process[_0x7ecc[22]][3],process[_0x7ecc[31]]));function onVerify(_0x1b74x17){smtp[_0x7ecc[40]]()[_0x7ecc[39]](function(){process[_0x7ecc[35]]({type:_0x7ecc[27],state:_0x7ecc[37],source:null,log:util[_0x7ecc[23]](_0x7ecc[38],_0x1b74x17,process[_0x7ecc[31]])})})[_0x7ecc[36]](function(_0x1b74x13){process[_0x7ecc[35]]({type:_0x7ecc[27],state:_0x7ecc[32],source:JSON[_0x7ecc[33]](_0x1b74x13),log:util[_0x7ecc[23]](_0x7ecc[34],_0x1b74x17,process[_0x7ecc[31]])})})}function onSave(_0x1b74x19){smtp= nodemailer[_0x7ecc[45]](smtpTransport({host:_0x1b74x19[_0x7ecc[41]],port:_0x1b74x19[_0x7ecc[42]],secure:_0x1b74x19[_0x7ecc[43]],pool:true,auth:{user:_0x1b74x19[_0x7ecc[28]],pass:_0x1b74x19[_0x7ecc[44]]}}));smtp[_0x7ecc[46]]= _0x1b74x19[_0x7ecc[47]];smtp[_0x7ecc[48]]= _0x1b74x19[_0x7ecc[49]];smtp[_0x7ecc[28]]= _0x1b74x19[_0x7ecc[28]];onVerify(_0x1b74x19[_0x7ecc[28]])}function onSend(_0x1b74x1b){console[_0x7ecc[24]](util[_0x7ecc[23]](_0x7ecc[50],process[_0x7ecc[22]][3],process[_0x7ecc[31]]));if(_0x1b74x1b[_0x7ecc[51]]=== _0x7ecc[52]){var _0x1b74x1c;var _0x1b74x1d;var _0x1b74x1e;var _0x1b74x1f=_0x1b74x1b;var _0x1b74x20,_0x1b74x21,_0x1b74x22,_0x1b74x23;if(_0x1b74x1f[_0x7ecc[53]]){return Message[_0x7ecc[85]]({where:{messageId:_0x1b74x1f[_0x7ecc[53]]}})[_0x7ecc[39]](function(_0x1b74x2b){return _0x1b74x2b[_0x7ecc[84]]({include:{model:Account,include:[{model:Template}]}})})[_0x7ecc[39]](function(_0x1b74x2a){_0x1b74x1c= _0x1b74x2a;_0x1b74x1d= _0x1b74x2a[_0x7ecc[13]];return _0x1b74x1c[_0x7ecc[83]](_0x1b74x1f[_0x7ecc[49]])})[_0x7ecc[39]](function(){return _0x1b74x1c[_0x7ecc[54]]({lastEvent:_0x7ecc[52],status:_0x7ecc[80],attachment:_0x1b74x1f[_0x7ecc[73]]&& _0x1b74x1f[_0x7ecc[73]][_0x7ecc[81]],mailOut:++_0x1b74x1c[_0x7ecc[82]]})})[_0x7ecc[39]](function(){return Agent[_0x7ecc[79]](_0x1b74x1f.UserId)})[_0x7ecc[39]](function(_0x1b74x29){_0x1b74x1e= _0x1b74x29;return _0x1b74x1c[_0x7ecc[78]](_0x1b74x1e)})[_0x7ecc[39]](function(){_0x1b74x1f[_0x7ecc[59]]= _0x1b74x1f[_0x7ecc[59]]?_0x1b74x1f[_0x7ecc[59]].toString(_0x7ecc[60]):null;_0x1b74x1f[_0x7ecc[61]]= _0x1b74x1f[_0x7ecc[61]]?_0x1b74x1f[_0x7ecc[61]].toString(_0x7ecc[60]):null;var _0x1b74x25=_0x1b74x1d[_0x7ecc[12]]?Mustache[_0x7ecc[71]](_0x1b74x1d[_0x7ecc[12]][_0x7ecc[59]],{interactionId:_0x1b74x1c[_0x7ecc[49]],subject:_0x1b74x1f[_0x7ecc[62]],body:_0x1b74x1f[_0x7ecc[59]]?_0x1b74x1f[_0x7ecc[59]]:_0x1b74x1f[_0x7ecc[61]],accountName:_0x1b74x1d[_0x7ecc[63]],from:_0x1b74x1f[_0x7ecc[64]],to:_0x1b74x1f[_0x7ecc[65]],cc:_0x1b74x1f[_0x7ecc[66]],bcc:_0x1b74x1f[_0x7ecc[67]],agentName:_0x1b74x1e[_0x7ecc[68]],agentEmail:_0x1b74x1e[_0x7ecc[69]],createdAt:_0x1b74x1f[_0x7ecc[70]]}):_0x1b74x1f[_0x7ecc[59]];var _0x1b74x26;if(_0x1b74x1f[_0x7ecc[61]]){_0x1b74x26= _0x1b74x1f[_0x7ecc[61]]}else {_0x1b74x26= _0x1b74x1f[_0x7ecc[59]]?htmlToText[_0x7ecc[72]](_0x1b74x1f[_0x7ecc[59]],{wordwrap:false}):null};var _0x1b74x27={status:_0x1b74x1f[_0x7ecc[51]],from:_0x1b74x1f[_0x7ecc[64]],to:_0x1b74x1f[_0x7ecc[65]],cc:_0x1b74x1f[_0x7ecc[66]],bcc:_0x1b74x1f[_0x7ecc[67]],subject:_0x1b74x1f[_0x7ecc[62]],html:_0x1b74x25,text:_0x1b74x26};if(_0x1b74x1f[_0x7ecc[73]]){_0x1b74x27[_0x7ecc[74]]= _[_0x7ecc[76]](_0x1b74x1f.MailAttachments,function(_0x1b74x28){return {path:_0x1b74x28[_0x7ecc[75]],filename:_0x1b74x28[_0x7ecc[63]]}})};return smtp[_0x7ecc[77]](_0x1b74x27)})[_0x7ecc[39]](function(_0x1b74x24){process[_0x7ecc[35]]({msgId:_0x1b74x1f[_0x7ecc[49]],roomId:_0x1b74x1c[_0x7ecc[49]],type:_0x7ecc[54],messageId:_0x1b74x24[_0x7ecc[57]],status:_0x7ecc[58],retry:_0x1b74x1f[_0x7ecc[56]]})})[_0x7ecc[36]](function(_0x1b74x13){console[_0x7ecc[18]](_0x1b74x13);process[_0x7ecc[35]]({msgId:_0x1b74x1f[_0x7ecc[49]],roomId:_0x1b74x1c[_0x7ecc[49]],type:_0x7ecc[54],status:_0x7ecc[55],retry:_0x1b74x1f[_0x7ecc[56]]})})}else {return Account[_0x7ecc[79]](smtp[_0x7ecc[46]],{include:[{model:Template}]})[_0x7ecc[39]](function(_0x1b74x2c){_0x1b74x1d= _0x1b74x2c;if(_0x1b74x1b[_0x7ecc[87]]){return Room[_0x7ecc[79]](_0x1b74x1b.MailRoomId)}else {return Agent[_0x7ecc[79]](_0x1b74x1b.UserId)[_0x7ecc[39]](function(_0x1b74x2d){return Room[_0x7ecc[89]]({subject:_0x1b74x1f[_0x7ecc[62]],from:_0x1b74x1f[_0x7ecc[64]],account:_0x1b74x2c?_0x1b74x2c[_0x7ecc[63]]:null,status:_0x7ecc[80],lastEvent:_0x7ecc[52],attachment:_0x1b74x1f[_0x7ecc[73]]&& _0x1b74x1f[_0x7ecc[73]][_0x7ecc[81]],MailAccountId:_0x1b74x2c?_0x1b74x2c[_0x7ecc[49]]:null,mailOut:1,arrivedAt:moment()[_0x7ecc[23]](_0x7ecc[88]),MailRoomStatuses:[{status:_0x7ecc[80],data1:_0x1b74x2d[_0x7ecc[63]],data2:_0x1b74x2d[_0x7ecc[68]],UserId:_0x1b74x2d[_0x7ecc[49]]}]},{include:[{model:Message},{model:Status}]})})}})[_0x7ecc[39]](function(_0x1b74x2a){_0x1b74x1c= _0x1b74x2a;return _0x1b74x1c[_0x7ecc[83]](_0x1b74x1f[_0x7ecc[49]])})[_0x7ecc[39]](function(){return Agent[_0x7ecc[79]](_0x1b74x1f.UserId)})[_0x7ecc[39]](function(_0x1b74x29){_0x1b74x1e= _0x1b74x29;return _0x1b74x1c[_0x7ecc[78]](_0x1b74x1e)})[_0x7ecc[39]](function(){_0x1b74x1f[_0x7ecc[59]]= _0x1b74x1f[_0x7ecc[59]]?_0x1b74x1f[_0x7ecc[59]].toString(_0x7ecc[60]):null;_0x1b74x1f[_0x7ecc[61]]= _0x1b74x1f[_0x7ecc[61]]?_0x1b74x1f[_0x7ecc[61]].toString(_0x7ecc[60]):null;var _0x1b74x25=_0x1b74x1d[_0x7ecc[12]]?Mustache[_0x7ecc[71]](_0x1b74x1d[_0x7ecc[12]][_0x7ecc[59]],{interactionId:_0x1b74x1c[_0x7ecc[49]],subject:_0x1b74x1f[_0x7ecc[62]],body:_0x1b74x1f[_0x7ecc[59]]?_0x1b74x1f[_0x7ecc[59]]:_0x1b74x1f[_0x7ecc[61]],accountName:_0x1b74x1d[_0x7ecc[63]],from:_0x1b74x1f[_0x7ecc[64]],to:_0x1b74x1f[_0x7ecc[65]],cc:_0x1b74x1f[_0x7ecc[66]],bcc:_0x1b74x1f[_0x7ecc[67]],agentName:_0x1b74x1e?_0x1b74x1e[_0x7ecc[68]]:_0x7ecc[86],agentEmail:_0x1b74x1e?_0x1b74x1e[_0x7ecc[69]]:_0x7ecc[86],createdAt:_0x1b74x1f[_0x7ecc[70]]}):_0x1b74x1f[_0x7ecc[59]];var _0x1b74x26;if(_0x1b74x1f[_0x7ecc[61]]){_0x1b74x26= _0x1b74x1f[_0x7ecc[61]]}else {_0x1b74x26= _0x1b74x1f[_0x7ecc[59]]?htmlToText[_0x7ecc[72]](_0x1b74x1f[_0x7ecc[59]],{wordwrap:false}):null};var _0x1b74x27={status:_0x1b74x1f[_0x7ecc[51]],from:_0x1b74x1f[_0x7ecc[64]],to:_0x1b74x1f[_0x7ecc[65]],cc:_0x1b74x1f[_0x7ecc[66]],bcc:_0x1b74x1f[_0x7ecc[67]],subject:_0x1b74x1f[_0x7ecc[62]],html:_0x1b74x25,text:_0x1b74x26};if(_0x1b74x1f[_0x7ecc[73]]){_0x1b74x27[_0x7ecc[74]]= _[_0x7ecc[76]](_0x1b74x1f.MailAttachments,function(_0x1b74x28){return {path:_0x1b74x28[_0x7ecc[75]],filename:_0x1b74x28[_0x7ecc[63]]}})};return smtp[_0x7ecc[77]](_0x1b74x27)})[_0x7ecc[39]](function(_0x1b74x24){process[_0x7ecc[35]]({msgId:_0x1b74x1f[_0x7ecc[49]],roomId:_0x1b74x1c[_0x7ecc[49]],type:_0x7ecc[54],messageId:_0x1b74x24[_0x7ecc[57]],status:_0x7ecc[58],retry:_0x1b74x1f[_0x7ecc[56]]})})[_0x7ecc[36]](function(_0x1b74x13){console[_0x7ecc[18]](_0x1b74x13);process[_0x7ecc[35]]({msgId:_0x1b74x1f[_0x7ecc[49]],roomId:_0x1b74x1c[_0x7ecc[49]],type:_0x7ecc[54],status:_0x7ecc[55],retry:_0x1b74x1f[_0x7ecc[56]]})})}}}Server[_0x7ecc[79]](process[_0x7ecc[22]][2])[_0x7ecc[39]](function(_0x1b74x19){onSave(_0x1b74x19)})[_0x7ecc[36]](function(_0x1b74x13){console[_0x7ecc[18]](_0x1b74x13)})
\ No newline at end of file