31 lines
599 B
PHP
31 lines
599 B
PHP
|
<?php
|
||
|
//
|
||
|
// OpenSMTPD Admin
|
||
|
// by Mischa Peters <mischa at high5 dot nl>
|
||
|
// Copyright (c) 2022 High5!
|
||
|
// License Info: LICENSE.TXT
|
||
|
//
|
||
|
// File: overview.php
|
||
|
//
|
||
|
// Template File: overview.tpl
|
||
|
//
|
||
|
// Template variables:
|
||
|
//
|
||
|
// list_domains
|
||
|
//
|
||
|
// GET / POST variables:
|
||
|
//
|
||
|
// -none-
|
||
|
//
|
||
|
require_once './functions.inc.php';
|
||
|
include './languages/' . check_language() . '.lang';
|
||
|
include './templates/header.tpl';
|
||
|
include './templates/menu.tpl';
|
||
|
|
||
|
$SESSID_USERNAME = check_session();
|
||
|
$list_domains = list_domains($SESSID_USERNAME);
|
||
|
|
||
|
include './templates/list-domains.tpl';
|
||
|
include './templates/footer.tpl';
|
||
|
?>
|