2022-09-02 23:08:29 +02:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// OpenSMTPD Admin
|
|
|
|
// by Mischa Peters <mischa at high5 dot nl>
|
|
|
|
// Copyright (c) 2022 High5!
|
|
|
|
// License Info: LICENSE.TXT
|
|
|
|
//
|
2022-09-04 12:17:13 +02:00
|
|
|
// File: list-domains.php
|
2022-09-02 23:08:29 +02:00
|
|
|
//
|
2022-09-04 12:17:13 +02:00
|
|
|
// Template File: list-domains.tpl
|
2022-09-02 23:08:29 +02:00
|
|
|
//
|
|
|
|
// Template variables:
|
|
|
|
//
|
|
|
|
// list_domains
|
|
|
|
//
|
|
|
|
// GET / POST variables:
|
|
|
|
//
|
|
|
|
// -none-
|
|
|
|
//
|
|
|
|
require_once './functions.inc.php';
|
|
|
|
include './languages/' . check_language() . '.lang';
|
|
|
|
|
|
|
|
$SESSID_USERNAME = check_session();
|
|
|
|
$list_domains = list_domains($SESSID_USERNAME);
|
|
|
|
|
2022-09-04 12:17:13 +02:00
|
|
|
include './templates/header.tpl';
|
|
|
|
include './templates/menu.tpl';
|
2022-09-02 23:08:29 +02:00
|
|
|
include './templates/list-domains.tpl';
|
|
|
|
include './templates/footer.tpl';
|
|
|
|
?>
|