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
Commits
f3dfd635
Commit
f3dfd635
authored
May 02, 2019
by
rswindell
Browse files
Added new text.dat string: MsgCarbonCopyList
used to display a CC list, when applicable.
parent
50d4ebf5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
ctrl/text.dat
ctrl/text.dat
+1
-0
src/sbbs3/getmsg.cpp
src/sbbs3/getmsg.cpp
+2
-0
src/sbbs3/text.h
src/sbbs3/text.h
+1
-0
src/sbbs3/text_defaults.c
src/sbbs3/text_defaults.c
+1
-0
No files found.
ctrl/text.dat
View file @
f3dfd635
...
...
@@ -981,3 +981,4 @@
"\1r\1hUnsupported backspace key: \1w%02Xh " 813 InvalidBackspaceKeyFmt
"Swap the delete (DEL, ^BS) and backspace (BS, ^H) keys" 814 SwapDeleteKeyQ
"\1n\1hCBM/\1yPETSCII\1w terminal detected.\r\n" 815 PetTermDetected
"\r\n \1bCC \1n\1b: \1h\1c%.70s" 816 MsgCarbonCopyList
src/sbbs3/getmsg.cpp
View file @
f3dfd635
...
...
@@ -153,6 +153,8 @@ void sbbs_t::show_msghdr(smb_t* smb, smbmsg_t* msg, const char* subject, const c
if
(
msg
->
to_ext
)
bprintf
(
text
[
MsgToExt
],
msg
->
to_ext
);
}
if
(
msg
->
cc_list
!=
NULL
)
bprintf
(
text
[
MsgCarbonCopyList
],
msg
->
cc_list
);
if
((
from
!=
NULL
||
msg
->
from
!=
NULL
)
&&
(
!
(
msg
->
hdr
.
attr
&
MSG_ANONYMOUS
)
||
SYSOP
))
{
bprintf
(
text
[
MsgFrom
],
from
==
NULL
?
msg
->
from
:
from
);
if
(
msg
->
from_ext
)
...
...
src/sbbs3/text.h
View file @
f3dfd635
...
...
@@ -826,6 +826,7 @@ enum {
,
InvalidBackspaceKeyFmt
,
SwapDeleteKeyQ
,
PetTermDetected
,
MsgCarbonCopyList
,
TOTAL_TEXT
};
...
...
src/sbbs3/text_defaults.c
View file @
f3dfd635
...
...
@@ -1340,4 +1340,5 @@ const char * const text_defaults[TOTAL_TEXT]={
"
\x61\x63\x6b\x73\x70\x61\x63\x65\x20\x28\x42\x53\x2c\x20\x5e\x48\x29\x20\x6b\x65\x79\x73
"
// 814 SwapDeleteKeyQ
,
"
\x01\x6e\x01\x68\x43\x42\x4d\x2f\x01\x79\x50\x45\x54\x53\x43\x49\x49\x01\x77\x20\x74\x65\x72\x6d\x69\x6e\x61\x6c\x20\x64\x65\x74
"
"
\x65\x63\x74\x65\x64\x2e\x0d\x0a
"
// 815 PetTermDetected
,
"
\x0d\x0a\xb3\x20\x01\x62\x43\x43\x20\x20\x01\x6e\x01\x62\x3a\x20\x01\x68\x01\x63\x25\x2e\x37\x30\x73
"
// 816 MsgCarbonCopyList
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment