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 f265049451
1 changed files with 7 additions and 11 deletions

View File

@ -51,7 +51,13 @@ return [
*/ */
'channels' => [ 'channels' => [
'mailstats' => [
'driver' => 'daily',
'path' => storage_path('logs/mailstats.log'),
'level' => 'debug',
'days' => 14,
],
'stack' => [ 'stack' => [
'driver' => 'stack', 'driver' => 'stack',
'channels' => explode(',', (string) env('LOG_STACK', 'single')), 'channels' => explode(',', (string) env('LOG_STACK', 'single')),
@ -126,15 +132,5 @@ return [
'emergency' => [ 'emergency' => [
'path' => storage_path('logs/laravel.log'), 'path' => storage_path('logs/laravel.log'),
], ],
], ],
'mailstats' => [
'driver' => 'daily',
'path' => storage_path('logs/mailstats.log'),
'level' => 'debug',
'days' => 14,
],
]; ];