- Oct 15, 2018
-
-
rswindell authored
group. Resolves error line 31: TypeError: msg_area.grp[grp] is undefined
-
rswindell authored
details.
-
rswindell authored
-
rswindell authored
of being used elsewhere (e.g. in a Web UI perhaps?).
-
rswindell authored
display file.
-
rswindell authored
was so pervasive. I hope I don't regret changing this. Ctrl-AZ == Ctrl-Z just "feels right" while Ctrl-AZ == EOF feels stoopid. :-/
-
- Oct 11, 2018
-
-
rswindell authored
So just remove the trailing line-feed.
-
rswindell authored
-
rswindell authored
to represent the Ctrl-Z char).
-
rswindell authored
*lower* than the "inactivity warning" timeout value, the hangup timer wouldn't actually take effect until after the warning timeout elapsed. This made the login.js modification (rev 1.14) where we reduce the hangup timeout (by 75%) when an ANSI terminal is not detected, not effective.
-
rswindell authored
('?' from the Reading Messages prompt) would not fully display because it contains a Ctrl-Z character (for the right-arrow symbol). Rather than revert the menu() change (where CPM-EOF mode is the default for menu files) - change the Ctrl-AZ sequence from "premature end-of-file" to instead send an actual Ctrl-Z character (similiar to Ctrl-AA, Ctrl-AL, etc.). This changes the long-standing behavior of what Ctrl-AZ does, but since that was a dubious "feature" that I'm pretty sure nobody used, I'm will to take that chance. If you need a premature EOF now, just use a regular ole Ctrl-Z char instead (or even the @eof@ code). Of course the msgscan.asc now has to change accordingly.
-
- Oct 09, 2018
-
-
rswindell authored
the current column number. Use the correct member variable name (column).
-
rswindell authored
-
rswindell authored
currently logging-out.
-
rswindell authored
terminal text and attributes with a linked-list. In doing so: - the save depth is no longer fixed (at 4), but dynamic and unbounded - the current column position is also saved/restored (bug fix) - no more copy/pasta from sbbsdefs.h into js_console.cpp - the JS console.saveline() and restore() methods now return Bool to indicate success/failure Also, some trailing white-space was auto-removed due to local editor settings.
-
- Oct 08, 2018
- Oct 07, 2018
-
-
rswindell authored
Parse the attribute flags and print descriptions of the set flags (except for unused bit-10). Allow a '-c' option to only print control (kludge) lines from the body text. The '-b' option displays both body text and control lines (same as before). Fixed a memory leak and some other bad code examples. Some minor beautifications.
-
echicken authored
-
echicken authored
But don't whine about EOF.
-
echicken authored
I'm lookin' at you, retronet.
-
echicken authored
and also look to see if the nodelist file exists before trying to load it for a search.
-
echicken authored
-
rswindell authored
-
rswindell authored
-
- Oct 06, 2018
-
-
rswindell authored
-
rswindell authored
-
rswindell authored
-
rswindell authored
Lock the mail base while backing it up as part of the daily maintenance.
-
rswindell authored
-
rswindell authored
is ever written to disk, it'll be zeroes not garbage. Also, NULL the subscan pointer after freeing (and don't free if it's NULL).
-
rswindell authored
is set: this insures that uninitialized msg-scan ptrs/cfg won't be written to disk unless a successful logon()/getmsgptrs() was called first. This probably fixes the sighting that echicken reported where a failed SSH login caused his sub-scan config file (data/user/0001.subs) to contain uninitialized/garbage values. logout() could be called from multiple places (e.g. JS and Baja modules), even before a successful login is completed, so this sighting is not entirely impractical.
-
rswindell authored
With the change to smblib of March 14 (smbstr.c 1.29), netaddr_type() will parse generic words as QWK-network addresses. The fix here is to only attempt a net-type lookup if the 'to' field contains an '@'.
-
echicken authored
Front-pad cell contents with 2+ spaces for right align. Pad each end with 2+ spaces for centre align. No attempt has been made to make this play nicely with colspans, but it does work with wrapped cells.
-
- Oct 05, 2018
-
-
echicken authored
domain name from sbbsecho.ini), use its value as the domain name in the lightbar list. For nodelist_DomainName keys, use the DomainName portion as the domain name in the lightbar list. (Don't use the parsed domain name from the nodelist file's first line, this is unreliable.)
-
echicken authored
log the filename and error if one occurs.
-
echicken authored
-
echicken authored
-
echicken authored
-
echicken authored
Replaces 'ftnnv' thing that's been floating around. Loads any nodelists you've configured in echocfg/sbbsecho.ini. Has a search feature, let's you send netmail. You can optionally add this section and any keys to modopts.ini: [fido_nodelist_browser] auto_close_domain = true auto_close_zone = true auto_close_net = true nodelist_a = /path/to/some/nodelist nodelist_b = /path/to/some/other/nodelist The auto_close settings control whether branches in the lightbar tree are closed when you open another at the same level. The defaults are more memory friendly. If you have nodelists not known to sbbsecho (or aren't using sbbsecho 3) you can add them here; the key must begin with 'nodelist_'. Wildcards are not supported; you should have some external mechanism copying the current nodelist to a fixed path & filename.
-