Skip to content
Snippets Groups Projects
Commit e0438c60 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'master' of git@gitlab.synchro.net:sbbs/sbbs.git

parents 524feef6 bf72c333
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1002 failed
......@@ -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
......
......@@ -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 })});
}
......
......@@ -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
......
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment