diff --git a/ChangeLog b/ChangeLog index 97397eca..44c52bdb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -77,6 +77,8 @@ v0.35.02 22-Jun-2002 OLR client if this is present. When messages are uploaded with BlueWave or QWK the netmail.jam or echomail.jam is updated. + With QWK messages upload, if a tearline is already present, it + will not be added again. mbtask: When first run the goldnode command is only filled in if it diff --git a/html/programs/mbmon.html b/html/programs/mbmon.html index 72da8785..8a5f5189 100644 --- a/html/programs/mbmon.html +++ b/html/programs/mbmon.html @@ -12,7 +12,7 @@
-
Last update 07-jun-2001
+
Last update 04-Jul-2002

 

mbmon - MBSE BBS Monitor

@@ -36,6 +36,46 @@ show system statitistics, disk useage, and the last callers list. In order to run mbmon you must set the global variable $MBSE_ROOT. This variable must point to the root directory of the bbs structure. +

 

+ +

Menu 1.

+

+This screen shows the running bbs programs and what they are doing. +

 

+ +

Menu 2.

+

+This screen displays the actual mbtask server status and some internal +variables. The left side of the screen are more statistics and counters, the +right side displays the actual bbs open status, Zone Mail Hour status, if +Internet is alive, if internet is needed, if mbtask is internal running and the +system load average. +

 

+ +

Menu 3.

+

+This screen displays the filesystem usage. Removeable filesystems such as CD's are not displayed, +only filesystems that the bbs could use. +

 

+ +

Menu 4.

+

+This screen shows some bbs information. +

 

+ +

Menu 5.

+

+This menus shows the lastcallers of the bbs. It shows the username, location, +userlevel, the device they logged in from, the starttime, the duration, the +number of calls, the linespeed and the actions they have done. +The action fields mean: +Hidden, Download, Upload, Read messages, Post +messages, Chat, Offline reader, External door. +

 

+ +

Menu 6.

+

+This shows the software information.

IndexBack to index  diff --git a/mbsebbs/offline.c b/mbsebbs/offline.c index c79ffd13..441ab5ef 100644 --- a/mbsebbs/offline.c +++ b/mbsebbs/offline.c @@ -1981,7 +1981,7 @@ void BlueWave_Fetch() * the active areas back on. */ if (Pdh.flags & PDQ_AREA_CHANGES) { - Syslog('m', " New Area Configuration present"); + Syslog('+', " New Area Configuration present"); i = 0; sprintf(temp, "%s/%s/.olrtags", CFG.bbs_usersdir, exitinfo.Name); @@ -2024,6 +2024,7 @@ void BlueWave_Fetch() colour(3, 0); /* Message areas selected */ printf("%d %s\n", i, (char *)Language(456)); + Syslog('+', " %d active message areas.", i); } fclose(up); }