. */ session_start(); $config = parse_ini_file('../private/config.ini'); if (!isset($_SESSION['log']) OR $_SESSION['log'] != 1) { echo ' '; if (isset($_GET['badlogin'])) { echo '

falsche Logindaten

'; } echo '

Webmail

Config-Login:

'; if ($config['allowregistration']) { echo '

Neues Konto erstellen:

'; } echo ' '; } else { header("Location: settings.php"); } ?>