Fix: Artisan-Aufrufe von mailwolt:* auf clubird:* umgestellt

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main v1.1.383
boban 2026-04-27 01:04:09 +02:00
parent bbc7cc6c34
commit d3012792bc
3 changed files with 4 additions and 4 deletions

View File

@ -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),

View File

@ -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),

View File

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