Newer
Older
/* FidoNet configuration utility */
/* $Id$ */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
/* Portions written by Allen Christiansen 1994-1996 */
/* XPDEV Headers */
#include "gen_defs.h"
#define __COLORS
#include "ciolib.h"
#include "uifc.h"
#include "sbbs.h"
#include "sbbsecho.h"
char **opt;
uifcapi_t uifc;
if(uifc.bail!=NULL)
uifc.bail();

rswindell
committed
/* These correlate with the LOG_* definitions in syslog.h/gen_defs.h */

rswindell
committed
= {"Emergency", "Alert", "Critical", "Error", "Warning", "Notice", "Informational", "Debugging", NULL};
void global_settings(void)
{
static int global_opt;
while(1) {
int i = 0;
char str[128];
char duration[64];
sprintf(opt[i++], "%-25s %s", "Mailer Type"
,cfg.flo_mailer ? "Binkley/FLO":"ArcMail/Attach");
sprintf(opt[i++], "%-25s %s", "Log Level", logLevelStringList[cfg.log_level]);
sprintf(opt[i++], "%-25s %s", "Log Timestamp Format", cfg.logtime);
sprintf(opt[i++], "%-25s %s", "Strict Packet Passwords", cfg.strict_packet_passwords ? "Enabled" : "Disabled");
sprintf(opt[i++], "%-25s %u", "Config File Backups", cfg.cfgfile_backups);
sprintf(opt[i++], "%-25s %s bytes", "Minimum Free Disk Space"
, byte_count_to_str(cfg.min_free_diskspace, str, sizeof(str)));
snprintf(opt[i++],MAX_OPLN-1,"%-25.25s %-3.3s","Strip Incoming Soft CRs "
,cfg.strip_soft_cr ? "Yes":"No");
snprintf(opt[i++],MAX_OPLN-1,"%-25.25s %-3.3s","Strip Outgoing Line Feeds "
,cfg.strip_lf ? "Yes":"No");
sprintf(opt[i++], "%-25s %s", "BSY Mutex File Timeout", duration_to_vstr(cfg.bsy_timeout, duration, sizeof(duration)));
if(cfg.flo_mailer) {
sprintf(opt[i++], "%-25s %s", "BSO Lock Attempt Delay", duration_to_vstr(cfg.bso_lock_delay, duration, sizeof(duration)));
sprintf(opt[i++], "%-25s %lu", "BSO Lock Attempt Limit", cfg.bso_lock_attempts);
sprintf(opt[i++], "%-25s %s", "BinkP Capabilities", cfg.binkp_caps);
sprintf(opt[i++], "%-25s %s", "BinkP Sysop Name", cfg.binkp_sysop);
sprintf(opt[i++], "%-25s %s", "BinkP Authentication", cfg.binkp_plainAuthOnly ? "Plain Only" : "Plain or CRAM-MD5");
sprintf(opt[i++], "%-25s %s", "BinkP Encryption", !cfg.binkp_plainTextOnly && !cfg.binkp_plainAuthOnly ? "Supported" : "Unsupported");
}
opt[i][0] = 0;
uifc.helpbuf=
"~ Global Settings ~\n"
"\n"
"`Mailer Type` should normally be set to `Binkley/FLO` to enable SBBSecho's\n"
" \"Binkley-Style Outbound\" operating mode (a.k.a. `BSO` or `FLO` mode).\n"
" If you are using an `Attach`, `ArcMail`, or `FrontDoor` style FidoNet\n"
" mailer, then set this setting to `ArcMail/Attach`, but know that most\n"
" modern FidoNet mailers are Binkley-Style and therefore that mode of\n"
" operation in SBBSecho is much more widely tested and supported.\n"
"\n"
"`Log Level` should normally be set to `Informational` but if you're\n"
" experiencing problems with SBBSecho and would like more verbose log\n"
" output, set this to `Debugging`. If you want less verbose logging,\n"
" set to higher-severity levels to reduce the number of log messages.\n"
"\n"
"`Log Timestmap Format` defines the format of the date/time-stamps added\n"
" along with each log message to the log file (e.g. sbbsecho.log).\n"
" The timestamp format is defined using standard C `strftime` notation.\n"
" The default format is: `" DEFAULT_LOG_TIME_FMT "`\n"
" For SBBSecho v2 timestamp format, use `%m/%d/%y %H:%M:%S`\n"
"\n"
"`Strict Packet Passwords`, when enabled, requires that Packet Passwords\n"
" must match the password for the linked-node from which the packet\n"
" was received, even if that linked-node has no password configured.\n"
" If you wish to revert to the SBBSecho v2 behavior with less strict\n"
" enforcement of matching packet passwords, disable this option.\n"
" Default: Enabled\n"
"\n"
"`Config File Backups` determines the number of automatic backups of your\n"
" SBBSecho configuration file (e.g. `sbbsecho.ini`) that will be\n"
" maintained by FidoNet Config (`echocfg`) and SBBSecho AreaFix.\n"
"\n"
"`Minimum Free Disk Space` determines the minimum amount of free disk\n"
" space for SBBSecho to run. SBBSecho will just exit with an error\n"
" message (and an error level of 1) if the minimum amount of free\n"
" space is not found in directories into which SBBSecho may write.\n"
"\n"
"`Strip Incoming Soft CRs` instructs SBBSecho to remove any \"Soft\"\n"
" Carriage Return (ASCII 141) characters from the text of `imported`\n"
" EchoMail and NetMail messages.\n"
"\n"
"`Strip Outgoing Line Feeds` instructs SBBSecho to remove any Line Feed\n"
" (ASCII 10) characters from the body text of `exported` EchoMail and\n"
" NetMail messages.\n"
"\n"
"`BSY Mutex File Timeout` determines the maximum age of an existing\n"
" mutex file (`*.bsy`) before SBBSecho will act as though the mutex\n"
" file was not present. This setting applies to the global\n"
" `sbbsecho.bsy` file as well as the BSO lock (`*.bsy`) files for\n"
" individual nodes.\n"
" Default: 12 hours\n"
"\n"
"`BSO Lock Attempt Delay` determines the amount of time between BSO\n"
" node lock attempts (via `*.bsy` files in the relevant outbound\n"
" directory).\n"
" Default: 10 seconds\n"
"\n"
"`BSO Lock Attempt Limit` determines the maximum number of BSO node lock\n"
" attempts before SBBSecho will give-up and move on to another node\n"
" to process mail. This value multiplied by the `BSO Lock Attempt\n"
" Delay` should be much less than the `BSY Mutex File Timeout` value.\n"
" Default: 60 attempts\n"
"\n"
"`BinkP Capabilities` may be used to over-ride the default BinkP node\n"
" capabilities sent during a `BinkIT` mailer session (via the NDL\n"
" command). Default capabilities value is '115200,TCP,BINKP'\n"
"\n"
"`BinkP Sysop` may be used to over-ride the default BinkP sysop name\n"
" sent during a `BinkIT` mailer session (via the ZYZ command).\n"
" Default sysop name is that set in `SCFG->System->Operator`\n"
"\n"
"`BinkP Authentication` may be set to `Plain Only` if you wish to disable\n"
" CRAM-MD5 authentication for both inbound and outbound sessions.\n"
" Note: CRAM-MD5 authentication is required for encrypted sessions.\n"
" Default: Plain or CRAM-MD5\n"
"\n"
"`BinkP Encryption` may be set to `Supported` (the default) only when\n"
" BinkP Authentication is set to Plain or CRAM-MD5.\n"
" Default: Supported\n"
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
;
int key = uifc.list(WIN_BOT|WIN_L2R|WIN_ACT|WIN_SAV, 0, 0, 0, &global_opt,0, "Global Settings", opt);
switch(key) {
case -1:
return;
case 0:
cfg.flo_mailer = !cfg.flo_mailer;
break;
case 1:
uifc.helpbuf=
"~ Log Level ~\n"
"\n"
"Select the minimum severity of log entries to be logged to the log file.\n"
"The default/normal setting is `Informational`.";
int i = cfg.log_level;
i = uifc.list(WIN_MID|WIN_SAV,0,0,0,&i,0,"Log Level",logLevelStringList);
if(i>=0 && i<=LOG_DEBUG)
cfg.log_level=i;
break;
case 2:
uifc.input(WIN_MID|WIN_SAV,0,0
,"Log Timestamp Format", cfg.logtime, sizeof(cfg.logtime)-1, K_EDIT);
break;
case 3:
cfg.strict_packet_passwords = !cfg.strict_packet_passwords;
break;
case 4:
sprintf(str, "%u", cfg.cfgfile_backups);
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Configuration File Backups", str, 5, K_EDIT|K_NUMBER) > 0)
cfg.cfgfile_backups = atoi(str);
break;
case 5:
byte_count_to_str(cfg.min_free_diskspace, str, sizeof(str));
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Minimum Free Disk Space (in bytes)", str, 10, K_EDIT) > 0)
cfg.min_free_diskspace = parse_byte_count(str, 1);
break;
case 6:
{
int k = !cfg.strip_soft_cr;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"Strip Soft Carriage Returns from Incoming Messages",uifcYesNoOpts)) {
case 0: cfg.strip_soft_cr = true; break;
case 1: cfg.strip_soft_cr = false; break;
}
break;
}
case 7:
{
int k = !cfg.strip_lf;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"Strip Line Feeds from Outgoing Messages",uifcYesNoOpts)) {
case 0: cfg.strip_lf = true; break;
case 1: cfg.strip_lf = false; break;
}
break;
}
case 8:
duration_to_vstr(cfg.bsy_timeout, duration, sizeof(duration));
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "BSY Mutex File Timeout", duration, 10, K_EDIT) > 0)
cfg.bsy_timeout = (ulong)parse_duration(duration);
break;
case 9:
duration_to_vstr(cfg.bso_lock_delay, duration, sizeof(duration));
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Delay Between BSO Lock Attempts", duration, 10, K_EDIT) > 0)
cfg.bso_lock_delay = (ulong)parse_duration(duration);
break;
case 10:
sprintf(str, "%lu", cfg.bso_lock_attempts);
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Maximum BSO Lock Attempts", str, 5, K_EDIT|K_NUMBER) > 0)
cfg.bso_lock_attempts = atoi(str);
break;
case 11:
uifc.input(WIN_MID|WIN_SAV,0,0
,"BinkP Capabilities (BinkIT)", cfg.binkp_caps, sizeof(cfg.binkp_caps)-1, K_EDIT);
break;
case 12:
uifc.input(WIN_MID|WIN_SAV,0,0
,"BinkP Sysop Name (BinkIT)", cfg.binkp_sysop, sizeof(cfg.binkp_sysop)-1, K_EDIT);
break;
case 13:
{
int k = !cfg.binkp_plainAuthOnly;
strcpy(opt[0], "Plain-Password Only");
strcpy(opt[1], "Plain-Password or CRAM-MD5");
opt[2][0] = 0;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"BinkP Authentication",opt)) {
case 0:
cfg.binkp_plainAuthOnly = true;
break;
case 1:
cfg.binkp_plainAuthOnly = false;
break;
}
break;
}
case 14:
{
if(cfg.binkp_plainAuthOnly) {
uifc.msg("CRAM-MD5 authentication/encryption has been disabled globally");
break;
}
int k = cfg.binkp_plainTextOnly;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"BinkP Encryption Supported",uifcYesNoOpts)) {
case 0:
cfg.binkp_plainTextOnly = false;
break;
case 1:
cfg.binkp_plainTextOnly = true;
break;
}
break;
}
static bool new_node(unsigned new_nodenum)
{
nodecfg_t* nodecfg = realloc(cfg.nodecfg, sizeof(nodecfg_t)*(cfg.nodecfgs+1));
if(nodecfg == NULL)
return false;
cfg.nodecfg = nodecfg;
for(unsigned int i=cfg.nodecfgs; i > new_nodenum; i--)
memcpy(&cfg.nodecfg[i], &cfg.nodecfg[i-1], sizeof(nodecfg_t));
cfg.nodecfgs++;
memset(&cfg.nodecfg[new_nodenum], 0, sizeof(nodecfg_t));
cfg.nodecfg[new_nodenum].binkp_allowPlainText = true;
cfg.nodecfg[new_nodenum].binkp_port = IPPORT_BINKP;
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
return true;
}
static bool new_arcdef(unsigned new_arcnum)
{
arcdef_t * arcdef = realloc(cfg.arcdef, sizeof(arcdef_t)*(cfg.arcdefs+1));
if(arcdef == NULL)
return false;
cfg.arcdef = arcdef;
for(unsigned j=cfg.arcdefs;j>new_arcnum;j--)
memcpy(&cfg.arcdef[j],&cfg.arcdef[j-1], sizeof(arcdef_t));
cfg.arcdefs++;
memset(&cfg.arcdef[new_arcnum], 0, sizeof(arcdef_t));
return true;
}
static bool new_list(unsigned new_listnum)
{
echolist_t *listcfg = realloc(cfg.listcfg, sizeof(echolist_t)*(cfg.listcfgs+1));
if(listcfg == NULL)
return false;
cfg.listcfg = listcfg;
for(unsigned j=cfg.listcfgs;j>new_listnum;j--)
memcpy(&cfg.listcfg[j],&cfg.listcfg[j-1], sizeof(echolist_t));
cfg.listcfgs++;
memset(&cfg.listcfg[new_listnum],0,sizeof(echolist_t));
return true;
}
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
static bool new_domain(unsigned new_domnum)
{
struct fido_domain* new_list = realloc(cfg.domain_list, sizeof(struct fido_domain) * (cfg.domain_count + 1));
if(new_list == NULL)
return false;
cfg.domain_list = new_list;
for(unsigned i = cfg.domain_count; i > new_domnum; i--)
memcpy(&cfg.domain_list[i], &cfg.domain_list[i-1], sizeof(struct fido_domain));
cfg.domain_count++;
memset(&cfg.domain_list[new_domnum], 0, sizeof(struct fido_domain));
return true;
}
static char* int_list(int* list, unsigned count)
{
static char str[128];
str[0]=0;
for(unsigned i = 0; i < count; i++) {
if(i)
sprintf(str + strlen(str), ",%d", *(list + i));
else
sprintf(str, "%d", *list);
}
return str;
}
void binkp_settings(nodecfg_t* node)
{
while(1) {
char str[128];
int i = 0;
sprintf(opt[i++], "%-20s %s", "Host", node->binkp_host);
sprintf(opt[i++], "%-20s %u", "Port", node->binkp_port);
sprintf(opt[i++], "%-20s %s", "Poll", node->binkp_poll ? "Yes" : "No");
char* auth = "Plain Only";
char* crypt = "Unsupported";
if(!cfg.binkp_plainAuthOnly && !node->binkp_plainAuthOnly) {
if(!cfg.binkp_plainTextOnly)
crypt = node->binkp_allowPlainText ? "Supported" : "Required";
if(node->binkp_allowPlainAuth)
auth = "Plain or CRAM-MD5";
else
auth = "CRAM-MD5 Only";
}
sprintf(opt[i++], "%-20s %s", "Authentication", auth);
sprintf(opt[i++], "%-20s %s", "Encryption", crypt);
sprintf(opt[i++], "%-20s %s", "Source Address", node->binkp_src);
opt[i][0]=0;
char title[128];
SAFEPRINTF(title, "%s BinkP Settings", faddrtoa(&node->addr));
uifc.helpbuf=
"~ BinkP Settings ~\n"
"\nThese settings are used by the Synchronet `BinkIT` BinkP/BSO mailer.\n"
"\n"
"`Host` defines the TCP/IP address or host name with which to connect for\n"
" sessions with this linked node. If the host is not set, then a\n"
" DNS-based look-up will be attempted (e.g. the IP address for\n"
" `1:103/705` would be looked-up via host name `f705.n103.z1.binkp.net`).\n"
" Nodelist-based look-ups are also supported.\n"
"\n"
"`Port` defines the TCP port used by this linked node for BinkP sessions.\n"
" The default BinkP TCP port is `24554`.\n"
"\n"
"`Poll` defines whether or not to periodically poll this linked node.\n"
"\n"
"`Authentication` determines what types of authentication will be supported\n"
" during both inbound and outbound sessions with this linked node.\n"
" The supported BinkP-auth methods are `Plain-Password` and `CRAM-MD5`.\n"
" Note: For `incoming` connections, CRAM-MD5 will be supported unless\n"
" CRAM-MD5 authentication has been `globally` disabled.\n"
"\n"
"`Encryption` determines whether unencrypted data transfers will be\n"
" supported or required when communicating with this linked node.\n"
" With this setting set to `Required`, ~only~ BinkD-style-encrypted BinkP\n"
" sessions will be supported.\n"
" CRAM-MD5 authentication `must` be used when encrypting BinkP sessions.\n"
"\n"
"`Source Address` allows you to override the source FTN address used\n"
" with outgoing BinkP mailer sessions with this linked node.\n"
" Normally, this setting is left blank (not set).\n"
;
int k = uifc.list(WIN_RHT|WIN_BOT|WIN_SAV|WIN_ACT,0,0,0,&cur,0, title, opt);
if(k < 0)
break;
switch(k) {
case 0:
uifc.input(WIN_MID|WIN_SAV,0,0
,"Host name or IP address", node->binkp_host, sizeof(node->binkp_host)-1, K_EDIT);
break;
case 1:
sprintf(str, "%u", node->binkp_port);
if(uifc.input(WIN_MID|WIN_SAV,0,0
,"TCP Port Number (e.g. 24554)", str, 5, K_EDIT|K_NUMBER) > 0) {
node->binkp_port = atoi(str);
uifc.changes = TRUE;
}
break;
case 2:
k = !node->binkp_poll;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"Poll This Node Periodically for Inbound Files/Mail",uifcYesNoOpts)) {
case 0: node->binkp_poll = true; uifc.changes=TRUE; break;
case 1: node->binkp_poll = false; uifc.changes=TRUE; break;
}
break;
case 3:
if(cfg.binkp_plainAuthOnly) {
uifc.msg("CRAM-MD5 authentication/ has been disabled globally");
break;
}
k = node->binkp_plainAuthOnly ? 0 : (1 + !node->binkp_allowPlainAuth);
strcpy(opt[0], "Plain-Password Only");
strcpy(opt[1], "Plain-Password or CRAM-MD5");
strcpy(opt[2], "CRAM-MD5 Only");
opt[3][0] = 0;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"Authentication",opt)) {
case 0:
node->binkp_plainAuthOnly = true;
node->binkp_allowPlainAuth = true;
node->binkp_allowPlainText = true;
uifc.changes=TRUE;
break;
case 1:
node->binkp_allowPlainAuth = true;
node->binkp_plainAuthOnly = false;
node->binkp_allowPlainText = true;
uifc.changes=TRUE;
break;
case 2:
node->binkp_allowPlainAuth = false;
node->binkp_plainAuthOnly = false;
uifc.changes=TRUE;
break;
}
break;
case 4:
if(cfg.binkp_plainTextOnly) {
uifc.msg("BinkP encryption has been disabled globally");
break;
}
if(cfg.binkp_plainAuthOnly) {
uifc.msg("CRAM-MD5 authentication/encryption has been disabled globally");
break;
}
k = !node->binkp_allowPlainText;
switch(uifc.list(WIN_MID|WIN_SAV,0,0,0,&k,0
,"Allow Plain-Text (Unencrypted) Sessions",uifcYesNoOpts)) {
case 0:
node->binkp_allowPlainText = true;
node->binkp_allowPlainAuth = true;
uifc.changes=TRUE;
break;
case 1:
node->binkp_allowPlainText = false;
node->binkp_allowPlainAuth = false;
node->binkp_plainAuthOnly = false;
uifc.changes=TRUE;
break;
}
break;
case 5:
uifc.helpbuf=
"~ Source Address ~\n\n"
"This is the FidoNet style address to use as the source address when\n"
"conducting BinkP sessions with this linked node.";
uifc.input(WIN_MID|WIN_SAV,0,0
,"Source Node Address (optional)"
,node->binkp_src
,sizeof(node->binkp_src)-1, K_EDIT);
break;
}
}
}
int main(int argc, char **argv)
{
char str[256],*p;
echolist_t savlistcfg;
nodecfg_t savnodecfg;
arcdef_t savarcdef;
struct fido_domain savedomain;
BOOL door_mode=FALSE;
unsigned int u;
char sysop_aliases[256];
sbbsecho_cfg_t orig_cfg;
ZERO_VAR(savlistcfg);
ZERO_VAR(savnodecfg);
ZERO_VAR(savarcdef);
ZERO_VAR(savedomain);
fprintf(stderr,"\nSynchronet FidoNet Configuration Version %u.%02u Copyright %s "
"Rob Swindell\n\n",SBBSECHO_VERSION_MAJOR, SBBSECHO_VERSION_MINOR, __DATE__+7);
str[0]=0;
for(i=1;i<argc;i++) {
if(argv[i][0]=='-')
switch(toupper(argv[i][1])) {
printf("NOTICE: The -d option is deprecated, use -id instead\n");
SLEEP(2000);
door_mode=TRUE;
break;
case 'L':
uifc.scrn_len=atoi(argv[i]+2);
break;
case 'E':
uifc.esc_delay=atoi(argv[i]+2);
break;
case 'I':
switch(toupper(argv[i][2])) {
case 'A':
ciolib_mode=CIOLIB_MODE_ANSI;
break;
case 'C':
ciolib_mode=CIOLIB_MODE_CURSES;
break;
case 0:
printf("NOTICE: The -i option is deprecated, use -if instead\n");
SLEEP(2000);
case 'F':
ciolib_mode=CIOLIB_MODE_CURSES_IBM;
break;
case 'X':
ciolib_mode=CIOLIB_MODE_X;
break;
case 'W':
ciolib_mode=CIOLIB_MODE_CONIO;
break;
case 'D':
door_mode=TRUE;
break;
default:
goto USAGE;
}
case 'K': /* Keyboard-only mode (no mouse support) */
uifc.mode |= UIFC_NOMOUSE;
break;
case 'M': /* Monochrome mode */
uifc.mode|=UIFC_MONO;
break;
case 'C':
uifc.mode|=UIFC_COLOR;
break;
case 'V':
textmode(atoi(argv[i]+2));
"-k = keyboard mode only (no mouse support)\n"
"-c = force color mode\n"
"-m = force monochrome mode\n"
"-e# = set escape delay to #msec\n"
"-iX = set interface mode to X (default=auto) where X is one of:\n"
" X = X11 mode\n"
" C = Curses mode\n"
" F = Curses mode with forced IBM charset\n"
" A = ANSI mode\n"
" D = standard input/output/door mode\n"
"-v# = set video mode to # (default=auto)\n"
"-l# = set screen lines to # (default=auto-detect)\n"
}
else
}
if(str[0]==0) {
p=getenv("SBBSCTRL");
if(!p) {
p=getenv("SBBSNODE");
if(!p) {
}
}
if(!sbbsecho_read_ini(&cfg)) {
fprintf(stderr, "ERROR %d (%s) reading %s\n", errno, strerror(errno), cfg.cfgfile);
exit(1);
}
orig_cfg = cfg;
puts("memory allocation error\n");
for(i=0;i<1000;i++)
if((opt[i]=(char *)malloc(MAX_OPLN+1))==NULL) {
puts("memory allocation error\n");
if(!door_mode) {
i=initciolib(ciolib_mode);
if(i!=0) {
printf("ciolib library init returned error %d\n",i);
exit(1);
}
i=uifcini32(&uifc); /* curses/conio/X/ANSI */
}
if(i!=0) {
printf("uifc library init returned error %d\n",i);
exit(1);
}
sprintf(str,"Synchronet FidoNet Config v%u.%02u",SBBSECHO_VERSION_MAJOR, SBBSECHO_VERSION_MINOR);
p=cfg.cfgfile;
if(strlen(p) + strlen(str) + 4 > uifc.scrn_width)
p=getfname(cfg.cfgfile);
uifc.printf(uifc.scrn_width-(strlen(p)+1),1,uifc.bclr|(uifc.cclr<<4),p);
/* Remember current menu item selections using these vars: */
int netmail_opt = 0;
int echomail_opt = 0;
int path_opt = 0;
int node_opt = 0;
int node_bar = 0;
int domain_opt = 0;
if(memcmp(&cfg, &orig_cfg, sizeof(cfg)) != 0)
uifc.changes = TRUE;
"~ FidoNet Configuration ~\n\n"
"This program allows you to easily configure the Synchronet BBS\n"
"FidoNet-style EchoMail program known as `SBBSecho` and the FidoNet/BinkP\n"
"mailer known as `BinkIT`. Alternatively, you may edit the configuration\n"
"file (e.g. `ctrl/sbbsecho.ini`) using an ASCII/plain-text editor.\n"
"\n"
"For detailed documentation, see `http://wiki.synchro.net/util:sbbsecho`\n"
" and `http://wiki.synchro.net/module:binkit`\n"
"The `Global Settings` sub-menu is where FidoNet configuration settings\n"
"are located which are neither NetMail nor EchoMail specific, but more\n"
"general to the operation of the tosser (SBBSecho) and mailer (BinkIT).\n"
"\n"
"The `Linked Nodes` sub-menu is where you configure your FidoNet-style\n"
"links: other FidoNet-style nodes/systems you regularly connect with\n"
"to exchange mail/files.\n"
"\n"
"The `Archive Types` sub-menu is where you configure your archive\n"
"programs (a.k.a. \"packers\") used for the packing and unpacking of\n"
"EchoMail bundle files (usually in 'PKZIP' format).\n"
"\n"
"The `NetMail Settings` sub-menu is where you configure settings specific\n"
"to NetMail (private one-on-one networked mail).\n"
"\n"
"The `EchoMail Settings` sub-menu is where you configure settings specific\n"
"to EchoMail (public group discussions in topical message areas, echoes).\n"
"\n"
"The `Paths and Filenames` sub-menu is where you configure your system's\n"
"directory and file paths used by SBBSecho.\n"
"\n"
"The `Domains` sub-menu is where FidoNet-style domains (the '@domain'\n"
"of 5D FTN address) are mapped to zone numbers, DNS suffixes, NodeLists\n"
"and BSO root directories for use by the BinkIT mailer.\n"
"\n"
"The `EchoLists` sub-menu is for configuring additional (optional)\n"
"lists of FidoNet-style message areas (echoes) in `BACKBONE.NA` file\n"
"format. These lists, if configured, are used in addition to your main\n"
"`Area File` (e.g. areas.bbs) for advanced AreaFix/AreaMgr operations."
sprintf(opt[i++],"Linked Nodes...");
sprintf(opt[i++],"Archive Types...");
sprintf(opt[i++],"NetMail Settings...");
sprintf(opt[i++],"EchoMail Settings...");
sprintf(opt[i++],"Domains...");
if(uifc.changes)
snprintf(opt[i++],MAX_OPLN-1,"Save Changes to %s", getfname(cfg.cfgfile));
switch(uifc.list(WIN_ORG|WIN_MID|WIN_ACT|WIN_ESC,0,0,0,&dflt,0
,"Configure FidoNet",opt)) {
case 1:
i=0;
while(1) {
"~ Linked Nodes ~\n\n"
"From this menu you can configure the settings for your linked\n"
"FidoNet-style nodes (uplinks and downlinks).\n"
"\n"
"A single node configuration can represent one node or a collection\n"
"of nodes, by using the `ALL` wildcard word.\n"
"\n"
"The hexadecimal numbers in parentheses are provided as an aide when\n"
"correlating FidoNet files and BSO directories with node numbers."
for(u=0;u<cfg.nodecfgs;u++) {
char hexaddr[16] = "";
if(cfg.nodecfg[u].addr.zone != 0xffff) {
if(!faddr_contains_wildcard(&cfg.nodecfg[u].addr))
sprintf(hexaddr, "(%04hx%04hx)", cfg.nodecfg[u].addr.net,cfg.nodecfg[u].addr.node);
else
sprintf(hexaddr, "(.%03X)", cfg.nodecfg[u].addr.zone);
}
snprintf(opt[u], MAX_OPLN-1, "%-16s %-10s %s"
,faddrtoa(&cfg.nodecfg[u].addr), hexaddr
,cfg.nodecfg[u].name[0] ? cfg.nodecfg[u].name : cfg.nodecfg[u].comment);
}
int mode = WIN_SAV | WIN_INS | WIN_DEL | WIN_ACT
| WIN_INSACT | WIN_DELACT | WIN_XTR;
if(cfg.nodecfgs)
mode |= WIN_COPY | WIN_CUT;
if (savnodecfg.addr.zone)
mode |= WIN_PASTE | WIN_PASTEXTR;
i=uifc.list(mode,0,0,0,&node_opt,NULL,"Linked Nodes",opt);
int msk = i&MSK_ON;
i &= MSK_OFF;
if (msk == MSK_INS) {
"~ Address ~\n\n"
"This is the FidoNet style address of the node you wish to add (3D or 4D).\n"
"The `ALL` wildcard may be usd for portions of the address.\n"
;
,"Node Address (ALL wildcard allowed)",str
,25,K_EDIT)<1)
continue;
if(!new_node(i)) {
printf("\nMemory Allocation Error\n");
}
}
if (msk == MSK_DEL || msk == MSK_CUT) {
if(msk == MSK_CUT)
memcpy(&savnodecfg, &cfg.nodecfg[i], sizeof(nodecfg_t));
cfg.nodecfgs--;
if(cfg.nodecfgs<=0) {
cfg.nodecfgs=0;
}
for(u=i;u<cfg.nodecfgs;u++)
memcpy(&cfg.nodecfg[u],&cfg.nodecfg[u+1]
}
if (msk == MSK_COPY) {
memcpy(&savnodecfg,&cfg.nodecfg[i],sizeof(nodecfg_t));
}
if (msk == MSK_PASTE) {
if(!new_node(i))
continue;
memcpy(&cfg.nodecfg[i],&savnodecfg,sizeof(nodecfg_t));
}
while(1) {
uifc.helpbuf=
"~ Linked Node Settings ~\n"
"\n"
"`Address` is the FidoNet-style address in the Zone:Net/Node (3D) or\n"
" Zone:Net/Node.Point (4D) format. The wildcard word '`ALL`' may be used\n"
" in place of one of the fields to create a node configuration which\n"
" will apply to *all* nodes matching that address pattern.\n"
" e.g. '`1:ALL`' matches all nodes within FidoNet Zone 1.\n"
"\n"
"`Name` is name of the system operator of the configured node. This is used\n"
" as the destination name for AreaFix Notification NetMail messages.\n"
"\n"
"`Comment` is a note to yourself about this node. Setting this to the\n"
" BBS name or official FidoNet title corresponding with the configured\n"
" node can be a helpful reminder to yourself later.\n"
"\n"
"`Archive Type` is the name of an archive type corresponding with one of\n"
" your configured archive types or '`None`'. This archive type will\n"
" be used when creating EchoMail bundles or if `None`, raw/uncompressed\n"
" EchoMail packets will be sent to this node.\n"
" This setting may be managed by the node using AreaFix requests.\n"
"\n"
"`Packet Type` is the type of outbound packet generated for this node.\n"
" Incoming packet types are automatically detected from among the list\n"
" of supported packet types (`2`, `2.2`, `2e`, and `2+`).\n"
" The default outbound packet type is `2+`.\n"
"\n"
"`Packet Password` is an optional password that may be added to outbound\n"
" packets for this node. Incoming packet passwords are compared with\n"
" this password value. If this password is blank/empty and `Strict\n"
" Packet Passwords` are enabled, then incoming packets from this node\n"
" must also have no password. Packet passwords are case insensitive.\n"
" This setting may be managed by the node using AreaFix requests.\n"
"\n"
"`Session Password` is the password that will be used for authenticated\n"
" BinkP sessions with this node. Session passwords are case sensitive.\n"
" This password is only used by BinkIT (if you choose to use it).\n"
"\n"
"`TIC File Password` is an optional password that may be configured here\n"
" (and in your `sbbsecho.ini` file) for use by `tickit.js` when creating\n"
" or authenticating `.TIC` files.\n"
" This setting may be managed by the node using AreaFix requests.\n"
"\n"
"`AreaFix Support` is a toggle that determines whether or not this node\n"
" may send AreaFix NetMail requests to your system to perform remote\n"
" area and account management.\n"
"\n"
"`AreaFix Password` is an optional password used to authenticate inbound\n"
" AreaFix NetMail requests (Remote Area Management) from this node.\n"
" AreaFix Passwords are case insensitive.\n"
" This setting may be managed by the node using AreaFix requests.\n"
"\n"
"`EchoList Keys` is a list of keys which enable AreaFix access to one or\n"
" more additional EchoLists.\n"
"\n"
"`Status` is the default mode for sending mail to this node: `Normal`, `Hold`\n"
" (wait for pickup) or `Crash` (immediate).\n"
"\n"
"`Direct` determines whether to connect to this node directly (whenever\n"
" possible) when sending mail to this node.\n"
"\n"
"`Passive` is used to temporarily disable (pause) the packing and sending\n"
" of EchoMail for this node. The opposite of Passive is `Active`.\n"
" This setting may be managed by the node using AreaFix requests.\n"
"\n"
"`Send Notify List` is used to flag nodes that you want notified via\n"
" NetMail of their current AreaFix settings whenever SBBSecho is run\n"
" with the '`G`' option.\n"
"\n"
"`Uplink for Message Groups` is an optional list of Message Groups (short\n"
" names) for which this node is a hub/uplink for your system. This\n"
" setting is used in combination with the `Auto Add Sub-boards` feature\n"
" to auto-link hubs with the newly added areas in your Area File.\n"
"\n"
"`Local Address` is an optional local system address (AKA) to use when\n"
" sending packets to this node. When a Local Address is not specified\n"
" SBBSecho will automatically choose the local address that matches\n"
" the destination address (zone and net number) the closest\n"
" (Best Match).\n"
"\n"
"`Route To` is only used in Binkley-Style Outbound (BSO/FLO) operating\n"
" mode and is used to set the FTN address to route mail for this node.\n"
"\n"
"`Inbox Directory` is only used in BSO operating mode and is an optional\n"
" alternate directory to search for incoming files from this node\n"
" (e.g. used in combination with BinkD's ibox setting).\n"
"\n"
"`Outbox Directory` is only used in BSO operating mode and is an optional\n"
" alternate directory to place outbound files for this node (e.g. used\n"
" in combination with BinkD's obox setting).\n"
"\n"
"`BinkP Settings` are settings specific to BinkP/BinkIT mailer operation.\n"
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Address"
,faddrtoa(&cfg.nodecfg[i].addr));
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Domain"
,cfg.nodecfg[i].domain);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Name"
,cfg.nodecfg[i].name);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Comment"
,cfg.nodecfg[i].comment);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Archive Type"
,cfg.nodecfg[i].archive == SBBSECHO_ARCHIVE_NONE ?
"None":cfg.nodecfg[i].archive->name);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Packet Type"
,pktTypeStringList[cfg.nodecfg[i].pkt_type]);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Packet Password"
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Session Password"
,cfg.nodecfg[i].sesspwd);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","TIC File Password"
,cfg.nodecfg[i].ticpwd);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","AreaFix Support"
,cfg.nodecfg[i].areafix ? "Yes" : "No");
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","AreaFix Password"
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","EchoList Keys"
,strListCombine(cfg.nodecfg[i].keys,str,sizeof(str),","));
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Status"
,mailStatusStringList[cfg.nodecfg[i].status]);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Direct"
,cfg.nodecfg[i].direct ? "Yes":"No");
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Passive"
,cfg.nodecfg[i].passive ? "Yes":"No");
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Send Notify List"
,cfg.nodecfg[i].send_notify ? "Yes" : "No");
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Uplink for Message Groups"
,strListCombine(cfg.nodecfg[i].grphub,str,sizeof(str),","));
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Local Address (AKA)"
,cfg.nodecfg[i].local_addr.zone
? faddrtoa(&cfg.nodecfg[i].local_addr) : "Best Match");
if(cfg.flo_mailer) {
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s","Route To"
if(!faddr_contains_wildcard(&cfg.nodecfg[i].addr)) {
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s", "Inbox Directory", cfg.nodecfg[i].inbox);
snprintf(opt[j++],MAX_OPLN-1,"%-30.30s %s", "Outbox Directory", cfg.nodecfg[i].outbox);
strcpy(opt[j++], "BinkP Settings...");