From 0d41b6b658792c4866e1634281fa9d090ec35734 Mon Sep 17 00:00:00 2001 From: boban Date: Sun, 26 Oct 2025 15:53:40 +0100 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 --- .../Commands/CollectWoltGuardServices.php | 20 +++++++++++++++++++ routes/console.php | 3 ++- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 app/Console/Commands/CollectWoltGuardServices.php diff --git a/app/Console/Commands/CollectWoltGuardServices.php b/app/Console/Commands/CollectWoltGuardServices.php new file mode 100644 index 0000000..348c0c3 --- /dev/null +++ b/app/Console/Commands/CollectWoltGuardServices.php @@ -0,0 +1,20 @@ +info('WoltGuard services collected.'); + return self::SUCCESS; + } +} diff --git a/routes/console.php b/routes/console.php index 9ef772e..3591a06 100644 --- a/routes/console.php +++ b/routes/console.php @@ -9,7 +9,8 @@ Artisan::command('inspire', function () { $this->comment(Inspiring::quote()); })->purpose('Display an inspiring quote'); -Schedule::job(RunHealthChecks::class)->everytenSeconds()->withoutOverlapping(); +Schedule::job(RunHealthChecks::class)->everyMinute()->withoutOverlapping(); +Schedule::command('woltguard:collect-services')->everyMinute(); //Schedule::command('mailwolt:check-updates')->dailyAt('04:10'); Schedule::command('mailwolt:check-updates')->everytwoMinutes();