From 17f96fe36b57e27c5641354aa1ad448b51dd3a07 Mon Sep 17 00:00:00 2001 From: heavygale Date: Wed, 2 Oct 2019 19:26:32 +0200 Subject: [PATCH] =?UTF-8?q?fix=20available=20=E2=89=A0=C2=A0total?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I had mistakenly kept the available disk space for the total disk space. --- data/web/debug.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/web/debug.php b/data/web/debug.php index 03752d34..f379d869 100644 --- a/data/web/debug.php +++ b/data/web/debug.php @@ -45,8 +45,8 @@ else { $vmail_df = explode(',', json_decode(docker('post', 'dovecot-mailcow', 'exec', $exec_fields), true)); $used_percent = substr($vmail_df[4], 0, -1); $quota_stats = mailbox('get','quota_stats'); - $quotaPercent1 = round(($quota_stats['total_quota']/$vmail_df[3])*100); - $quotaPercent2 = round((($quota_stats['total_quota']-$quota_stats['used_bytes'])/$vmail_df[3])*100); + $quotaPercent1 = round(($quota_stats['total_quota']/$vmail_df[1])*100); + $quotaPercent2 = round((($quota_stats['total_quota']-$quota_stats['used_bytes'])/$vmail_df[1])*100); $quotaPercent2 = ($quotaPercent2+$used_percent>100) ? 100-$used_percent : $quotaPercent2; ?>
@@ -58,7 +58,7 @@ else {

/var/vmail on

-

+