mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-25 00:50:32 +00:00
update
This commit is contained in:
parent
225f9beb4e
commit
fd51132c4f
3 changed files with 14 additions and 1 deletions
|
@ -88,6 +88,7 @@ class DkimSetup extends Component
|
||||||
$findDomainDkim = new DomainDkim();
|
$findDomainDkim = new DomainDkim();
|
||||||
$findDomainDkim->domain_name = $this->domain;
|
$findDomainDkim->domain_name = $this->domain;
|
||||||
}
|
}
|
||||||
|
$findDomainDkim->selector = 'mail';
|
||||||
$findDomainDkim->private_key = $output['privateKey'];
|
$findDomainDkim->private_key = $output['privateKey'];
|
||||||
$findDomainDkim->public_key = $output['text'];
|
$findDomainDkim->public_key = $output['text'];
|
||||||
$findDomainDkim->save();
|
$findDomainDkim->save();
|
||||||
|
|
|
@ -16,7 +16,7 @@ return new class extends Migration
|
||||||
|
|
||||||
$table->string('domain_name');
|
$table->string('domain_name');
|
||||||
$table->string('description')->default('');
|
$table->string('description')->default('');
|
||||||
$table->string('selector')->default('default');
|
$table->string('selector')->default('mail');
|
||||||
$table->text('private_key');
|
$table->text('private_key');
|
||||||
$table->text('public_key');
|
$table->text('public_key');
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,18 @@
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
<div>
|
||||||
|
You do not have a DMARC record, please add a TXT record to your domain _dmarc.multiweber.com with the following value:
|
||||||
|
<br />
|
||||||
|
v=DMARC1; p=none
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
You do not have a SPF record, please add the following one to your domain multiweber.com:
|
||||||
|
<br />
|
||||||
|
v=spf1 a mx ip4:91.107.217.103 ~all
|
||||||
|
</div>
|
||||||
|
|
||||||
<x-filament::button wire:click="verify">
|
<x-filament::button wire:click="verify">
|
||||||
Check DNS Record
|
Check DNS Record
|
||||||
</x-filament::button>
|
</x-filament::button>
|
||||||
|
|
Loading…
Reference in a new issue