Added newuser questions for screenlen, newmail check and newfiles check

This commit is contained in:
Michiel Broek 2004-08-07 13:12:03 +00:00
parent 7bb76255eb
commit 2414046439
3 changed files with 12 additions and 4 deletions

View File

@ -20,6 +20,14 @@ v0.61.3 25-Jul-2004
mbfile: mbfile:
Fixed a bug where "mbfile k p i" didn't give the help screen. 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: examples:
Fixed 2 spelling errors in the dutch macro templates. Fixed 2 spelling errors in the dutch macro templates.

View File

@ -474,8 +474,8 @@ int newuser()
sprintf(usrconfig.sProtocol, "%s", (char *) Language(65)); sprintf(usrconfig.sProtocol, "%s", (char *) Language(65));
usrconfig.DoNotDisturb = FALSE; usrconfig.DoNotDisturb = FALSE;
switch (CFG.Newmail) { switch (CFG.AskNewmail) {
case NO: usrconfig.Mailscan = FALSE; case NO: usrconfig.MailScan = FALSE;
break; break;
case YES: usrconfig.MailScan = TRUE; case YES: usrconfig.MailScan = TRUE;
break; break;
@ -501,7 +501,7 @@ int newuser()
break; break;
} }
switch (CFG.Newfiles) { switch (CFG.AskNewfiles) {
case NO: usrconfig.ieFILE = FALSE; case NO: usrconfig.ieFILE = FALSE;
break; break;
case YES: usrconfig.ieFILE = TRUE; case YES: usrconfig.ieFILE = TRUE;

View File

@ -70,7 +70,7 @@ int edit_linetype(int, int, int);
char *getmagictype(int); char *getmagictype(int);
void show_magictype(int, int, int); void show_magictype(int, int, int);
int edit_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); void show_asktype(int, int, int);
int edit_asktype(int, int, int); int edit_asktype(int, int, int);
char *get_sessiontype(int); char *get_sessiontype(int);