69 lines
1.5 KiB
PHP
69 lines
1.5 KiB
PHP
|
<?php
|
||
|
//
|
||
|
// OpenSMTPD Admin
|
||
|
// by Mischa Peters <mischa at high5 dot nl>
|
||
|
// Copyright (c) 2022 High5!
|
||
|
// License Info: LICENSE.TXT
|
||
|
//
|
||
|
// File: viewlog.php
|
||
|
//
|
||
|
// Template File: viewlog.tpl
|
||
|
//
|
||
|
// Template Variables:
|
||
|
//
|
||
|
// tMessage
|
||
|
// tLog
|
||
|
//
|
||
|
// Form POST \ GET Variables:
|
||
|
//
|
||
|
// fDomain
|
||
|
//
|
||
|
require("./variables.inc.php");
|
||
|
require("./config.inc.php");
|
||
|
require("./functions.inc.php");
|
||
|
include("./languages/" . check_language() . ".lang");
|
||
|
|
||
|
$SESSID_USERNAME = check_session();
|
||
|
$list_domains = list_domains_for_admin($SESSID_USERNAME);
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "GET") {
|
||
|
if ((is_array($list_domains) and count($list_domains) > 0)) $fDomain = $list_domains[0];
|
||
|
|
||
|
if (!check_owner($SESSID_USERNAME, $fDomain)) {
|
||
|
$error = 1;
|
||
|
$tMessage = $PALANG['pViewlog_result_error'];
|
||
|
}
|
||
|
|
||
|
if ($error != 1) {
|
||
|
$result = db_query("SELECT * FROM log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tLog[] = $row;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
||
|
$fDomain = escape_string($_POST['fDomain']);
|
||
|
|
||
|
if (!check_owner($SESSID_USERNAME, $fDomain)) {
|
||
|
$error = 1;
|
||
|
$tMessage = $PALANG['pViewlog_error'];
|
||
|
}
|
||
|
|
||
|
if ($error != 1) {
|
||
|
$result = db_query("SELECT * FROM log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10");
|
||
|
if ($result['rows'] > 0) {
|
||
|
while ($row = db_array($result['result'])) {
|
||
|
$tLog[] = $row;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
include("./templates/header.tpl");
|
||
|
include("./templates/menu.tpl");
|
||
|
include("./templates/viewlog.tpl");
|
||
|
include("./templates/footer.tpl");
|
||
|
?>
|