Skip to content
Snippets Groups Projects
  1. May 16, 2024
  2. Apr 28, 2024
  3. Mar 07, 2024
  4. Feb 14, 2024
  5. Dec 29, 2023
  6. Dec 05, 2023
    • Rob Swindell's avatar
      Allow default packet type to be configurable · 6004fd06
      Rob Swindell authored
      Previously, any packets created for unlinked nodes, would always be Type-2
      packets and the packet type for newly created nodes (in echocfg->Linked Nodes)
      would be Type-2+.
      
      The new DefaultPacketType setting default is 2+, so the only observed
      change in behavior will be that packets created for unlinked nodes will also
      be type 2+ (by default).
      
      Some additional log detail/adjustment around created/detected packet types.
      6004fd06
  7. Oct 21, 2023
  8. Sep 28, 2023
  9. May 08, 2023
  10. Apr 16, 2023
  11. Apr 15, 2023
    • Rob Swindell's avatar
      Add option to delete bad incoming packets (not rename them) · 12b424e2
      Rob Swindell authored
      So a sysop now has 3 choices for SBBSecho's handling of incoming bad packets:
       - delete them
       - rename them *.bad
       - rename them *.reason.bad (the default)
      
      If SBBSecho is configured to rename bad packets, but the rename fails, the
      error is logged (as before) but the packet is not deleted (this is a change
      from previous behavior).
      
      Always log the *reason* a pkt was determined bad in the "Bad packet detected"
      log message.
      12b424e2
    • Rob Swindell's avatar
      By default SBBSecho will now include the 'reason' in bad packet filenames · 555e7563
      Rob Swindell authored
      When bad packets are detected and renamed to ".bad" files, include the reason
      in the new filename (e.g. "ff69453a.src-addr.bad" or "ff69453a.pkt-passwd.bad"
      instead of just "ff69453a.bad") to make it easier for a sysop to determine
      what to do with the bad packets without having to search through log files
      to discover the reason *why* SBBSecho considered the packet to be bad.
      This behavior can be disabled if desired by setting EchoCfg->Global->Verbose
      Bad Packet Names to "No". Note: the reason used is the *last* reason
      detected/logged for a packet to be considered bad; it's possible that there
      are multiple reasons that a packet may be considered bad. All reasons will be
      logged, but only the last reason is used in the new bad packet filename.
      
      Also added the missing "Delete Packets" option (to EchoCfg->Global). Though
      this setting was added in sbbsecho v3.0 (and settable via sbbsecho.ini), it
      was never exposed via EchoCfg; I don't think that was intentional. Normally,
      you'd always want to leave this set to Yes (the default) to delete processed
      packets, but when debugging, it may be desirable to leave the packet files
      in place. This what the old sbbbsecho v2 '-x' command-line option used to be
      used for (disable the deleting of processed packets).
      
      Moved the Global Settings, EchoMail Settings, and File Paths config menus to
      the upper left of the screen in EchoCfg. The placement seemed inconsistent
      and erratic, so this is a bit of a cosmetic improvement.
      555e7563
  12. Apr 13, 2023
  13. Jul 07, 2022
  14. Jun 02, 2022
  15. Feb 28, 2022
  16. Feb 24, 2022
  17. May 10, 2021
  18. Mar 19, 2021
  19. Jan 31, 2021
    • Rob Swindell's avatar
      Help updates for echolist config section · 1f067a49
      Rob Swindell authored
      The "EchoLists" help menu only worked when you first enter the sub-menu and would get wiped out by subsequent child-menu help text.
      
      Filled out the "Configuring an EchoList" help text.
      
      Fixed issue seen where deleting an EchoList's Required Key didn't set the "dirty config" flag, so saving of changes was not prompted when exiting (if that was the only change made).
      1f067a49
  20. Nov 23, 2020
    • Rob Swindell's avatar
      The great C function dependency refactor of 2020 · cee2d280
      Rob Swindell authored
      The goal of this commit is that: only modules that either are part-of sbbs.dll/libsbbs.so or need to link with/use that library, will #include "sbbs.h" and thus be dependent on its subsequent includes (e.g. cryptlib.h, jsapi.h). This should mean extdeps.mk can be trimmed way down.
      
      I also removed CVS keyword/comments and trimmed up the boilerplate copyright notice in modified and added source/header files in this commit.
      
      There is no functional change in behavior in this comment.
      cee2d280
  21. Aug 17, 2020
  22. Aug 16, 2020
    • Rob Swindell's avatar
      Fix issue with jsexec being used for CGI scripts · 54431b31
      Rob Swindell authored
      If jsexec is used for a CGI script and the SBBSCTRL env var was not
      set, a warning would be printed (to stderr), even if the -c option
      was used to specify the path to the ctrl dir.
      
      get_ctrl_dir() now accepts a boolean argument to specify whether to
      print a warning when the default value ("/sbbs/ctrl") is used.
      Pass FALSE for jsexec, TRUE for other callers (currently).
      54431b31
    • Rob Swindell's avatar
      Commit with CVS Keywords expanded. · dfa1a0a4
      Rob Swindell authored
      dfa1a0a4
  23. May 12, 2020
  24. May 05, 2020
  25. Apr 12, 2020
  26. Apr 03, 2020
  27. Mar 31, 2020
  28. Mar 24, 2020
  29. Sep 17, 2019
    • rswindell's avatar
      Added support for auto-detection of incoming UTF-8 messages (default: enabled). · 6942ba6b
      rswindell authored
      If an incoming message contains no CHRS/CHARSET control line *and* the message
      text contains valid UTF-8 character encodings, set the FTN charset value to
      UTF-8 so the message will be displayed/handled accordingly.
      I did not add checks for header fields (to/from/subject) - we should probably
      auto-detect UTF-8 in those as well, but for now, I don't see messages coming
      into FidoNet echoes with UTF-8 in the header fields.
      Incremented SBBSecho/EchoCfg version to 3.10.
      6942ba6b
  30. Aug 22, 2019
    • rswindell's avatar
      SBBSecho should be able to run withOUT an area file (areas.bbs file). · 5fd5ae24
      rswindell authored
      This requires that the AutoAddSubs=true in sbbsecho.ini (the default) and if
      you don't want an area file created/updated with new subs, just set new option
      AutoAddToAreaFile=false.
      Both of these options default to true which is the same as the previous
      behavior: if you have a link that configured to hub for a msg group, any subs
      not already in the area list/file will be considered new and added dynamically.
      So what's new here is that you can set SBBSecho not to create or update an
      area file and SBBSecho will run just fine if no area file exists or contains no
      area definitions.
      Incremented version to 3.09.
      5fd5ae24
  31. Jul 26, 2019
  32. Jul 23, 2019
    • rswindell's avatar
      New option for SBBSecho to basically ignore any configured outboxes for · 55a2e1e4
      rswindell authored
      linked nodes: UseOutboxes (default: true)
      
      BinkIT will continue to outboxes even when this option is set to false, but
      SBBSecho won't place any mail files in the outboxes when this option is set to
      true.
      
      For PSI-Jack who was surprised that SBBSecho put mail files into outboxes.
      Since it appears BinkD supports both outboxes and normal outbound directories
      for linked nodes and BinkIT does as well, this shouldn't really make any
      difference - just a sysop preference.
      55a2e1e4
  33. Jun 22, 2019
    • rswindell's avatar
      Cosmetic improvments: · ae3c34f6
      rswindell authored
      Use "save/restore" uifc.list() mode for "Save Changes" prompt - no need to
      leave the prompt visible while saving changes.
      Display pop status while saving changes to config file.
      ae3c34f6
  34. Jun 17, 2019
Loading