Blob


1 <?php
2 //
3 // OpenSMTPD Admin
4 // by Mischa Peters <mischa at high5 dot nl>
5 // Copyright (c) 2022 High5!
6 // License Info: LICENSE.TXT
7 //
8 // File: logout.php
9 //
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 ?>