- Oct 05, 2018
-
-
rswindell authored
actual message number (rather than a 1-based message index offset) by using #<number>, e.g. "smbutil r#3694" will read the message base starting at message number 3694, if it exists. Also documented the [-n] syntax for reading/listing messages less than n days old.
-
rswindell authored
-
rswindell authored
with the terminal and mail servers' log output and provide more details (e.g. on errors).
-
rswindell authored
separate from the log text and is consistent with the mail server log output.
-
rswindell authored
-
rswindell authored
-
rswindell authored
alphabetized, so the indexes don't necessarily match the order (of timed events) in SCFG.
-
- Oct 04, 2018
-
-
rswindell authored
-
rswindell authored
text. Use strcasestr() for message body/header-field text searches (simplify the code) - not sure why we needed strip_ctrl(), so removed.
-
rswindell authored
the tags (no yes/no prompt), and use the original message's tags as the default value.
-
rswindell authored
MSG_SUMMARY is currently never populated by anything. MSG_TAGS is a new (optional) thing.
-
- Oct 03, 2018
-
-
rswindell authored
from both ends of the input string automatically and disallow (ignore) more than one consecutive space character mid-string. The returned value is still the non-trimmed string length - perhaps that should be changed.
-
rswindell authored
a message header. Added "tags" and "summary" (previously missing) to the property fields parsed when adding/writing a message header. This parse code is getting particulary copy/pasta and should be converted to a table-driven loop reusing the same logic.
-
rswindell authored
message header.
-
rswindell authored
Updated some comments in smbdefs.h too.
-
rswindell authored
If a message sub-board is configured to "Allow Message Tagging" (under Toggle Options in SCFG->Message Areas), then after a message is posted (via the terminal server), the user will be prompted if they want to tag the message with one or more space-separated tags. The no/yes prompt can be skipp if desired by setting the TagMessageQ line in the text.dat file to an empty string. There is currently no provision for regular users to actually see/view the message tags (yet), but the sysop or sub-op can view the tags in the message header with the 'H' sys/sub-op command.
-
rswindell authored
-
rswindell authored
-
rswindell authored
smb_nettype() now return "FidoNet" instead of "Fidonet" for NET_FIDO (for not particularly good reason).
-
- Oct 01, 2018
- Sep 27, 2018
-
-
rswindell authored
always include the text description of the last error and the line number. The logging of the smb.file string is probably redundant since that path will likely be included in the last_error string.
-
- Sep 24, 2018
-
-
rswindell authored
messages (and maybe files in the future).
-
- Sep 08, 2018
-
-
rswindell authored
confusing with 3 bool settings (in the sbbsecho.ini) to represent 4 valid security requirement levels, so I attempted to simply the menu options to make it easy for sysops. BinkpAllowPlainText now defaults to true since the supported encryption method isn't even an official FidoNet standard, yet. I also added/updated some online help (F1) help text. Added an "Exiting" popup (like SCFG) when exiting.
-
- Sep 07, 2018
- Sep 06, 2018
-
-
rswindell authored
(telegram) sent to the pollster is now configurable via text.dat (VoteNoticeFmt).
-
- Sep 05, 2018
-
-
rswindell authored
an error message (uifc dialog box) rather than just silently refuse to display the upload file picker dialog. Bug reported by electrosys.
-
rswindell authored
NULL. When history is NULL, treat TAB the same as before (in weird ways). The TAB-completion algo is very simple: just find the first (case insensitive) match in the history list and if there is one, use it as the current string content.
-
- Aug 29, 2018
-
-
rswindell authored
posted vote msg - the format of the vote(s) is currently hard-coded and not colorized/pretty. This'll require an update to the PollVoteNotice text.dat line.
-
- Aug 28, 2018
-
-
rswindell authored
Also, the File() constructor will now properly complain if no filename is passed.
-
rswindell authored
of default style elements.
-
rswindell authored
- ini_key_len - ini_key_prefix - ini_section_separator - ini_value_separator - ini_bit_separator - ini_literal_separator
-
rswindell authored
and no actual observed problem.
-
rswindell authored
malloc'd strings.
-
rswindell authored
elements (member variables) would be changed to point to a string constant. Don't do that - instead just use local stack variables for those style element default values. This leads the way to constifying the style arguments in the future and allows the caller to use non-NULL style elements as indicator of something that should be freed if the caller allocated some memory for it.
-
- Aug 24, 2018
-
-
rswindell authored
I have a new use for it in the v3 Terminal Server, it now follows the "NO_DOS" option in the [bbs] section of the sbbs.ini file. So if you have multiple Win32 instances of sbbs (like I do), but only some of them support DOS programs, you can now use this ARS keyword to enable/disable access to a program based on the existance of DOS support. For example, I have some 16-bit DOS message editors where I had the ARS set to "WIN32", but on my 64-bit Windows instance of sbbs (vert.synchro.net), 16-bit DOS programs aren't supported while on my 32-bit Windows instance (bbs.synchro.net) they are. So I needed a good run-time check for whether DOS programs were supported or not and this old ARS keyword seemed the right fit. For Linux builds, this keyword will only evaluate to true if built with the USE_DOSEMU option. This is only true of the Terminal Server - use of "DOS" ARS keyword in other servers and services will still just evaluate to "false".
-
- Aug 16, 2018
-
-
rswindell authored
"short name" (e.g. derived from the "AREA tag" from FILEGATE.ZXX) is the same as a pre-existing dir, just over-write that dir - don't create a new one.
-
- Aug 15, 2018
-
-
rswindell authored
previous commit: don't clear the line counter or call pause() - which will do nothing - if the console abort flag is set.
-