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();