diff --git a/html/Makefile b/html/Makefile index 045cd28c..a7c708be 100644 --- a/html/Makefile +++ b/html/Makefile @@ -33,7 +33,8 @@ H_IMAGES = images/b_arrow.png images/magic.png images/nodes1.png \ images/dream1.png images/dream2.png images/dream3.png \ images/tdream1.png images/tdream2.png images/tdream3.png \ images/route1.png images/route2.png images/mbmon1.png \ - images/mbmon2.png images/mbmon1-tn.png images/mbmon2-tn.png + images/mbmon2.png images/mbmon1-tn.png images/mbmon2-tn.png \ + images/nodes11.png H_LICENSE = license/copying.html license/hydracom.html license/index.htm \ license/jam.html diff --git a/html/images/nodes10.png b/html/images/nodes10.png index 923feae0..82f1e5c5 100644 Binary files a/html/images/nodes10.png and b/html/images/nodes10.png differ diff --git a/html/images/nodes11.png b/html/images/nodes11.png new file mode 100644 index 00000000..5f249ba7 Binary files /dev/null and b/html/images/nodes11.png differ diff --git a/html/images/nodes4.png b/html/images/nodes4.png index ab6b6b7e..3a7b4eb9 100644 Binary files a/html/images/nodes4.png and b/html/images/nodes4.png differ diff --git a/html/images/nodes6.png b/html/images/nodes6.png index e1b2ff37..e64709ed 100644 Binary files a/html/images/nodes6.png and b/html/images/nodes6.png differ diff --git a/html/setup/nodes.html b/html/setup/nodes.html index e1452f83..8016bad6 100644 --- a/html/setup/nodes.html +++ b/html/setup/nodes.html @@ -14,7 +14,7 @@
-
Last update 08-Mar-2004
+
Last update 12-Aug-2004

MBSE BBS Setup - Fidonet nodes.

@@ -147,13 +147,18 @@ Irex upto 2.29. Others may exist, even some older mbse versions.

4. Edit node - mail processing

- + + + +
PKT passwordThe password to insert in .pkt files. -
Check PKT pwdCheck password in received .pkt files. If not, errors or missing passwords are only logged. If set, errors or missing password are refused and the .pkt files are renamed to .bad -
UplMgr programThe name of the Areamgr program of this node. This could be AreaFix, AreaMgr etc. -
UplMgr passwdThe password for the Areamgr of this node. -
Mail forwardNot in use yet. -
ARCmail comp.Use ARCmail 0.60 file naming convention for out of zone mail. -
ARCmail a..zAllow a..z last character for ARCmail filenames. +
PKT passwordThe password to insert +in .pkt files.
Check PKT pwdCheck password in +received .pkt files. If not, errors or missing passwords are only logged. If +set, errors or missing password are refused and the .pkt files are renamed to +.bad
Mail forwardNot in use +yet.
ARCmail comp.Use ARCmail 0.60 file +naming convention for out of zone mail.
ARCmail a..zAllow a..z last +character for ARCmail filenames.

Nodes mail setup @@ -173,14 +178,6 @@ carefull not to allow a node to connect areas from networks he has no aka in.

- - - -
Files passwordThe password for .tic files.
Mgr passwordThe password for the -Areamgr and Filemgr.
UplMgr programThe name of the -Filemgr progrom of this node. This could be FileMgr, Allfix, Raid etc.
UplMgr passwdThe password of the -Filemgr if this node.
UplMgr Add +Add a "+" in the -command to connect areas.
Incl. messageSend a netmail message for each file to send.
Send TIC fileSend .tic file to @@ -365,7 +362,31 @@ is set for each node. Nodes security setup

-

10. Statistics

+

10. Area and File managers

+

+This screen sets names and passwords of the uplink managers, also our own +password is set here. +

+ + + + + + + +
Uplink AreaMgr programThe name of the +Areamgr program of this node. This could be AreaFix, AreaMgr etc.
Uplink AreaMgr passowrdThe password for the +Areamgr of this node.
Uplink AreaMgr is BBBSIf the uplink uses BBBS software set this +to Yes.
Uplink FilMgr programThe name of the +Filemgr progrom of this node. This could be FileMgr, Allfix, Raid etc.
Uplink FileMgr passwordThe password of the +Filemgr if this node.
Uplink FileMgr is BBBSIf the plink +uses BBBS set this to Yes.
Our Area/Filemgr passwdOur own +Area/Filemgr password for this node to send to our node.
+

+Nodes managers setup +

+ +

11. Statistics

In this statistics screen you can see the mail and files flow with this node. Values are stored for the current week, the previous week, the @@ -373,7 +394,7 @@ current month and previous month and the overall total since you defined this node. There are actual 12 months of statistics stored in the nodes record, only 2 are visible.

-Nodes statistics +Nodes statistics

BackBack to index  diff --git a/mbsetup/m_node.c b/mbsetup/m_node.c index 48864401..38ae2808 100644 --- a/mbsetup/m_node.c +++ b/mbsetup/m_node.c @@ -405,6 +405,7 @@ void E_UplMgr(void) mvprintw(10, 6, "4. Uplink FileMgr program"); mvprintw(11, 6, "5. Uplink FileMgr password"); mvprintw(12, 6, "6. Uplink FileMgr is BBBS"); + mvprintw(13, 6, "7. Our Area/Filemgr passwd"); for (;;) { set_color(WHITE, BLACK); @@ -414,8 +415,9 @@ void E_UplMgr(void) show_str( 10,35, 8, nodes.UplFmgrPgm); show_str( 11,35,15, (char *)"***************"); show_bool(12,35, nodes.UplFmgrBbbs); + show_str( 13,35,15, (char *)"***************"); - switch(select_menu(6)) { + switch(select_menu(7)) { case 0: return; case 1: E_STR( 7,35, 8, nodes.UplAmgrPgm, "Name of the uplink ^areamanager program^") case 2: E_STR( 8,35,15, nodes.UplAmgrPass, "Uplink ^areamanager password^ for this node") @@ -423,6 +425,7 @@ void E_UplMgr(void) case 4: E_STR( 10,35,8, nodes.UplFmgrPgm, "Name of the uplink ^filemanager^ program") case 5: E_STR( 11,35,15, nodes.UplFmgrPass, "Uplink ^filemanager password^ for this node") case 6: E_BOOL(12,35, nodes.UplFmgrBbbs, "Uplink ^filemanager^ is ^BBBS^ software") + case 7: E_STR( 13,35,15, nodes.Apasswd, "The area and filemanager ^password^ for this node") } } } @@ -471,35 +474,32 @@ void E_Files(void) mvprintw( 5, 6, "7.6 EDIT NODE - FILES PROCESSING"); set_color(CYAN, BLACK); mvprintw( 7, 6, "1. Files password"); - mvprintw( 8, 6, "2. Mgr password"); - mvprintw( 9, 6, "3. Incl. message"); - mvprintw(10, 6, "4. Send TIC file"); - mvprintw(11, 6, "5. Advanced TIC"); - mvprintw(12, 6, "6. Advanced SB"); - mvprintw(13, 6, "7. To line in TIC"); - mvprintw(14, 6, "8. File forward"); + mvprintw( 8, 6, "2. Incl. message"); + mvprintw( 9, 6, "3. Send TIC file"); + mvprintw(10, 6, "4. Advanced TIC"); + mvprintw(11, 6, "5. Advanced SB"); + mvprintw(12, 6, "6. To line in TIC"); + mvprintw(13, 6, "7. File forward"); for (;;) { set_color(WHITE, BLACK); show_str( 7,26,15, (char *)"***************"); - show_str( 8,26,15, (char *)"***************"); - show_bool( 9,26, nodes.Message); - show_bool(10,26, nodes.Tic); - show_bool(11,26, nodes.AdvTic); - show_bool(12,26, nodes.TIC_AdvSB); - show_bool(13,26, nodes.TIC_To); - show_bool(14,26, nodes.FileFwd); + show_bool( 8,26, nodes.Message); + show_bool( 9,26, nodes.Tic); + show_bool(10,26, nodes.AdvTic); + show_bool(11,26, nodes.TIC_AdvSB); + show_bool(12,26, nodes.TIC_To); + show_bool(13,26, nodes.FileFwd); - switch(select_menu(8)) { + switch(select_menu(7)) { case 0: return; case 1: E_STR( 7,26,15,nodes.Fpasswd, "The ^TIC^ files ^password^ for this node") - case 2: E_STR( 8,26,15,nodes.Apasswd, "The filemanager ^password^ for this node") - case 3: E_BOOL( 9,26, nodes.Message, "Send ^messages^ with files send to this node") - case 4: E_BOOL(10,26, nodes.Tic, "Send ^TIC^ files to this node") - case 5: E_BOOL(11,26, nodes.AdvTic, "Send ^advanced^ TIC files to this node") - case 6: E_BOOL(12,26, nodes.TIC_AdvSB, "Send ^advanced Seen-By^ lines in ticfiles to this node") - case 7: E_BOOL(13,26, nodes.TIC_To, "Send ^To^ line in ticfiles to this node") - case 8: E_BOOL(14,26, nodes.FileFwd, "^Forward TIC^ files for this node") + case 2: E_BOOL( 8,26, nodes.Message, "Send ^messages^ with files send to this node") + case 3: E_BOOL( 9,26, nodes.Tic, "Send ^TIC^ files to this node") + case 4: E_BOOL(10,26, nodes.AdvTic, "Send ^advanced^ TIC files to this node") + case 5: E_BOOL(11,26, nodes.TIC_AdvSB, "Send ^advanced Seen-By^ lines in ticfiles to this node") + case 6: E_BOOL(12,26, nodes.TIC_To, "Send ^To^ line in ticfiles to this node") + case 7: E_BOOL(13,26, nodes.FileFwd, "^Forward TIC^ files for this node") } } } @@ -1106,7 +1106,7 @@ int EditNodeRec(int Area) mvprintw(13, 6, "7. Files groups"); mvprintw(14, 6, "8. Directory session"); mvprintw(15, 6, "9. Security flags"); - mvprintw(16, 6, "10. Uplink managers"); + mvprintw(16, 6, "10. Area/File managers"); mvprintw(17, 6, "11. Statistics"); switch(select_menu(11)) {