Add favicon to table, summ,ary and details webpages

This commit is contained in:
2025-09-04 19:28:36 +01:00
parent b070554fdd
commit 88bc38adf3
5 changed files with 9 additions and 2 deletions

View File

@@ -227,6 +227,8 @@ $conn->close();
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Log details for PID <?= e($pid) ?> (record <?= e($id) ?>)</title> <title>Log details for PID <?= e($pid) ?> (record <?= e($id) ?>)</title>
<link rel="stylesheet" type="text/css" href="css/mailstats.css" /> <link rel="stylesheet" type="text/css" href="css/mailstats.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head> </head>
<body> <body>
<div class="mailstats-detail"> <div class="mailstats-detail">

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -200,6 +200,7 @@ function generateLogDataTable($logData) {
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Summary Logs</title> <title>Summary Logs</title>
<link rel="stylesheet" type="text/css" href="css/mailstats.css" /> <link rel="stylesheet" type="text/css" href="css/mailstats.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head> </head>
<body> <body>
<div class="mailstats-summary"> <div class="mailstats-summary">

View File

@@ -3,6 +3,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>SMEServer Mailstats</title> <title>SMEServer Mailstats</title>
<link rel='stylesheet' type='text/css' href='css/mailstats.css' /> <link rel='stylesheet' type='text/css' href='css/mailstats.css' />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- Check links --> <!-- Check links -->
<!--css here--> <!--css here-->
</head> </head>

View File

@@ -6,7 +6,7 @@ Summary: Daily mail statistics for SME Server
%define name smeserver-mailstats %define name smeserver-mailstats
Name: %{name} Name: %{name}
%define version 11.1 %define version 11.1
%define release 5 %define release 6
Version: %{version} Version: %{version}
Release: %{release}%{?dist} Release: %{release}%{?dist}
License: GPL License: GPL
@@ -90,6 +90,9 @@ usermod -aG systemd-journal www
/sbin/ldconfig /sbin/ldconfig
%changelog %changelog
* Thu Sep 04 2025 Brian Read <brianr@koozali.org> 11.1-6.sme
- Add favicon to mailstats table, summary and detailed pages [SME: 13121]
* Tue Sep 02 2025 Brian Read <brianr@koozali.org> 11.1-5.sme * Tue Sep 02 2025 Brian Read <brianr@koozali.org> 11.1-5.sme
- Speed up Journal access [SME: 13121] - Speed up Journal access [SME: 13121]
- Fix missing blacklist URL [SME: 13121] - Fix missing blacklist URL [SME: 13121]