Skip to content
Snippets Groups Projects
  1. Sep 14, 2023
  2. Sep 13, 2023
  3. Sep 12, 2023
    • Rob Swindell's avatar
      Allow JS 'user.editor' and '.shell' to be set for non-users (e.g. user #0) · c0370d3c
      Rob Swindell authored
      The request from Nightfox and Accession via DOVE-Net was to be able to set
      a user's external editor even if there's no user logged-in.
      
      These 2 user class properties in the JS object model were a bit special in
      that they *only* wrote to the user database and did not immediately modify
      the in-memory copy of the user_t structure, depending on the re-reading of
      the user.dat/tab file to re-populate the current user_t structure when needed.
      This didn't work if the current user is user #0 (no user).
      
      So, set the current user_t.xedit and user_t.shell accordingly whenever those
      JS properties are assigned a value (a string, the appropriate internal code).
      c0370d3c
  4. Sep 10, 2023
  5. Sep 09, 2023
  6. Sep 06, 2023
  7. Sep 03, 2023
    • Rob Swindell's avatar
      Hacks to get ODoors to build on Linux (Debian/Ubuntu recent releases) again · 4afbc809
      Rob Swindell authored
      1. Resolve the "hidden symbol 'atexit' ... being referenced by DSO" error
         by using the -shared option (link against shared objects, not static libs)
      2. The path to the xpdev output directory (where to find libxpdev.a) is just
         wrong. Hard-coded the machine architecuture portion (.x64) as a hack for
         now. Also, since this is use the LD macro, you need to pass "LD=gcc" on the
         make command-line. Not sure how this worked before.
      
      Fixes (or at least works-around) issues reported by Ryan Fantus (1:218/820)
      4afbc809
  8. Sep 01, 2023
    • Rob Swindell's avatar
      Don't use scope argument value to js.exec() if it's null · 82d1ed4f
      Rob Swindell authored
      Fixes issue #611
      82d1ed4f
    • Rob Swindell's avatar
      node utility can now display one/some/all key/values from node*/client.ini · 5531de7b
      Rob Swindell authored
      <nelgin> Remind me why you can't show the ip address on node status? :)
      
      Using the new '-v[key]' option, a sysop can view one, some, or all of the
      key/value pairs from the nodes with a connected client. For nodes without
      a connected client, the client.ini file values aren't particularly useful, but
      if someone wants an option to show those values for non-client-connected nodes
      I can do that too.
      
      When using '-v', all the client.ini key/value pairs will be displayed for all
      the node records requested with currently connected clients. By specifying
      '-v[key]' the sysop can specify a key to display (rather than all of them)
      e.g. 'node list -vaddr' to list nodes with remote client IP addresses.
      This option can be used multiple times on the command-line to view multiple
      keys. See node*/client.ini for the list of supported keys.
      
      This feature only works for nodes whose directory paths are ../node#/
      relative to the ctrl directory. Since the node utility doesn't read any
      configuration files, this is a limitation. If you have different node
      directory names/parents and need to use this feature, let me know and I'll
      see about adding support for reading/parsing main.ini file to discover those
      non-standard/default node directory paths automatically.
      
      The version number displayed is now taken from the sbbs version (sbbsdefs.h).
      The maximum ctrl directory path is now extended from 40 chars to MAX_PATH.
      More readable help/usage output (using indentation).
      5531de7b
  9. Aug 31, 2023
    • Rob Swindell's avatar
      Remove MQTT message publishing from mqtt_connect_callback() · b4aaddb8
      Rob Swindell authored
      A follow-up to commit 81d4575e
      
      Although I was not able to successfully reproduce the problem that Ree
      reported with his commit (even when changing the SCFG->Networks->MQTT->Publish
      QOS to 1: At least once) on Windows, I do see how this problem could
      theoretically happen. And like Ree said in the follow-up comment on the MR
      "maybe these two lines should have stayed in mqtt_startup", they don't really
      belong in the connection callback.
      
      The "client" topics only needs to be cleared upon startup or recycle (by
      publishing a null message) and it would be bad to clear these topics whenever
      the broker was reconnected (the server's clients didn't magically disconnect).
      So these "client" topic-clearing publishes are now only done during startup
      (again).
      
      The "recycle" topics don't really need to be published to here at all. I
      think I only did this for cases where someone published a non-null message to
      the topic and its stale message would remain afterward, appearing in MQTT
      browsers (like MQTT explorer) long after the server had recycled. The real
      solution to this cosmetic issue is to only publish null (0-length) messages to
      the "recycle" topics in the first place.
      b4aaddb8
    • Rob Swindell's avatar
      Fix "Error writing /path/to/sbbs.ini" when using '-f' option. · 4147775c
      Rob Swindell authored
      Wasn't opening the sbbs.ini file for modify access.
      
      As reported via DOVE-Net by Accession (PHARCYDE)
      4147775c
  10. Aug 20, 2023
  11. Aug 17, 2023
  12. Aug 11, 2023
  13. Aug 10, 2023
  14. Aug 09, 2023
    • Rob Swindell's avatar
      Code indentation change only. · 2a85e911
      Rob Swindell authored
      2a85e911
    • Rob Swindell's avatar
      Insure the exec_dir is *always* prepped (fix for Windows upgrade to v3.20) · e5753faf
      Rob Swindell authored
      A "prepped" means directory means a relative path from the configuration files
      (or default settings) has been converted to a full/absolute path with proper
      slashes for the platform (i.e. backslashes instead of forward-slashes on
      Windows).
      
      JSexec doesn't require that the new v3.20 ctrl/*.ini files exist to run; this
      was necessary to be able to run 'jsexec update -> upgrade_to_v320.js' which
      does the ctrl/*.cnf to .ini file conversion (egg not required to build
      chicken). When JSexec failed to load ctrl/msgs.ini
      (e.g. "!ERROR loading configuration files: 2 (No such file or directory)
      opening /sbbs/ctrl\msgs.ini"), it would continue to run, but not "prep" any
      of the "path" settings (e.g. exec_dir).
      
      The first run of 'jsexec update.js' would fail to run upgrade_to_v320.exe
      (which does the v3.20 user base conversion) and a bunch of other (but not as
      important) update steps because Windows couldn't execute "../exec/*".
      
      Multiple errors would be displayed in this case, but the most important (as
      reported by Ree in #synchronet of irc.synchro.net) was:
        '..' is not recognized as an internal or external command
      
      right after the status output:
        No v3.20 user base found, running ../exec/upgrade_to_v320
      
      Notice the "../exec/" prefix, which is not support by Windows when specifying
      a file path to execute.
      
      A second run of 'jsexec update' would work fine because the new v3.20 .ini
      files would be successfully created after the first run (though the user base
      was not).
      
      This is likely the same issue that MRO reported recently when upgrading a
      Windows SBBS v3.19 install to v3.20 and not having the user base upgraded
      the first time.
      e5753faf
  15. Aug 04, 2023
    • Rob Swindell's avatar
      Don't leave socket open when dial() reports "NO CARRIER" · 948136d1
      Rob Swindell authored
      As reported by Deon on DOVE-net, when the call to socket_recvdone() returns
      true (socket is disconnected and all data has been recv()ed), dial() would
      report "NO CARRIER" but leave the open socket opened, thus preventing any
      subsequent dial attempt ("Can't dial: Already connected" and "ERROR").
      
      Also removed the source file path/name from the debug print statements - don't
      need that noise.
      
      Incremented the version to 0.4
      948136d1
  16. Aug 03, 2023
  17. Jul 30, 2023
  18. Jul 29, 2023
  19. Jul 25, 2023
Loading