Added newuser questions for screenlen, newmail check and newfiles check
This commit is contained in:
parent
7bb76255eb
commit
2414046439
@ -20,6 +20,14 @@ v0.61.3 25-Jul-2004
|
||||
mbfile:
|
||||
Fixed a bug where "mbfile k p i" didn't give the help screen.
|
||||
|
||||
mbnewuser:
|
||||
Made questions for screenlen, newmail check and newfiles check
|
||||
dependant of settings in the setup.
|
||||
|
||||
mbtask:
|
||||
Added defaults for questions for screenlen, newmail chack and
|
||||
newfiles check.
|
||||
|
||||
examples:
|
||||
Fixed 2 spelling errors in the dutch macro templates.
|
||||
|
||||
|
@ -474,8 +474,8 @@ int newuser()
|
||||
sprintf(usrconfig.sProtocol, "%s", (char *) Language(65));
|
||||
usrconfig.DoNotDisturb = FALSE;
|
||||
|
||||
switch (CFG.Newmail) {
|
||||
case NO: usrconfig.Mailscan = FALSE;
|
||||
switch (CFG.AskNewmail) {
|
||||
case NO: usrconfig.MailScan = FALSE;
|
||||
break;
|
||||
case YES: usrconfig.MailScan = TRUE;
|
||||
break;
|
||||
@ -501,7 +501,7 @@ int newuser()
|
||||
break;
|
||||
}
|
||||
|
||||
switch (CFG.Newfiles) {
|
||||
switch (CFG.AskNewfiles) {
|
||||
case NO: usrconfig.ieFILE = FALSE;
|
||||
break;
|
||||
case YES: usrconfig.ieFILE = TRUE;
|
||||
|
@ -70,7 +70,7 @@ int edit_linetype(int, int, int);
|
||||
char *getmagictype(int);
|
||||
void show_magictype(int, int, int);
|
||||
int edit_magictype(int, int, int);
|
||||
char *get_asktype(int, int, int);
|
||||
char *get_asktype(int);
|
||||
void show_asktype(int, int, int);
|
||||
int edit_asktype(int, int, int);
|
||||
char *get_sessiontype(int);
|
||||
|
Reference in New Issue
Block a user