- Aug 18, 2019
- Aug 17, 2019
-
-
rswindell authored
-
rswindell authored
-
rswindell authored
MSG_HFIELDS_UTF8 flag in the auxattr header field to indicate UTF-8 encoding of message header fields.
-
rswindell authored
will convert to CP437 characters for compatibility with legacy QWK BBSes). For Vertrauen/DOVE-Net, this should be set to "Yes".
-
rswindell authored
characters in message headers and body text will be converted to CP437. Also include a new field in HEADERS.DAT: utf8 = true/false to indicate that the message headers and body text contain UTF-8 encoding (not CP437).
-
- Aug 16, 2019
-
-
rswindell authored
fills the remaining portion of the current line with the specified text by repeating the characters in text until reaching terminal columns - 1
-
rswindell authored
standard time-zone (e.g. -0300 == EST) as this is not accurate when daylight saving time is in effect (-0400 == EDT or AST?).
-
rswindell authored
and timezone), for Mark Lewis. The imported timezone will always be the local timezone (at the time of import) so not sure what value that has. <shrug>
-
rswindell authored
the P_SAVEATR mode flag was specified (behave like the P_OPENCLOSE mode).
-
- Aug 15, 2019
-
-
rswindell authored
'maxlen' argument. E.g. passing 10 would result in a maximum read string length of 9 characters.
-
rswindell authored
-
rswindell authored
optionally including the current (your) node. New @-codes: "ANODES" (active-nodes count), aliases: "ANODE" and "AN" "ONODES" (other-active-nodes count), aliases: "ONODE" and "ON" Make "NN" an alias for "NODE" and "TN" and alias for "TNODE". Add "TNODES" alias for "TNODE" as well, for symmetry.
-
rswindell authored
maintained between lines, reported by Immortal@IDOMAIN: Use P_SAVEATR to retain the new attributes after each call to putmsg() in printfile() line-at-a-time mode. We are no setting the initial attribute to LIGHTGRAY or restoring the original attribute at the end (like a call to putmsg() withou the P_SAVEATR would) - so we may need to add that later for line-at-a-time mode, as well.
-
rswindell authored
Use adjusetuserrec() for credit adjustments (support full 4GB range).
-
rswindell authored
-
- Aug 14, 2019
-
-
rswindell authored
a CR *and* it doesn't contain a 0xE3 (QWK newline). <sigh>
-
rswindell authored
This variation on fcntl() record-locks resolves multiple-thread / forking issue with region locks. No longer falls back to using flock() (whole-file locks), when OFD locks are available and used successfully. At the least, this should provide a performance boost for shared files using region locks (on Linux). No change for Windows (region locks already worked sanely among multiple threads) and other *nixes (that use POSIX fcntl() locks only).
-
rswindell authored
(credits) to use the full 4 gibibyte range of a 32-bit unsigned integer: max-out at 4,294,967,295 instead of 2,147,483,647. Since these values are stored as 10 characters, we could theoretically extend the range to 9,999,999,999 (credits/bytes) without changing the user.dat format but is a bigger change (moving to 64-bit integers everywhere these values are read or adjusted).
-
rswindell authored
Only retain the last (most recent) 10 data/<id>.qwk.*.bad files and data/file/<user-num>.rep.*.bad files.
-
- Aug 13, 2019
-
-
rswindell authored
(CID) variable, even when the client isn't SEXPOTS.
-
- Aug 12, 2019
-
-
rswindell authored
TERMINAL LOCATION NUMBER (RFC 946) in sbbs_t::telnet_location. Some (older?) versions of fTelnet request to send this option to the BBS to share the real IP address of the client. Accept this option (when using "format 0") and store the first 32-bits (an IPv4 address) in the telnet location storage / caller-ID information. The same place the telnet SEND LOCATION value is stored if received. Now, we're not requesting this option (e.g. with a Telnet "DO" command), but fTelnet doesn't need that: It offers to send it, so we accept.
-
rswindell authored
to put in the description (in strftime() format). Can also be used in combination with '-t' if you want today's date/time instead. It's not very clear from the help/usage output, but if you specify both -f (or -F) and -t, you'll *only* get today's date in the description (not both the file date and today's date).
-
rswindell authored
-
rswindell authored
"kludges ... should be ... terminated by either a carriage return, or the (0xE3) QWK terminator" :-(
-
rswindell authored
(not delete) from the end of the sorted list of files (normally, 0). Created an sbbs_t::delfiles() wrapper which defaults to keep 0 files and also generates a error.log message if any of the file-deletions fail.
-
rswindell authored
(not delete) from the end of the sorted list of files (normally, 0).
-
rswindell authored
deprecated
-
- Aug 09, 2019
-
-
rswindell authored
is being forwarded to an external email address. Introduced in rev 1.690, user-forwarded emails wouldn't work because sending envelope would contain the original forward-path. Thanks again to Alterego (ALTERANT) for testing this stuff and reporting issues with detail!
-
rswindell authored
-
rswindell authored
(new). Reported by Alterego (ALTERANT)
-
rswindell authored
A few *service.js scripts call this function without a password argument (the second argument), e.g. login("guest"); If there was no guest account (or the guest account had a password assigned), this would result in a failed login attempt as "guest" along with a garbage password (e.g. a floating point number, like 3.7042561) and since it would be a unique garbage password for each login() call without an actual password specified, these login() calls would be counted as unique failed login attempts and potentially cause the client's IP address to be added to the hack.log and even ip.can (IP address filter). As seen on Mortifis' system where VERT was filtereed due to "SUSPECTED NNTP LOGIN HACK ATTEMPT", likely due to the daily sbbslist verifications when just perform a TCP connection and no actual login attempt, but nntpservice.js would still call login("guest") before the client (vert) would be disconnected.
-
- Aug 08, 2019
-
-
rswindell authored
would reuse the same buffer where the message subject (list of filenames) was stored causing havok. Reported by Alterego (ALTERANT).
-
rswindell authored
P_OPENCLOSE mode flag is *not* specified, do not malloc()/read() the entire file and then display. Instead, print one line at a time (so long as that line is <= 1MB in length), calling putmsg() for each line. This should allow the viewing of massive text files in SBBS again without alloc/swap issues. I left the calls to utf8_normalize_str() in here, but I'm not so sure about them now. putmsg() will convert UTF-8 to CP437 through print_utf8_as_cp437(), and that only lacks a couple of conversions that utf8_normalize_str() does (e.g. ellipsis to "..."), so that might be a good candidate to remove in the future.
-
rswindell authored
to the bottom of Alterego's reported issue with new mail message bodies not being displayed.
-
rswindell authored
already creates the dirs that were of concern (Transfser File Paths). May want to DLL-export this and call from here later.
-
rswindell authored
Fixed typo in other log msg.
-
rswindell authored
-