Need answer for this also. Started to code that myself but have to say that those login code is little messy to find right arguments to move to homepage to get status on logging.
Managed to get my homepage inform is forums are open or closed so not to have to go to forums for that.. really simply code:
require "bboard/cgi-bin/vars_config.cgi";
require "$vars_config{VariablesPath}/vars_misc.cgi";
if ($vars_misc{BBStatus} ne 'ON') {
$ubb_check = "Forums are closed";
} else {
$ubb_check = "Forums are open";
}
And then just output print to somewhere where you want to see that inform. But really like to get inform about logging inform and also feature that I could log in at main pages. Going to try to code that myself already so if I managed to figure out how to do that I'll paste that code.