*/ /** * Redirect to login page if in Squirrelmail; redirect to main page if in * standalone mode. */ include_once ('config.php'); if($ldq_standalone) { header("Location:frameset.php\n\n"); exit(); } else { header("Location:../../src/login.php\n\n"); exit(); } ?>