From bd8718beaa1c2e615db114510bec62f96553e526 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 27 Feb 2017 21:10:33 -0700 Subject: [PATCH 1/2] Remove FSC-48 packet writing stuff for now --- core/ftn_mail_packet.js | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/core/ftn_mail_packet.js b/core/ftn_mail_packet.js index a7e3c86b..324f08ed 100644 --- a/core/ftn_mail_packet.js +++ b/core/ftn_mail_packet.js @@ -61,7 +61,7 @@ class PacketHeader { this.prodData = 0x47694e45; // "ENiG" this.capWord = 0x0001; - this.capWordValidate = ((this.capWord & 0xff) << 8) | ((this.capWord >> 8) & 0xff); + this.capWordValidate = ((this.capWord & 0xff) << 8) | ((this.capWord >> 8) & 0xff); // swap this.prodCodeHi = 0xfe; // see above this.prodRevHi = 0; @@ -91,14 +91,17 @@ class PacketHeader { this.origNode = address.node; // See FSC-48 - if(address.point) { + // :TODO: disabled for now until we have separate packet writers for 2, 2+, 2+48, and 2.2 + /*if(address.point) { this.auxNet = address.origNet; - this.origNet = -1; - + this.origNet = -1; } else { this.origNet = address.net; this.auxNet = 0; } + */ + this.origNet = address.net; + this.auxNet = 0; this.origZone = address.zone; this.origZone2 = address.zone; @@ -586,9 +589,9 @@ function Packet(options) { if(messageBodyData.tearLine) { msg.meta.FtnProperty.ftn_tear_line = messageBodyData.tearLine; - if(self.options.keepTearAndOrigin) { - msg.message += `\r\n${messageBodyData.tearLine}\r\n`; - } + if(self.options.keepTearAndOrigin) { + msg.message += `\r\n${messageBodyData.tearLine}\r\n`; + } } if(messageBodyData.seenBy.length > 0) { @@ -602,9 +605,9 @@ function Packet(options) { if(messageBodyData.originLine) { msg.meta.FtnProperty.ftn_origin = messageBodyData.originLine; - if(self.options.keepTearAndOrigin) { - msg.message += `${messageBodyData.originLine}\r\n`; - } + if(self.options.keepTearAndOrigin) { + msg.message += `${messageBodyData.originLine}\r\n`; + } } // From 02d76f557392c9bb4fdd2c06790384ecfc102de5 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 27 Feb 2017 21:17:01 -0700 Subject: [PATCH 2/2] Add reset password to menu.hjson (disabled by default) --- mods/menu.hjson | 37 ++++++++++++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/mods/menu.hjson b/mods/menu.hjson index c98b0122..75ceaa31 100644 --- a/mods/menu.hjson +++ b/mods/menu.hjson @@ -66,22 +66,27 @@ VM1: { submit: true focus: true + argName: navSelect // :TODO: need a good way to localize these ... Standard Orig->Lookup seems good. - items: [ "login", "apply", "log off" ] + items: [ "login", "apply", "forgot pw", "log off" ] } } submit: { *: [ { - value: { 1: 0 } + value: { navSelect: 0 } action: @menu:login } { - value: { 1: 1 }, + value: { navSelect: 1 }, action: @menu:newUserApplicationPre } { - value: { 1: 2 }, + value: { navSelect: 2 } + action: @menu:forgotPassword + } + { + value: { navSelect: 3 }, action: @menu:logoff } ] @@ -138,6 +143,28 @@ } } + forgotPassword: { + desc: Forgot password + prompt: forgotPasswordPrompt + submit: [ + { + value: { username: null } + action: @systemMethod:sendForgotPasswordEmail + extraArgs: { next: "forgotPasswordSubmitted" } + } + ] + } + + forgotPasswordSubmitted: { + desc: Forgot password + art: FORGOTPWSENT + options: { + cls: true + pause: true + } + next: @systemMethod:logoff + } + // :TODO: Prompt Yes/No for logoff confirm fullLogoffSequence: { desc: Logging Off @@ -2276,7 +2303,7 @@ } //////////////////////////////////////////////////////////////////////// - // File Area + // File Base //////////////////////////////////////////////////////////////////////// fileBase: {