opensmtpdadmin/overview.php

37 lines
675 B
PHP
Raw Normal View History

2022-08-18 14:01:52 +02:00
<?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:
//
// tAlias
// tDomain
// tMailbox
// tDisplay_back
// tDisplay_next
//
// Form POST \ GET Variables:
//
// domain
// fDomain
// limit
//
2022-09-02 23:06:08 +02:00
require_once './functions.inc.php';
include './languages/' . check_language() . '.lang';
include './templates/header.tpl';
include './templates/menu.tpl';
2022-08-18 14:01:52 +02:00
$SESSID_USERNAME = check_session();
2022-09-02 23:06:08 +02:00
$list_domains = list_domains($SESSID_USERNAME);
2022-08-18 14:01:52 +02:00
2022-09-02 23:06:08 +02:00
include './templates/list-domains.tpl';
include './templates/footer.tpl';
2022-08-18 14:01:52 +02:00
?>