From: Art Cancro Date: Sun, 2 Dec 2001 23:36:24 +0000 (+0000) Subject: * On a new system, set the default new user level to 4 instead of 1. X-Git-Tag: v7.86~6713 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=175dc0e125c9c7ad7a28b440878b6fcd211b71c6;p=citadel.git * On a new system, set the default new user level to 4 instead of 1. --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index 6ee4db2b3..464d89710 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 580.86 2001/12/02 23:36:24 ajc + * On a new system, set the default new user level to 4 instead of 1. + Revision 580.85 2001/12/02 23:27:01 ajc * Removed references to the old networker from the documentation. Did not write any new documentation, so what's there now is kind of sparse. @@ -2901,3 +2904,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/setup.c b/citadel/setup.c index fb6cb0333..a9811fb78 100644 --- a/citadel/setup.c +++ b/citadel/setup.c @@ -794,8 +794,9 @@ int main(int argc, char *argv[]) strcpy(config.c_humannode, "My System"); if (strlen(config.c_phonenum) == 0) strcpy(config.c_phonenum, "US 800 555 1212"); - if (config.c_initax == 0) - config.c_initax = 1; + if (config.c_initax == 0) { + config.c_initax = 4; + } if (strlen(config.c_moreprompt) == 0) strcpy(config.c_moreprompt, ""); if (strlen(config.c_twitroom) == 0)