• exec/binkit.js

    From Rob Swindell@1:103/705 to Git commit to sbbs/master on Sat Sep 12 23:58:41 2020
    https://gitlab.synchro.net/sbbs/sbbs/-/commit/47e08fce46c0dec60e3fe555
    Modified Files:
    exec/binkit.js
    Log Message:
    Resolve binkit.js line 322: TypeError: bp.remote_addrs is undefined
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to sbbs/master on Sun Oct 4 12:53:40 2020
    https://gitlab.synchro.net/sbbs/sbbs/-/commit/1756badcd83e6c7b82d665ad
    Modified Files:
    exec/binkit.js
    Log Message:
    Add error (errno) value for file open failure log messages.
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to sbbs/master on Sun Oct 11 14:40:33 2020
    https://gitlab.synchro.net/sbbs/sbbs/-/commit/f7be68017ddc14c12e7646bc
    Modified Files:
    exec/binkit.js
    Log Message:
    Fix race condition in add_outbound_files() causing "Unable to open FLO file".The directory list is catpured *before* the lock file is "taken", so it canhappen that another process (e.g. instance of binkit) has dealt with one ormore of the files by the time we take the lock and attempt to open the file.Also, updated error log messages a bit.
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Deuce@1:103/705 to Git commit to main/sbbs/master on Wed Nov 25 23:04:04 2020
    https://gitlab.synchro.net/main/sbbs/-/commit/ccae9511aed180172012402f
    Modified Files:
    exec/binkit.js
    Log Message:
    Remove hack for Mystic v1.12A39 CRAM-MD5 issue.This has been fixed upstream for some time.
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Deuce@1:103/705 to Git commit to main/sbbs/master on Wed Dec 2 12:02:29 2020
    https://gitlab.synchro.net/main/sbbs/-/commit/1ea3f27714ee4c4319544a10
    Modified Files:
    exec/binkit.js
    Log Message:
    Properly close flo file after re-writing it.
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Fri Dec 18 18:50:57 2020
    https://gitlab.synchro.net/main/sbbs/-/commit/6fa1aa8ebafcaf11b1359741
    Modified Files:
    exec/binkit.js
    Log Message:
    Convert stats failed_sent_files from array of objects to array of stringsFixes issue reported by Ragnarok (DOCKSUD) where by data/binkstats.inicould contain:
    failed_sent_files = [object Object],[object Object],[objectObject],[object Object],[object Object],[object Object],[objectObject],[object Object
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Ragnarok@1:103/705 to Rob Swindell on Sat Dec 19 13:28:23 2020
    El 18/12/20 a las 23:50, Rob Swindell escribió:
    https://gitlab.synchro.net/main/sbbs/-/commit/6fa1aa8ebafcaf11b1359741 Modified Files:
    exec/binkit.js
    Log Message:
    Convert stats failed_sent_files from array of objects to array of strings

    Fixes issue reported by Ragnarok (DOCKSUD) where by data/binkstats.ini
    could contain:
    failed_sent_files = [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ
    [vert/cvs/bbs].synchro.net


    Thanks you!

    Abrazo!

    ---
    ■ Synchronet ■ Dock Sud BBS TLD 24 HS - bbs.docksud.com.ar
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Sun Jan 31 18:51:59 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/dff4076f809f1e8ae828684e
    Modified Files:
    exec/binkit.js
    Log Message:
    Allow config file (alternate sbbsecho .ini file) to be passed on cmdlineBack in the day, some sysops used to use multiple SBBSecho configuration files.Nobody seems to do that these days, but its certainly a viable solution (orshould be) for multiple FTNs on a single BBS. Anyway, this enhancement allowsBinkIT to use an alternate SBBSecho configuration file (though it must stillbe located in the ctrl dir).
    --- SBBSecho 3.12-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Rob Swindell@1:103/705 to Git commit to main/sbbs/master on Sun Jun 6 00:16:46 2021
    https://gitlab.synchro.net/main/sbbs/-/commit/1e441edadc29d27925ebc2a9
    Modified Files:
    exec/binkit.js
    Log Message:
    Don't log an error if after a failure to remove a file, the file doesn't exist --- SBBSecho 3.14-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Deucе@1:103/705 to Git commit to main/sbbs/master on Wed Jun 4 19:51:59 2025
    https://gitlab.synchro.net/main/sbbs/-/commit/99c1ec3fd5a25ffd60ea0b67
    Modified Files:
    exec/binkit.js
    Log Message:
    Work around bug in issue #936

    The regexp engine used in aarch64 builds has a bug where /x[^x]*?$/
    will not match when /x[^x]*$/ will, which causes issues with lockfiles.

    Simply removing the ? (which in this case should not change the
    results) resolves it.

    Other cases of *?$ in regexps should be investigated to ensure this
    is the only workaround (this is the only case of an inverted alternative followed by *?$ I can find though).
    --- SBBSecho 3.27-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)