Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
70898b5bbf5f1b993a0f1cfcf2e69edf60b5bc8e...5cbdb40433b4bb25fd39517913bfb7339b926b73
Commits (2)
Clarify in the help that Message-ID hashing/checking cannot be disabled
· 3c778dae
Rob Swindell
authored
Feb 03, 2022
3c778dae
JSDOC note to clarify that Archive() cannot be used to update an archive
· 5cbdb404
Rob Swindell
authored
Feb 03, 2022
5cbdb404
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
src/sbbs3/js_archive.c
src/sbbs3/js_archive.c
+2
-1
src/sbbs3/scfg/scfgsub.c
src/sbbs3/scfg/scfgsub.c
+8
-5
No files found.
src/sbbs3/js_archive.c
View file @
5cbdb404
...
@@ -614,7 +614,8 @@ js_archive_constructor(JSContext *cx, uintN argc, jsval *arglist)
...
@@ -614,7 +614,8 @@ js_archive_constructor(JSContext *cx, uintN argc, jsval *arglist)
}
}
#ifdef BUILD_JSDOCS
#ifdef BUILD_JSDOCS
js_DescribeSyncObject
(
cx
,
obj
,
"Class used for opening, creating, reading, or writing archive files on the local file system"
js_DescribeSyncObject
(
cx
,
obj
,
"Class used for creating, reading, or extracting archive files on the local file system<br>"
"Note: cannot be used to update (e.g. add/remove/replace files in) an existing archive."
,
31900
,
31900
);
);
js_DescribeSyncConstructor
(
cx
,
obj
,
"To create a new Archive object: <tt>var a = new Archive(<i>filename</i>)</tt>"
);
js_DescribeSyncConstructor
(
cx
,
obj
,
"To create a new Archive object: <tt>var a = new Archive(<i>filename</i>)</tt>"
);
...
...
src/sbbs3/scfg/scfgsub.c
View file @
5cbdb404
...
@@ -507,13 +507,16 @@ void sub_cfg(uint grpnum)
...
@@ -507,13 +507,16 @@ void sub_cfg(uint grpnum)
uifc
.
helpbuf
=
uifc
.
helpbuf
=
"`Maximum Number of CRCs:`
\n
"
"`Maximum Number of CRCs:`
\n
"
"
\n
"
"
\n
"
"This value is the maximum number of CRCs that will be kept in the
\n
"
"This value is the maximum number of 32-bit CRCs that will be retained in
\n
"
"sub-board for duplicate message checking. Once this maximum number of
\n
"
"the message base for purposes of duplicate message `body text` checking.
\n
"
"CRCs is reached, the oldest CRCs will be automatically purged.
\n
"
"Once this maximum number of CRCs is reached, the oldest CRCs are
\n
"
"automatically purged.
\n
"
"
\n
"
"
\n
"
"A value of `0` means no CRCs (or other hashes) of message body text
\n
"
"A value of `0` means no CRCs (or other hashes) of message body text
\n
"
"or meta-data will be saved (i.e. for purposes of duplicate message
\n
"
"will be saved (i.e. for purposes of duplicate message detection and
\n
"
"detection and rejection)."
"rejection).
\n
"
"
\n
"
"Note: Hashing and duplicate-checking of `Message-IDs` cannot be disabled."
;
;
uifc
.
input
(
WIN_MID
|
WIN_SAV
,
0
,
17
,
"Maximum Number of CRCs"
uifc
.
input
(
WIN_MID
|
WIN_SAV
,
0
,
17
,
"Maximum Number of CRCs"
,
str
,
9
,
K_EDIT
|
K_NUMBER
);
,
str
,
9
,
K_EDIT
|
K_NUMBER
);
...
...