From 8a85735397ee4e76d1a3353c68986fc6a7b6bae6 Mon Sep 17 00:00:00 2001 From: boban Date: Tue, 21 Oct 2025 19:45:37 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Mailbox=20Stats=20=C3=BCber=20Dovecot=20?= =?UTF-8?q?mit=20config/mailpool.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/logging.php | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/config/logging.php b/config/logging.php index 37482f9..601d9c0 100644 --- a/config/logging.php +++ b/config/logging.php @@ -51,7 +51,13 @@ return [ */ 'channels' => [ - + 'mailstats' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/mailstats.log'), + 'level' => 'debug', + 'days' => 14, + ], + 'stack' => [ 'driver' => 'stack', 'channels' => explode(',', (string) env('LOG_STACK', 'single')), @@ -126,15 +132,5 @@ return [ 'emergency' => [ 'path' => storage_path('logs/laravel.log'), ], - ], - - - 'mailstats' => [ - 'driver' => 'daily', - 'path' => storage_path('logs/mailstats.log'), - 'level' => 'debug', - 'days' => 14, - ], - ];