From d3012792bcc07107f72628456a6fb2d6ccbedc68 Mon Sep 17 00:00:00 2001 From: boban Date: Mon, 27 Apr 2026 01:04:09 +0200 Subject: [PATCH] Fix: Artisan-Aufrufe von mailwolt:* auf clubird:* umgestellt Co-Authored-By: Claude Sonnet 4.6 --- app/Livewire/Setup/Wizard.php | 4 ++-- app/Livewire/Ui/Security/SslCertificatesTable.php | 2 +- app/Livewire/Ui/System/UpdatePage.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Livewire/Setup/Wizard.php b/app/Livewire/Setup/Wizard.php index 7424d69..9803d56 100644 --- a/app/Livewire/Setup/Wizard.php +++ b/app/Livewire/Setup/Wizard.php @@ -155,7 +155,7 @@ class Wizard extends Component $ssl = $this->skipSsl ? 0 : 1; $artisan = base_path('artisan'); $cmd = sprintf( - 'nohup php %s mailwolt:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=%d > /dev/null 2>&1 &', + 'nohup php %s clubird:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=%d > /dev/null 2>&1 &', escapeshellarg($artisan), escapeshellarg($this->ui_domain), escapeshellarg($this->mail_domain), @@ -197,7 +197,7 @@ class Wizard extends Component $ssl = $this->skipSsl ? 0 : 1; $artisan = base_path('artisan'); $cmd = sprintf( - 'nohup php %s mailwolt:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=%d > /dev/null 2>&1 &', + 'nohup php %s clubird:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=%d > /dev/null 2>&1 &', escapeshellarg($artisan), escapeshellarg($this->ui_domain), escapeshellarg($this->mail_domain), diff --git a/app/Livewire/Ui/Security/SslCertificatesTable.php b/app/Livewire/Ui/Security/SslCertificatesTable.php index 6a0f3be..2cdbb6d 100644 --- a/app/Livewire/Ui/Security/SslCertificatesTable.php +++ b/app/Livewire/Ui/Security/SslCertificatesTable.php @@ -63,7 +63,7 @@ class SslCertificatesTable extends Component $artisan = base_path('artisan'); $cmd = sprintf( - 'nohup php %s mailwolt:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=1 > /dev/null 2>&1 &', + 'nohup php %s clubird:wizard-domains --ui=%s --mail=%s --webmail=%s --ssl=1 > /dev/null 2>&1 &', escapeshellarg($artisan), escapeshellarg($this->uiDomain), escapeshellarg($this->mailDomain), diff --git a/app/Livewire/Ui/System/UpdatePage.php b/app/Livewire/Ui/System/UpdatePage.php index d055a22..10a2ee6 100644 --- a/app/Livewire/Ui/System/UpdatePage.php +++ b/app/Livewire/Ui/System/UpdatePage.php @@ -61,7 +61,7 @@ class UpdatePage extends Component public function checkForUpdates(): void { - @shell_exec('php ' . base_path('artisan') . ' mailwolt:check-updates 2>&1'); + @shell_exec('php ' . base_path('artisan') . ' clubird:check-updates 2>&1'); $this->reloadVersionsAndStatus(); $this->recompute();