Blob


1 <?php
2 //
3 // Postfix Admin
4 // by Mischa Peters <mischa at high5 dot net>
5 // Copyright (c) 2002 - 2005 High5!
6 // License Info: http://www.postfixadmin.com/?file=LICENSE.TXT
7 //
8 // File: logout.php
9 //
10 // Template File: -none-
11 //
12 // Template Variables:
13 //
14 // -none-
15 //
16 // Form POST \ GET Variables:
17 //
18 // -none-
19 //
20 require ("./config.inc.php");
21 require ("./functions.inc.php");
23 $SESSID_USERNAME = check_session ();
25 session_unset ();
26 session_destroy ();
28 header ("Location: login.php");
29 exit;
30 ?>