• login via user number

    From Ner@1:103/705 to all on Tuesday, October 24, 2023 23:28:52
    Hi guys,

    Is there a setting that I need to enable to allow me to login via my user number? I'm resurrecting a system, but I'm using 3.20, and before I was like five versions back. My alias isn't long, but I'm not sure what I'm missing.

    NER

    ---
    þ Synchronet þ NER BBS: Accessibility for all
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Phigan@1:103/705 to Ner on Wednesday, October 25, 2023 03:34:10
    Re: login via user number
    By: Ner to all on Tue Oct 24 2023 11:28 pm

    Is there a setting that I need to enable to allow me to login via my user number? I'm resurrecting a system, but I'm using 3.20, and before I was like

    For me, in 'scfg' -> Nodes -> each node -> Toggle Options, there's a "Allow login by user number"

    ---
    þ Synchronet þ TIRED of waiting 2 hours for a taco? GO TO TACOPRONTO.bbs.io
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Ner on Wednesday, October 25, 2023 12:24:26
    Re: login via user number
    By: Ner to all on Tue Oct 24 2023 11:28 pm

    Hi guys,

    Is there a setting that I need to enable to allow me to login via my user number? I'm resurrecting a system, but I'm using 3.20, and before I was like five versions back. My alias isn't long, but I'm not sure what I'm missing.

    In v3.20, it's SCFG->System->Security Options->Allow Login by User Number

    In older versions of Synchronet, this was a per-node option.

    This change (and many others) is listed in https://gitlab.synchro.net/main/sbbs/-/blob/master/docs/v320_new.txt
    --
    digital man (rob)

    This Is Spinal Tap quote #9:
    David St. Hubbins: I mean, it's not your job to be as confused as Nigel.
    Norco, CA WX: 63.1øF, 89.0% humidity, 0 mph ENE wind, 0.00 inches rain/24hrs --- SBBSecho 3.20-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Ner@1:103/705 to Digital Man on Thursday, October 26, 2023 11:52:08
    Re: login via user number
    By: Digital Man to Ner on Wed Oct 25 2023 12:24 pm

    Hello, and thanks for that reply. Sorry for the duplicate message on the group, it must have not propagated until I re-wrote it. This did the trick--I notice that there's an option in login.js to allow for the legacy logon prompt. Is this something, should I choose to set it, enabled via a modification / mod to login.js?

    NER

    ---
    þ Synchronet þ NER BBS: Accessibility for all
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Ner on Thursday, October 26, 2023 13:19:24
    Re: login via user number
    By: Ner to Digital Man on Thu Oct 26 2023 11:52 am

    Re: login via user number
    By: Digital Man to Ner on Wed Oct 25 2023 12:24 pm

    Hello, and thanks for that reply. Sorry for the duplicate message on the group, it must have not propagated until I re-wrote it. This did the trick--I notice that there's an option in login.js to allow for the legacy logon prompt. Is this something, should I choose to set it, enabled via a modification / mod to login.js?

    The legacy prompt is always sent by the stock login.js (not an option), it's just not visible to the user. The whole point of sending it is to trigger legacy login scripts (QWKnet call-out scripts) to recognize it as a login prompt. If you prefer a different login prompt (visible to the user), you'd need to copy login.js to your mods directory and then just edit these strings in there:
    var str = "\x01n\x01h\x01cEnter \x01wUser Name";
    if(system.login_settings & LOGIN_USERNUM)
    str += "\x01c or \x01wNumber";
    if(!(system.settings&SYS_CLOSED))
    str += "\x01c or '\x01yNew\x01c'";
    if(guest)
    str += "\x01c or '\x01yGuest\x01c'";
    str += "\r\nLogin: \x01w";
    --
    digital man (rob)

    Rush quote #44:
    The shifting shafts of shining weave the fabric of their dreams
    Norco, CA WX: 70.0øF, 61.0% humidity, 1 mph ESE wind, 0.00 inches rain/24hrs --- SBBSecho 3.20-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)