Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
256e548b
Commit
256e548b
authored
19 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Added WM_* mode bit definitions for bbs.email() and bbs.netmail()
(needed for classic_shell.js).
parent
f7516ba2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/load/sbbsdefs.js
+14
-0
14 additions, 0 deletions
exec/load/sbbsdefs.js
with
14 additions
and
0 deletions
exec/load/sbbsdefs.js
+
14
−
0
View file @
256e548b
...
...
@@ -688,3 +688,17 @@ var MAIL_SENT =1 /* mail you have sent */
var
MAIL_ANY
=
2
/* mail sent to or from you */
var
MAIL_ALL
=
3
/* all mail (ignores usernumber arg) */
/********************************************/
/********************************************/
/* 'mode' bits for bbs.email()/netmail() */
/********************************************/
var
WM_EXTDESC
=
(
1
<<
0
)
/* Writing extended file description */
var
WM_EMAIL
=
(
1
<<
1
)
/* Writing e-mail */
var
WM_NETMAIL
=
(
1
<<
2
)
/* Writing NetMail */
var
WM_ANON
=
(
1
<<
3
)
/* Writing anonymous message */
var
WM_FILE
=
(
1
<<
4
)
/* Attaching a file to the message */
var
WM_NOTOP
=
(
1
<<
5
)
/* Don't add top because we need top line */
var
WM_QUOTE
=
(
1
<<
6
)
/* Quote file available */
var
WM_QWKNET
=
(
1
<<
7
)
/* Writing QWK NetMail (25 char title) */
var
WM_PRIVATE
=
(
1
<<
8
)
/* Private (for creating MSGINF file) */
/********************************************/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment