Fix: Mailbox Stats über Dovecot mit config/mailpool.php

main v1.0.10
boban 2025-10-21 19:45:37 +02:00
parent 7f4f2adbe5
commit 8a85735397
1 changed files with 7 additions and 11 deletions

View File

@ -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,
],
];