- Dec 19, 2024
-
-
Deucе authored
Nobody will really care though.
-
Rob Swindell authored
This partially reverts commit 03b84df8. I observed deadlocks on Linux attempting locks of user.tab on Samba share, which also deadlocked my Windows nodes. Interestingly, the Windows nodes never deadlocked on their own (after a week of testing) when using blocking locks. Double the frequency of lock retries - this has helped reduce the observed user.tab lock failures on Vertrauen.
-
Rob Swindell authored
As Deon pointed out in DOVE-Net / Synchronet Discussion, having a local time zone configured with a different UTC offset than your system time zone can produce strange/unexpected results (e.g. displayed age of messages). Since it's possible that not all sysops will complete the configuration wizard or actually set their timezone to the correct value (and ignore the startup warning message), we now make the default Local Time Zone to be "automatic" - query the OS every time the local time zone is needed/used. This has the downside of only storing (e.g. in message headers) the UTC offset of the current time zone (not the time zone abbreviation/name as encoded by SMB). I considered making an option to dynamically figure out the actual time zone (not just the UTC offset) and while I think that's doable, Deon just wanted his UTC offset (e.g. UTC+11:00) and not his time zone name (e.g. AEDT) stored in message headers, so this setting w...
-
Rob Swindell authored
Make the scheme ("http://" or "https://") configurable via rss.ini, default is now "https://". Make the message link format somewhat configurable via rss.ini (hopefully to support some other/future web message reading interface should there be one). Reportedly, the MsgBase.get_msg_header/body() calls of the "total_msgs" offset were logging errors? I was not able to reproduce this (the !hdr check seemed to be successfully ignoring such cases), but in any case, message offsets are 0-based, so this was definitely an off-by-one issue, even if it was a silent failure for everyone else. <shrug>
-
Rob Swindell authored
... when current timezone is negative offset from UTC, but not a US time zone, the default should be "No".
-
Rob Swindell authored
DDMsgReader bug fix: In the scrolling message reader interface, it now exits on user input timeout (as it should). This should fix issue #844, reported by Keyop Closes #844 See merge request main/sbbs!483
-
Eric Oulashin authored
DDMsgReader bug fix: In the scrolling message reader interface, it now exits on user input timeout (as it should). This should fix issue #844, reported by Keyop
-
Deucе authored
Presumably it's because I'm not using std=gnu11 or whatever
-
Deucе authored
Use the same hack as for strerror_r()
-
Deucе authored
-
- Dec 18, 2024
-
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
The non-standard strerror_r() is glibc specific, musl doesn't do that. It *appears* that __USE_GNU implies glibc.
-
Rob Swindell authored
-
- Dec 17, 2024
-
-
Rob Swindell authored
Looking into potential causes of issue #843, I found several instances where we call getuserdat() without checking the return value and restoring the useron.number to the current user number upon error: getuserdat() zeroes out the user struct/number upon error, a bad API choice made 23 years ago. Replace those instances with calls to sbbs_t::getuseron() which logs any open/lock/read failures of the user.tab and does not modify/zero-out the sbbs_t::useron struct upon error.
-
Rob Swindell authored
-
Rob Swindell authored
... since all (almost all) callerd do a config check first. Also, some callers of openuserdat() were expecting -1 on failure (always). Functions that returned the return value of openuserdat() upon failure, now return USER_OPEN_ERROR instead, to be consistent.
-
Rob Swindell authored
-
Rob Swindell authored
A copy/paste from websrvr.c
-
- Dec 16, 2024
-
-
Rob Swindell authored
... that is working (for me at least) to auto load/rerun sbbs
-
- Dec 15, 2024
-
-
Rob Swindell authored
-
- Dec 14, 2024
-
-
Rob Swindell authored
-
Rob Swindell authored
This needed a custom solution (not errprintf) since the filename is passed-in is likely from dynamically allocated memory, so a pointer comparison isn't enough - and we don't get the function name.
-
Rob Swindell authored
This is a solution for issue #842, but only for messages posted/sent from the terminal server using built-in functions and not via JS or other means. A more universal/generic solution would be nice (beyond just always storing message headers and bodies in UTF-8), but nothing has come to mind.
-
Rob Swindell authored
-
Rob Swindell authored
This reverts commit 79fa3c0b.
-
- Dec 12, 2024
-
-
Deucе authored
Differently than all other types, the length must be set before parsing because the BPP does not contain the length data, instead the length is specified by the message definition.
-
Deucе authored
The expectation is now that there will be a single copy of SSH BPP contents and arrays and buffers will be pointers into that.
-
Deucе authored
This avoids another allocation/free requirement.
-
Deucе authored
All consumers are expected to only #include deucessh.h now. Individual headers should not be included.
-
- Dec 11, 2024
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
So require(..., 'node_status') instead. The function we actually use here.
-
Rob Swindell authored
and we weren't using that function here anyway, so require(..., 'node_status') instead.
-
Rob Swindell authored
-
- Dec 10, 2024
-
-
Rob Swindell authored
Looks like this feature (commit d661427e) never really worked correctly since it counted the files removed from each sub-dir and then stopped deleting when the count reached the number of files in the base directory. This was done to accommodate the 'keep' feature (part of previous commits). So make 'keep' check conditional on it being non-zero and just don't ever use a non-zero keep value with a recursive delete and we should be good! :-) This fixes issue #841
-
Rob Swindell authored
part of fix for issue #619
-
Rob Swindell authored
Part of solution for issue #619 (for the web server)
-
Rob Swindell authored
Part of solution for issue #619 (for the mail server)
-