Skip to content
Snippets Groups Projects
  1. Mar 19, 2023
  2. Mar 18, 2023
    • Rob Swindell's avatar
      A few help text fixups. · b48da1c0
      Rob Swindell authored
      b48da1c0
    • Rob Swindell's avatar
      Add terminal-client socket inactivity detection/disconnection · 53b26318
      Rob Swindell authored
      - New keys in [BBS] section of sbbs.ini:
        MaxLoginInactivity (default: 10 minutes)
        MaxNewUserInactivity (default: 60 minutes)
        MaxSessionInactivity (default: none/unlimited)
      - Each configured external program/door in SCFG can have its own maximum inactivity setting (or else the session max inactivity is applied)
      - moved node-specific sec_hangup to system-wide/shared max_getkey_inactivity (configured in SCFG->System->Advanced)
      - moved node-specific sec_warn (seconds of inactivity before sending warning) to inactivity_warn (a percentage of elapsed max inactivity before sending warning), also configured in SCFG->System->Advanced and used for both socket and getkey inactivity detection
      - Renamed JS console.inactivity_hangup to console.max_getkey_inactivity (old name remains as alias)
      - Renamed JS console.timeout to console.last_getkey_activity (old name remains as alias)
      - Removed JS console.inactivity_warning
      - Added JS console.max_socket_inactivity (current input_thread inactivity threshold)
      - New text.dat string: InactivityAlert (just contains 3 ^G/BELLs by default) used for non-visual inactive-user warning
      
      The MaxLoginInactivity setting in particular solves the problem of custom scripts (e.g. animated pause prompts) that just poll indefinitely for user input and never time-out  - these will no longer cause nodes to be tied-up with inactive/bot users at login.
      
      You may ask yourself, how did I get here? No, you may ask yourself: why configure these socket inactivity max values in sbbs.ini? The reason is consistency: sbbs.ini is where the MaxInactivity is configured for all the other TCP servers and services.
      
      This fixes issue #534 for Krueger in #synchronet
      53b26318
    • Rob Swindell's avatar
      Use const doubles for time durations · 8ff65a19
      Rob Swindell authored
      Instead of copy/pasta. No change in function,.
      8ff65a19
  3. Mar 16, 2023
    • Rob Swindell's avatar
      Rename system.last* to system.last_*, leaving old names as aliases · a9e9c970
      Rob Swindell authored
      ... to make property names more consistent (e.g. with bbs.last_node).
      The old names (without the underscores) are still usable but won't appear
      in JSDOCS (i.e. jsobjs.html).
      a9e9c970
    • Rob Swindell's avatar
      Add 'first_node' and 'last_node' properties to JS bbs object · a0e7c4ee
      Rob Swindell authored
      This allows scripts (e.g. login.js) to have custom behavior (e.g. shortening
      the maximum inactivity timeout) based on how close the current node is to the
      configured last node number. There may be other uses too, but for the vast
      majority of Synchronet systems, first_node will always be 1 and last_node the
      same as system.nodes/lastnode. Ugh, inconsistent naming. :-(
      a0e7c4ee
  4. Mar 14, 2023
  5. Mar 13, 2023
  6. Mar 12, 2023
    • Rob Swindell's avatar
      Remove extraneous ulong typedef · 15c2d974
      Rob Swindell authored
      15c2d974
    • Rob Swindell's avatar
      Fix a couple of potential NULL-pointer deferences in js_initcx() failure cases · 600cdaf4
      Rob Swindell authored
      service_client->client is NULL in these failure/error cases, so get the
      protocol string from the service_client->service (which is not NULL) instead.
      600cdaf4
    • Rob Swindell's avatar
      Fix mysterious double overflow issue in parse_byte_count() · ab8eca85
      Rob Swindell authored
      It's possible that some values (e.g. "16384P") exceed the storage (count of
      bytes) of a 64-bit integer, and such values were causing floating point
      exceptions when running sbbsctrl.exe, e.g.
      Faulting application name: sbbsctrl.exe, version: 3.20.0.0, time stamp:
      0x00000000
      Faulting module name: gdi32full.dll, version: 10.0.19041.2604, time stamp:
      0x2b5302d5
      Exception code: 0xc0000090
      
      but interesting (and perhaps a clue), not with sbbs.exe.
      
      Anyway, this added range checking, limiting the maximum value to INT64_MAX
      (after division by unit, though there was no division-unit in the problem
      case, the "min_dspace" value parsing in scfglib2.c). Using conditional/ternary
      return statement had the same floating point exception occurrences, so this
      if-statement shouldn't be removed/changed/optimized!
      
      I suspect this has something to do with mix of Borland and MSVC run-time libs
      and perhaps different expectations or setups with regards to floating point
      exceptions. I did notice that when stepping through read_file_cfg(), I would
      get different return values for the same call to iniGetBytes() depending on
      whether it was initiated from sbbsctrl.exe (built with C++Builder) or
      sbbs.dll (built with MSVC).
      
      Thanks to Codefenix for providing the sample file.ini file that demonstrated
      the issue. This problem would've been very hard to root-cause otherwise!
      ab8eca85
  7. Mar 11, 2023
  8. Mar 10, 2023
    • Rob Swindell's avatar
      [telnet|rlogin]_gate now returns bool (false if failed to connect) · 21429128
      Rob Swindell authored
      Previously, there was no real way to tell if the call to telnet_gate() or rlogin_gate() was successful (e.g. to display or an error message to the user), though there were error/warning messages logged for the sysop. Equivalent JS bbs object methods now return Boolean too.
      
      Include ":port" part of address argument to bbs.[telnet|rlogin]_gate methods in JSDOCS.
      
      Removed a bunch of extraneous (copy-pasted?) JS_SET_RVAL() calls from js_bbs.cpp. This just makes the code a little easier to grok.
      21429128
  9. Mar 06, 2023
  10. Mar 05, 2023
    • Rob Swindell's avatar
      Add text.dat string: NewUserValEmailSubj · d72eba60
      Rob Swindell authored
      This fixes issue #62
      d72eba60
    • Rob Swindell's avatar
      Add user_t.mail (in JS, user.mail_settings) to remember mail preferences · cf0d5714
      Rob Swindell authored
      Right now, the only preference is reverse mail listings (oldest first
      or newest first). These settings are only used when reading "your mail",
      not any other kind of mail reading.
      
      bbs.read_mail() now returns the user-adjusted loadmail_mode value and
      this allows us to determine the user's preferences and save them after
      this function/method is called. A readmail_mod can now return a number
      (other than 0) and that will be used as the return value of this method.
      
      sbbs_t::readmail() now does the adjustment of the passed lm_mode before
      calling any installed readmail_mod, so if for example, deleted message
      viewing is enabled by the sysop, those LM_* flags might be set now in
      the argument to the readmail_mod, wherase they never would before.
      
      There is not yet any way for the sysop to set a new user's default
      mail_settings, they'll just default to 0 for now.
      
      email_sec.js will get some adjustments to use/store the
      user.mail_settings next.
      cf0d5714
  11. Mar 04, 2023
Loading