Skip to content
Snippets Groups Projects
Commit 46e910aa authored by rswindell's avatar rswindell
Browse files

If you're using emailval.js, you no longer need to modify your copy of logon.js

to do so. Just set email_validation = true in the [logon] section of your
ctrl/modopts.ini file instead.
parent f1ed1c6b
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,12 @@ if(user.settings & USER_ICE_COLOR) {
cterm.bright_background(true);
}
if(options.email_validation == true) {
load({}, "emailval.js");
if(!online)
exit();
}
// Check if we're being asked to auto-run an external (web interface external programs section uses this)
if ((options.rlogin_auto_xtrn) && (bbs.sys_status & SS_RLOGIN) && (console.terminal.indexOf("xtrn=") === 0)) {
var external_code = console.terminal.substring(5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment