mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-07 13:15:28 +02:00
* Mostly notes
This commit is contained in:
parent
aebf494ae7
commit
6a08a25a57
1 changed files with 7 additions and 1 deletions
|
@ -118,6 +118,10 @@ function FTNMailPacket(options) {
|
||||||
};
|
};
|
||||||
|
|
||||||
self.getMessageMeta = function(msgData) {
|
self.getMessageMeta = function(msgData) {
|
||||||
|
Object.keys(msgData.kludgeLines).forEach(function kludgeName(kn) {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
return {}; // :TODO: convert msgData kludges/etc. -> Message meta
|
return {}; // :TODO: convert msgData kludges/etc. -> Message meta
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -210,7 +214,8 @@ function FTNMailPacket(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// buffer to string conversion
|
// buffer to string conversion
|
||||||
// :TODO: What is the real encoding here?
|
// :TODO: What is the real encoding here? ... like messages, may need to look at various
|
||||||
|
// specs for encoding but default to ASCII?
|
||||||
[ 'modDateTime', 'toUserName', 'fromUserName', 'subject', ].forEach(function field(f) {
|
[ 'modDateTime', 'toUserName', 'fromUserName', 'subject', ].forEach(function field(f) {
|
||||||
msgData[f] = msgData[f].toString();
|
msgData[f] = msgData[f].toString();
|
||||||
});
|
});
|
||||||
|
@ -220,6 +225,7 @@ function FTNMailPacket(options) {
|
||||||
// Now, create a Message object
|
// Now, create a Message object
|
||||||
//
|
//
|
||||||
var msg = new Message( {
|
var msg = new Message( {
|
||||||
|
// :TODO: areaId needs to be looked up via AREA line - may need a 1:n alias -> area ID lookup
|
||||||
toUserName : msgData.toUserName,
|
toUserName : msgData.toUserName,
|
||||||
fromUserName : msgData.fromUserName,
|
fromUserName : msgData.fromUserName,
|
||||||
subject : msgData.subject,
|
subject : msgData.subject,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue