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
e0438c60
Commit
e0438c60
authored
4 years ago
by
Rob Swindell
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of git@gitlab.synchro.net:sbbs/sbbs.git
parents
524feef6
bf72c333
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!463
MRC mods by Codefenix (2024-10-20)
Pipeline
#1002
failed
4 years ago
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
exec/init-fidonet.ini
+10
-0
10 additions, 0 deletions
exec/init-fidonet.ini
webv4/lib/events/mail.js
+1
-1
1 addition, 1 deletion
webv4/lib/events/mail.js
webv4/lib/locale/en_us.ini
+1
-0
1 addition, 0 deletions
webv4/lib/locale/en_us.ini
webv4/pages/000-mail.xjs
+1
-0
1 addition, 0 deletions
webv4/pages/000-mail.xjs
with
13 additions
and
1 deletion
exec/init-fidonet.ini
+
10
−
0
View file @
e0438c60
...
...
@@ -98,6 +98,16 @@ fido = 1:19/37
host
=
hub.cybernetbbs.net
areatag_prefix
=
CN_
[zone:42]
name
=
SFNet
desc
=
Science Fiction
pack
=
http://furmenservices.net/sfnet.zip
coord
=
Dallas Vinson
addr
=
42:1/1
host
=
furmenservices.net
echolist
=
sfnet.na
areatag_prefix
=
SF_
[zone:44]
name
=
DoRENET
desc
=
BBS modifications, coding, ansi/asci etc
...
...
This diff is collapsed.
Click to expand it.
webv4/lib/events/mail.js
+
1
−
1
View file @
e0438c60
...
...
@@ -6,7 +6,7 @@ function cycle() {
if
(
user
.
number
<
1
||
user
.
alias
==
settings
.
guest
)
return
;
if
(
time
()
-
last_run
<=
frequency
)
return
;
last_run
=
time
();
const
count
=
user
.
stats
.
mail_waiting
;
const
count
=
user
.
stats
.
unread_
mail_waiting
;
if
(
count
>
0
||
(
count
==
0
&&
last_count
>
0
))
{
emit
({
event
:
'
mail
'
,
data
:
JSON
.
stringify
({
count
:
count
})});
}
...
...
This diff is collapsed.
Click to expand it.
webv4/lib/locale/en_us.ini
+
1
−
0
View file @
e0438c60
...
...
@@ -24,6 +24,7 @@ label_message_date = on
label_message_subject
=
Subject
label_tab_inbox
=
Inbox
label_tab_sent
=
Sent
label_new_message
=
New
[page_register]
title
=
Register
...
...
This diff is collapsed.
Click to expand it.
webv4/pages/000-mail.xjs
+
1
−
0
View file @
e0438c60
...
...
@@ -18,6 +18,7 @@
<div
class=
"checkbox"
>
<label
class=
"checkbox-inline"
>
<input
id=
"check-
<?
write
(
header
.
number
);
?>
"
type=
"checkbox"
class=
"mail-select"
>
<?
write
(
header
.
attr
&
MSG_READ
?
''
:
'<span class="badge new">'
+
locale
.
strings
.
page_mail
.
label_new_message
+
'</span>'
)
?>
</label>
</div>
</div>
...
...
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