- Apr 01, 2018
-
-
rswindell authored
new user signup process with that name (just fall-through to a normal login prompt).
-
rswindell authored
-
rswindell authored
domain/zone-map configuration to be used - always.
-
rswindell authored
domains configured in sbbsecho.ini ('domains' is always undefined at this point, <shrug>).
-
rswindell authored
when outbound directory (dir) was "../some/path".
-
rswindell authored
(Argus and Mystic's BinkP mailers don't support encryption).
-
rswindell authored
-
rswindell authored
if it didn't already exist.
-
rswindell authored
Added node address to some authentication failure warnings.
-
- Mar 31, 2018
-
-
rswindell authored
-
rswindell authored
-
rswindell authored
Created struct fidoaddr (5D address), though it's only used (so far) in pktdump.c - doesn't really need to be packed.
-
rswindell authored
If you're not using BinkIT (you're using some other FidoNet mailer), you can safely ignore all the settings/options. A lot of the online help for the new settings/menus needs to be written still and the wiki now needs a lot of update to reflect the changes. The "title" of this program was changed, again, from "SBBSecho Config" to "[Synchronet] FidoNet Config" since it configures more than just SBBSecho now.
-
rswindell authored
(the upgrade renames binkit.ini and ftn_domains.ini to *.old).
-
rswindell authored
Use "jsexec binkit upgrade" to upgrade your existing .ini files if you're already running BinkIT 1.x. echocfg v3.04 may now be used to set all the BinkIT settings and domains (in sbbsecho.ini).
-
rswindell authored
(note: some of the key names were changed), run "jsexec binkit upgrade" to upgrade your existing .ini's (if you have them). Removed support for sbbsecho.cfg.
-
rswindell authored
-
rswindell authored
-
deuce authored
-
echicken authored
-
- Mar 30, 2018
- Mar 28, 2018
- Mar 27, 2018
- Mar 26, 2018
-
-
nightfox authored
-
deuce authored
around a broken CRAM-MD5 implementation. For now, retrains the double-test for Mystic/1.12A39 until we see what version number the fixed builds have. If the major version is less than one, returns true. If the major version is greater than one, returns false. If the minor version is less than 12, returns true. If the minor version is greater than 12, returns false. If there is no character after the minor versions, returns false. (ie: 1.12 is newer than 1.12A39 and is assumed to be fixed) If the character after the minor version is not an 'A', returns false. (ie: 1.12B1 and 1.12.1 are newer than 1.12A39 and assumed fixed) If the number after the 'A' is less than or equal to 39, returns true. In all other cases, returns false. This prevents lowering security by having two allowed CRAM-MD5 responses for some remote software versions. Hopefully the fixed build will have version 1.12A40 and we'll be able to remove the last version that does that.
-
deuce authored
channel we ignore/close, we would get a separate warning for each chunk of data on that channel until we read past the close. Instead, if we're closing a channel, we note the channel ID, and simply discard the information immediately on the most recently closed channel. A remote could still cause a bunch of log output by multiplexing two or more writes to invalid channels, but nobody seems to do that, so this should be good for now.
-
rswindell authored
syncprog and the commit log again).
-
rswindell authored
of the #if !NO_SOCKET_SUPPORT block. Fixes Windows build of addfiles and other utils.
-
rswindell authored
line 1040: TypeError: ini.GetObject is not a function
-
nightfox authored
-
nightfox authored
Version 0.36 Beta: For non-lightbar voting, updated to use BallotHdr (791) instead of SelectHdr (501).
-
- Mar 25, 2018
-
-
rswindell authored
-
rswindell authored
the output_thread which may occur after an SSH-related error in the input thread, e.g.: Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel Sun Mar 25 2018 01:45 pm bbs.synchro.net Node 6 SSH ERROR 'Bad argument, parameter 2' (-2) setting channel ... by introducing a new sbbs_t member variable: terminate_output_thread which is only set to true when the input_thread is terminating. If there is any possibility that the input_thread could startup and get an SSH error before the output_thread even starts, then we will want to move the terminate_output_thread=false initialization to the sbbs_t constructor.
-