2015-07-14 06:13:29 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
var MailPacket = require('./mail_packet.js');
|
2015-07-14 06:13:29 +00:00
|
|
|
var ftn = require('./ftn_util.js');
|
2015-07-16 05:51:00 +00:00
|
|
|
var Message = require('./message.js');
|
2015-07-14 06:13:29 +00:00
|
|
|
|
|
|
|
var _ = require('lodash');
|
|
|
|
var assert = require('assert');
|
|
|
|
var binary = require('binary');
|
|
|
|
var fs = require('fs');
|
|
|
|
var util = require('util');
|
|
|
|
var async = require('async');
|
2015-07-16 23:13:48 +00:00
|
|
|
var iconv = require('iconv-lite');
|
2015-07-14 06:13:29 +00:00
|
|
|
|
2015-09-12 23:17:00 +00:00
|
|
|
/*
|
|
|
|
:TODO: should probably be broken up
|
|
|
|
FTNPacket
|
|
|
|
FTNPacketImport: packet -> message(s)
|
|
|
|
FTNPacketExport: message(s) -> packet
|
|
|
|
*/
|
|
|
|
|
2015-07-14 06:13:29 +00:00
|
|
|
//
|
|
|
|
// References
|
2015-07-15 04:24:23 +00:00
|
|
|
// * http://ftsc.org/docs/fts-0001.016
|
|
|
|
// * http://ftsc.org/docs/fsc-0048.002
|
|
|
|
//
|
|
|
|
// Other implementations:
|
|
|
|
// * https://github.com/M-griffin/PyPacketMail/blob/master/PyPacketMail.py
|
2015-07-14 06:13:29 +00:00
|
|
|
//
|
|
|
|
function FTNMailPacket(options) {
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
MailPacket.call(this, options);
|
2015-07-14 06:13:29 +00:00
|
|
|
|
|
|
|
var self = this;
|
2015-07-15 04:13:27 +00:00
|
|
|
self.KLUDGE_PREFIX = '\x01';
|
|
|
|
|
2015-07-14 06:13:29 +00:00
|
|
|
this.getPacketHeaderAddress = function() {
|
|
|
|
return {
|
|
|
|
zone : self.packetHeader.destZone,
|
|
|
|
net : self.packetHeader.destNet,
|
|
|
|
node : self.packetHeader.destNode,
|
|
|
|
point : self.packetHeader.destPoint,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
this.getNetworkNameForAddress = function(addr) {
|
2015-07-14 06:13:29 +00:00
|
|
|
var nodeAddr;
|
|
|
|
for(var network in self.nodeAddresses) {
|
|
|
|
nodeAddr = self.nodeAddresses[network];
|
|
|
|
if(nodeAddr.zone === addr.zone &&
|
|
|
|
nodeAddr.net === addr.net &&
|
|
|
|
nodeAddr.node === addr.node &&
|
|
|
|
nodeAddr.point === addr.point)
|
|
|
|
{
|
|
|
|
return network;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
this.parseFtnPacketHeader = function(packetBuffer, cb) {
|
2015-07-14 06:13:29 +00:00
|
|
|
assert(Buffer.isBuffer(packetBuffer));
|
|
|
|
|
|
|
|
if(packetBuffer.length < 58) {
|
|
|
|
cb(new Error('Buffer too small'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
binary.parse(packetBuffer)
|
|
|
|
.word16lu('origNode')
|
|
|
|
.word16lu('destNode')
|
|
|
|
.word16lu('year')
|
|
|
|
.word16lu('month')
|
|
|
|
.word16lu('day')
|
|
|
|
.word16lu('hour')
|
|
|
|
.word16lu('minute')
|
|
|
|
.word16lu('second')
|
|
|
|
.word16lu('baud')
|
|
|
|
.word16lu('packetType')
|
|
|
|
.word16lu('originNet')
|
|
|
|
.word16lu('destNet')
|
|
|
|
.word8('prodCodeLo')
|
|
|
|
.word8('revisionMajor') // aka serialNo
|
|
|
|
.buffer('password', 8) // null terminated C style string
|
|
|
|
.word16lu('origZone')
|
|
|
|
.word16lu('destZone')
|
2015-07-15 04:24:23 +00:00
|
|
|
// Additions in FSC-0048.002 follow...
|
2015-07-14 06:13:29 +00:00
|
|
|
.word16lu('auxNet')
|
|
|
|
.word16lu('capWordA')
|
|
|
|
.word8('prodCodeHi')
|
|
|
|
.word8('revisionMinor')
|
|
|
|
.word16lu('capWordB')
|
|
|
|
.word16lu('originZone2')
|
|
|
|
.word16lu('destZone2')
|
|
|
|
.word16lu('originPoint')
|
|
|
|
.word16lu('destPoint')
|
|
|
|
.word32lu('prodData')
|
|
|
|
.tap(function tapped(packetHeader) {
|
|
|
|
packetHeader.password = ftn.stringFromFTN(packetHeader.password);
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
// :TODO: Don't hard code magic # here
|
|
|
|
if(2 !== packetHeader.packetType) {
|
|
|
|
cb(new Error('Packet is not Type-2'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// :TODO: validate & pass error if failure
|
2015-07-14 06:13:29 +00:00
|
|
|
cb(null, packetHeader);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-07-16 23:13:48 +00:00
|
|
|
|
|
|
|
self.getMessageMeta = function(msgBody) {
|
2015-07-17 04:57:08 +00:00
|
|
|
var meta = {
|
2015-07-17 14:07:43 +00:00
|
|
|
FtnKludge : msgBody.kludgeLines,
|
|
|
|
FtnProperty : {},
|
2015-07-17 04:57:08 +00:00
|
|
|
};
|
2015-07-16 23:13:48 +00:00
|
|
|
|
2015-07-17 04:57:08 +00:00
|
|
|
if(msgBody.tearLine) {
|
2015-07-17 14:07:43 +00:00
|
|
|
meta.FtnProperty.ftn_tear_line = [ msgBody.tearLine ];
|
2015-07-17 04:57:08 +00:00
|
|
|
}
|
|
|
|
if(msgBody.seenBy.length > 0) {
|
2015-07-17 14:07:43 +00:00
|
|
|
meta.FtnProperty.ftn_seen_by = msgBody.seenBy;
|
2015-07-17 04:57:08 +00:00
|
|
|
}
|
|
|
|
if(msgBody.area) {
|
2015-07-17 14:07:43 +00:00
|
|
|
meta.FtnProperty.ftn_area = [ msgBody.area ];
|
2015-07-17 04:57:08 +00:00
|
|
|
}
|
|
|
|
if(msgBody.originLine) {
|
2015-07-17 14:07:43 +00:00
|
|
|
meta.FtnProperty.ftn_origin = [ msgBody.originLine ];
|
2015-07-16 23:13:48 +00:00
|
|
|
}
|
2015-07-16 05:57:02 +00:00
|
|
|
|
2015-07-16 23:13:48 +00:00
|
|
|
return meta;
|
2015-07-16 05:51:00 +00:00
|
|
|
};
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
this.parseFtnMessageBody = function(msgBodyBuffer, cb) {
|
2015-07-16 23:13:48 +00:00
|
|
|
//
|
|
|
|
// From FTS-0001.16:
|
|
|
|
// "Message text is unbounded and null terminated (note exception below).
|
|
|
|
//
|
|
|
|
// A 'hard' carriage return, 0DH, marks the end of a paragraph, and must
|
|
|
|
// be preserved.
|
|
|
|
//
|
|
|
|
// So called 'soft' carriage returns, 8DH, may mark a previous
|
|
|
|
// processor's automatic line wrap, and should be ignored. Beware that
|
|
|
|
// they may be followed by linefeeds, or may not.
|
|
|
|
//
|
|
|
|
// All linefeeds, 0AH, should be ignored. Systems which display message
|
|
|
|
// text should wrap long lines to suit their application."
|
|
|
|
//
|
|
|
|
// This is a bit tricky. Decoding the buffer to CP437 converts all 0x8d -> 0xec, so we'll
|
|
|
|
// have to replace those characters if the buffer is left as CP437.
|
|
|
|
// After decoding, we'll need to peek at the buffer for the various kludge lines
|
|
|
|
// for charsets & possibly re-decode. Uggh!
|
|
|
|
//
|
2015-07-15 04:13:27 +00:00
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
// :TODO: Use the proper encoding here. There appear to be multiple specs and/or
|
|
|
|
// stuff people do with this... some specs kludge lines, which is kinda durpy since
|
|
|
|
// to get to that point, one must read the file (and decode) to find said kludge...
|
2015-07-16 23:13:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
//var msgLines = msgBodyBuffer.toString().split(/\r\n|[\n\v\f\r\x85\u2028\u2029]/g);
|
|
|
|
|
2015-07-17 14:07:43 +00:00
|
|
|
//var msgLines = iconv.decode(msgBodyBuffer, 'CP437').replace(/\xec/g, '').split(/\r\n|[\r\n]/g);
|
|
|
|
var msgLines = iconv.decode(msgBodyBuffer, 'CP437').replace(/[\xec\n]/g, '').split(/\r/g);
|
2015-07-15 04:13:27 +00:00
|
|
|
|
|
|
|
var msgBody = {
|
|
|
|
message : [],
|
2015-07-17 04:57:08 +00:00
|
|
|
kludgeLines : {}, // <KLUDGE> -> [ value1, value2, ... ]
|
2015-07-15 04:13:27 +00:00
|
|
|
seenBy : [],
|
|
|
|
};
|
|
|
|
|
|
|
|
var preOrigin = true;
|
|
|
|
|
|
|
|
function addKludgeLine(kl) {
|
|
|
|
var kludgeParts = kl.split(':');
|
|
|
|
kludgeParts[0] = kludgeParts[0].toUpperCase();
|
|
|
|
kludgeParts[1] = kludgeParts[1].trim();
|
|
|
|
|
2015-07-17 04:57:08 +00:00
|
|
|
(msgBody.kludgeLines[kludgeParts[0]] = msgBody.kludgeLines[kludgeParts[0]] || []).push(kludgeParts[1]);
|
2015-07-16 23:13:48 +00:00
|
|
|
}
|
2015-07-15 04:24:23 +00:00
|
|
|
|
2015-07-15 04:13:27 +00:00
|
|
|
msgLines.forEach(function nextLine(line) {
|
|
|
|
if(0 === line.length) {
|
|
|
|
msgBody.message.push('');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preOrigin) {
|
|
|
|
if(_.startsWith(line, 'AREA:')) {
|
|
|
|
msgBody.area = line.substring(line.indexOf(':') + 1).trim();
|
|
|
|
} else if(_.startsWith(line, '--- ')) {
|
|
|
|
// Tag lines are tracked allowing for specialized display/etc.
|
2015-07-17 04:57:08 +00:00
|
|
|
msgBody.tearLine = line;
|
2015-07-15 04:13:27 +00:00
|
|
|
} else if(/[ ]{1,2}(\* )?Origin\: /.test(line)) { // To spec is " * Origin: ..."
|
|
|
|
msgBody.originLine = line;
|
|
|
|
preOrigin = false;
|
|
|
|
} else if(self.KLUDGE_PREFIX === line.charAt(0)) {
|
|
|
|
addKludgeLine(line.slice(1));
|
|
|
|
} else {
|
|
|
|
msgBody.message.push(line);
|
|
|
|
}
|
|
|
|
// :TODO: SAUCE/etc. can be present?
|
|
|
|
} else {
|
|
|
|
if(_.startsWith(line, 'SEEN-BY:')) {
|
|
|
|
msgBody.seenBy.push(line.substring(line.indexOf(':') + 1).trim());
|
|
|
|
} else if(self.KLUDGE_PREFIX === line.charAt(0)) {
|
|
|
|
addKludgeLine(line.slice(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
cb(null, msgBody);
|
2015-07-14 23:08:52 +00:00
|
|
|
};
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
this.extractMessages = function(buffer, cb) {
|
|
|
|
var nullTermBuf = new Buffer( [ 0 ] );
|
|
|
|
|
|
|
|
binary.stream(buffer).loop(function looper(end, vars) {
|
|
|
|
this
|
|
|
|
.word16lu('messageType')
|
|
|
|
.word16lu('originNode')
|
|
|
|
.word16lu('destNode')
|
|
|
|
.word16lu('originNet')
|
|
|
|
.word16lu('destNet')
|
|
|
|
.word8('attrFlags1')
|
|
|
|
.word8('attrFlags2')
|
|
|
|
.word16lu('cost')
|
|
|
|
.scan('modDateTime', nullTermBuf)
|
|
|
|
.scan('toUserName', nullTermBuf)
|
|
|
|
.scan('fromUserName', nullTermBuf)
|
|
|
|
.scan('subject', nullTermBuf)
|
|
|
|
.scan('message', nullTermBuf)
|
|
|
|
.tap(function tapped(msgData) {
|
|
|
|
if(!msgData.originNode) {
|
|
|
|
end();
|
|
|
|
cb(null);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// buffer to string conversion
|
|
|
|
[ 'modDateTime', 'toUserName', 'fromUserName', 'subject', ].forEach(function field(f) {
|
2015-07-16 23:13:48 +00:00
|
|
|
msgData[f] = iconv.decode(msgData[f], 'CP437');
|
2015-07-16 05:51:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
self.parseFtnMessageBody(msgData.message, function msgBodyParsed(err, msgBody) {
|
|
|
|
//
|
|
|
|
// Now, create a Message object
|
|
|
|
//
|
|
|
|
var msg = new Message( {
|
2015-07-16 05:57:02 +00:00
|
|
|
// :TODO: areaId needs to be looked up via AREA line - may need a 1:n alias -> area ID lookup
|
2015-07-16 05:51:00 +00:00
|
|
|
toUserName : msgData.toUserName,
|
|
|
|
fromUserName : msgData.fromUserName,
|
|
|
|
subject : msgData.subject,
|
|
|
|
message : msgBody.message.join('\n'), // :TODO: \r\n is better?
|
|
|
|
modTimestamp : ftn.getDateFromFtnDateTime(msgData.modDateTime),
|
2015-07-16 23:13:48 +00:00
|
|
|
meta : self.getMessageMeta(msgBody),
|
2015-07-16 05:51:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
self.emit('message', msg); // :TODO: Placeholder
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
this.parseFtnMessages = function(buffer, cb) {
|
|
|
|
var nullTermBuf = new Buffer( [ 0 ] );
|
|
|
|
var fidoMessages = [];
|
|
|
|
|
|
|
|
binary.stream(buffer).loop(function looper(end, vars) {
|
|
|
|
this
|
|
|
|
.word16lu('messageType')
|
|
|
|
.word16lu('originNode')
|
|
|
|
.word16lu('destNode')
|
|
|
|
.word16lu('originNet')
|
|
|
|
.word16lu('destNet')
|
|
|
|
.word8('attrFlags1')
|
|
|
|
.word8('attrFlags2')
|
|
|
|
.word16lu('cost')
|
|
|
|
.scan('modDateTime', nullTermBuf)
|
|
|
|
.scan('toUserName', nullTermBuf)
|
|
|
|
.scan('fromUserName', nullTermBuf)
|
|
|
|
.scan('subject', nullTermBuf)
|
|
|
|
.scan('message', nullTermBuf)
|
|
|
|
.tap(function tapped(msgData) {
|
|
|
|
if(!msgData.originNode) {
|
|
|
|
end();
|
|
|
|
cb(null, fidoMessages);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// buffer to string conversion
|
|
|
|
// :TODO: What is the real encoding here?
|
|
|
|
[ 'modDateTime', 'toUserName', 'fromUserName', 'subject', ].forEach(function field(f) {
|
|
|
|
msgData[f] = msgData[f].toString();
|
|
|
|
});
|
|
|
|
|
2015-07-15 04:13:27 +00:00
|
|
|
self.parseFtnMessageBody(msgData.message, function msgBodyParsed(err, msgBody) {
|
|
|
|
msgData.message = msgBody;
|
|
|
|
fidoMessages.push(_.clone(msgData));
|
|
|
|
});
|
2015-07-14 23:08:52 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
this.extractMesssagesFromPacketBuffer = function(packetBuffer, cb) {
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function parseHeader(callback) {
|
|
|
|
self.parseFtnPacketHeader(packetBuffer, function headerParsed(err, packetHeader) {
|
|
|
|
self.packetHeader = packetHeader;
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function validateDesinationAddress(callback) {
|
|
|
|
self.localNetworkName = self.getNetworkNameForAddress(self.getPacketHeaderAddress());
|
|
|
|
self.localNetworkName = 'AllowAnyNetworkForDebugging';
|
|
|
|
callback(self.localNetworkName ? null : new Error('Packet not addressed do this system'));
|
|
|
|
},
|
|
|
|
function extractEmbeddedMessages(callback) {
|
|
|
|
// note: packet header is 58 bytes in length
|
|
|
|
self.extractMessages(packetBuffer.slice(58), function extracted(err) {
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
],
|
|
|
|
function complete(err) {
|
|
|
|
cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2015-07-14 23:08:52 +00:00
|
|
|
this.loadMessagesFromPacketBuffer = function(packetBuffer, cb) {
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function parseHeader(callback) {
|
|
|
|
self.parseFtnPacketHeader(packetBuffer, function headerParsed(err, packetHeader) {
|
2015-07-14 06:13:29 +00:00
|
|
|
self.packetHeader = packetHeader;
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
},
|
2015-07-14 23:08:52 +00:00
|
|
|
function validateDesinationAddress(callback) {
|
|
|
|
self.localNetworkName = self.getNetworkNameForAddress(self.getPacketHeaderAddress());
|
2015-07-15 04:13:27 +00:00
|
|
|
self.localNetworkName = 'AllowAnyNetworkForDebugging';
|
2015-07-14 23:08:52 +00:00
|
|
|
callback(self.localNetworkName ? null : new Error('Packet not addressed do this system'));
|
2015-07-14 06:13:29 +00:00
|
|
|
},
|
2015-07-14 23:08:52 +00:00
|
|
|
function parseMessages(callback) {
|
|
|
|
self.parseFtnMessages(packetBuffer.slice(58), function messagesParsed(err, fidoMessages) {
|
|
|
|
callback(err, fidoMessages);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function createMessageObjects(fidoMessages, callback) {
|
|
|
|
fidoMessages.forEach(function msg(fmsg) {
|
2015-07-15 04:13:27 +00:00
|
|
|
console.log(fmsg);
|
2015-07-14 23:08:52 +00:00
|
|
|
});
|
2015-07-14 06:13:29 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
function complete(err) {
|
|
|
|
cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
require('util').inherits(FTNMailPacket, MailPacket);
|
|
|
|
|
2015-07-14 06:13:29 +00:00
|
|
|
FTNMailPacket.prototype.parse = function(path, cb) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function readFromFile(callback) {
|
|
|
|
fs.readFile(path, function packetData(err, data) {
|
|
|
|
callback(err, data);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function extractMessages(data, callback) {
|
|
|
|
self.loadMessagesFromPacketBuffer(data, function extracted(err, messages) {
|
|
|
|
callback(err, messages);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
],
|
|
|
|
function complete(err, messages) {
|
|
|
|
cb(err, messages);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
FTNMailPacket.prototype.read = function(options) {
|
|
|
|
FTNMailPacket.super_.prototype.read.call(this, options);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if(_.isString(options.packetPath)) {
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function readPacketFile(callback) {
|
|
|
|
fs.readFile(options.packetPath, function packetData(err, data) {
|
|
|
|
callback(err, data);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function extractMessages(data, callback) {
|
|
|
|
self.extractMesssagesFromPacketBuffer(data, function extracted(err) {
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
],
|
|
|
|
function complete(err) {
|
|
|
|
if(err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} else if(Buffer.isBuffer(options.packetBuffer)) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
FTNMailPacket.prototype.write = function(options) {
|
|
|
|
FTNMailPacket.super_.prototype.write.call(this, options);
|
|
|
|
};
|
|
|
|
|
2015-07-14 06:13:29 +00:00
|
|
|
|
|
|
|
var mailPacket = new FTNMailPacket(
|
|
|
|
{
|
|
|
|
nodeAddresses : {
|
|
|
|
fidoNet : {
|
|
|
|
zone : 46,
|
|
|
|
net : 1,
|
|
|
|
node : 140,
|
|
|
|
point : 0,
|
|
|
|
domain : ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-07-16 05:51:00 +00:00
|
|
|
mailPacket.on('message', function msgParsed(msg) {
|
|
|
|
console.log(msg);
|
|
|
|
});
|
|
|
|
|
2015-07-17 04:57:08 +00:00
|
|
|
mailPacket.read( { packetPath : '/home/nuskooler/ownCloud/Projects/ENiGMA½ BBS/FTNPackets/BAD_BNDL.007' } );
|
2015-07-16 05:51:00 +00:00
|
|
|
|
|
|
|
/*
|
2015-07-15 04:13:27 +00:00
|
|
|
mailPacket.parse('/home/nuskooler/ownCloud/Projects/ENiGMA½ BBS/FTNPackets/BAD_BNDL.007', function parsed(err, messages) {
|
|
|
|
console.log(err)
|
2015-07-16 05:51:00 +00:00
|
|
|
});
|
|
|
|
*/
|