Domain Create Modal anpassen Fehler auf Null
parent
d37ac322e4
commit
c143414119
|
|
@ -3,18 +3,13 @@
|
|||
|
||||
namespace App\Livewire\Ui\Domain\Modal;
|
||||
|
||||
use App\Jobs\InstallDkimKey;
|
||||
use App\Models\DkimKey;
|
||||
use App\Models\Domain;
|
||||
use App\Models\Setting;
|
||||
use App\Services\DkimService;
|
||||
use App\Services\DnsRecordService;
|
||||
use App\Services\TlsaService;
|
||||
use App\Services\MailStorage;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\Validation\Rule;
|
||||
use Illuminate\Validation\ValidationException;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Livewire\Attributes\On;
|
||||
use LivewireUI\Modal\ModalComponent;
|
||||
|
||||
|
|
@ -262,7 +257,7 @@ class DomainCreateModal extends ModalComponent
|
|||
'max_mailboxes' => $this->max_mailboxes,
|
||||
|
||||
'default_quota_mb' => $this->default_quota_mb,
|
||||
'max_quota_per_mailbox_mb' => $this->max_quota_per_mailbox_mb ?? 0,
|
||||
'max_quota_per_mailbox_mb' => $this->max_quota_per_mailbox_mb,
|
||||
'total_quota_mb' => $this->total_quota_mb,
|
||||
|
||||
'rate_limit_per_hour' => $this->rate_limit_per_hour,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ return [
|
|||
'max_mailboxes' => (int) env('MAILPOOL_DEFAULT_MAX_MAILBOXES', 10),
|
||||
|
||||
'default_quota_mb' => (int) env('MAILPOOL_DEFAULT_MAILBOX_QUOTA_MB', 3072),
|
||||
'max_quota_per_mailbox_mb' => env('MAILPOOL_DEFAULT_MAX_MAILBOX_QUOTA_MB', null),
|
||||
'max_quota_per_mailbox_mb' => env('MAILPOOL_DEFAULT_MAX_MAILBOX_QUOTA_MB', 3072),
|
||||
'total_quota_mb' => (int) env('MAILPOOL_DEFAULT_DOMAIN_TOTAL_MB', 10240),
|
||||
|
||||
'rate_limit_per_hour' => env('MAILPOOL_DEFAULT_RATE_LIMIT_PER_HOUR', null),
|
||||
|
|
|
|||
Loading…
Reference in New Issue