- Apr 01, 2023
-
-
Rob Swindell authored
CID 451182
-
Rob Swindell authored
This is an easily overlooked setting, let's make it easier
-
- Mar 31, 2023
-
-
Rob Swindell authored
Modem result codes. Oh, the memories...
-
- Mar 29, 2023
-
-
Rob Swindell authored
Anacron sends mail From: Anacron <root>, so deal (convert to root@youraddr). Also, gracefully handle a forgotten recipient list.
-
Rob Swindell authored
warning: ‘%s’ directive writing up to 16384 bytes into a region of size between 1 and 16385 [-Wformat-overflow=]
-
Rob Swindell authored
warning: argument 1 value ‘18446744073709551608’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
-
Rob Swindell authored
... rather than just return false. This will make debugging this type of issue much easier in the future. sendmail.js was allowing empty recipient_list array arguments and the MsgBase .status was 0 and .error just an emtpy string - unhelpful.
-
Rob Swindell authored
warning: ‘checkStamp’ accessing 20 bytes in a region of size 11 etc.
-
Rob Swindell authored
Direct users to Program Settings->Startup Screen Mode for initial/default screen mode. Wording update for Startup Screen Mode help. Indent the File Locations less as these paths are usually much longer on Windows and is ugly when wrapped here.
-
Rob Swindell authored
warning: ‘%s’ directive writing up to 128 bytes into a region of size 74 note: ‘sprintf’ output between 21 and 179 bytes into a destination of size 80
-
Rob Swindell authored
warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘void *’ warning: ‘sprintf’ writing a terminating nul past the end of the destination
-
Rob Swindell authored
(like we do for Message Groups and File Libraries already)
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
- Mar 28, 2023
-
-
Rob Swindell authored
changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-const-int-float-conversion] if(bytes < 0 || bytes > INT64_MAX) ~ ^~~~~~~~~ /usr/include/x86/_stdint.h:90:19: note: expanded from macro 'INT64_MAX' #define INT64_MAX 0x7fffffffffffffff ^~~~~~~~~~~~~~~~~~
-
Rob Swindell authored
gravyard - Added missing declaration in exit_game See merge request !274
-
-
Rob Swindell authored
Use the Synchronet-supported FTN/QWKnet routable addressing in the from fields of messages posted via those network types. Using the mailutil.js fidoaddr_to_emailaddr() function that was apparently created for listserver.js but then made unnecessary (and thus unused for several years). I think this addresses the concerns from issue #487. Reading a message via NTTP (using the Synchronet NNTP service) in Thunderbird, one can now reply to sender via email and it "just works" so long as the sysop has configured the network support for those net-types correctly and Thunderbird is configured with the Synchronet mail server as its SMTP server to use for that newsgroup folder. Whether the Synchronet mail server is configured to use direct delivery or relay is not relevant (though mentioned in the issue description).
-
Rob Swindell authored
-
Rob Swindell authored
Move the Mail Server->SendMail* settings to their own sub-menu. Added popups while reading sbbs.ini
-
Rob Swindell authored
Fixed reversal of logic for FTP Server->Sysop File System Access option
-
Rob Swindell authored
And display an error message upon failure.
-
Rob Swindell authored
-
Rob Swindell authored
-
- Mar 27, 2023
-
-
Rob Swindell authored
Dasme/gravyard See merge request !272
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
- Mar 26, 2023
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Still needs online help text.
-
Rob Swindell authored
This allows the [Global] section to be applied to each server section correctly Before this change, changing BindRetry in the global settings would result in the original global BindRetry value being added to each server/section of the sbbs.ini file.
-
Rob Swindell authored
The address needed to be converted to a string first.
-
Rob Swindell authored
Remove values, not keys, when setting a key with a global default. Use UInt16 functions for getting/setting TCP ports (this fixes an issue with the FTP PasvHigh port being set to -1 (instead of 65535). Use iniGetUInteger instead of iniGetShortInt for most other key values. First sbbs.ini save support in SCFG, still experimental.
-
Rob Swindell authored
Remove trailing white-space (e.g. after the equals or colon following the key) in iniRemoveValue().
-