opensmtpdadmin/main.php

30 lines
534 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: main.php
//
// Template File: main.tpl
//
// Template Variables:
//
// -none-
//
2022-09-04 22:43:21 +02:00
// Form POST / GET Variables:
2022-08-18 14:01:52 +02:00
//
// -none-
//
2022-09-04 12:17:13 +02:00
require_once './functions.inc.php';
include './languages/' . check_language() . '.lang';
2022-08-18 14:01:52 +02:00
$SESSID_USERNAME = check_session();
2022-09-04 12:17:13 +02:00
include './templates/header.tpl';
include './templates/menu.tpl';
include './templates/main.tpl';
include './templates/footer.tpl';
2022-08-18 14:01:52 +02:00
?>