Blob
1 <?php2 //3 // OpenSMTPD Admin4 // by Mischa Peters <mischa at high5 dot nl>5 // Copyright (c) 2022 High5!6 // License Info: LICENSE.TXT7 //8 // File: logout.php9 //10 // Template File: -none-11 //12 // Template Variables:13 //14 // -none-15 //16 // POST / GET Variables:17 //18 // -none-19 //20 require_once './functions.inc.php';22 $SESSID_USERNAME = check_session();24 session_unset();25 session_destroy();27 header("Location: login.php");28 exit;29 ?>