Domain Create Modal anpassen Fehler auf Null

main
boban 2025-10-18 18:51:34 +02:00
parent 3f9ebd8300
commit f6305ba591
1 changed files with 4 additions and 4 deletions

View File

@ -113,8 +113,8 @@ class DkimService
}
return [
'selector' => $selKey,
'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel),
'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel),
'priv_path' => $disk->path($privRel),
'pub_path' => $disk->path($pubRel),
'public_pem' => $publicKeyPem,
'private_pem' => $privateKey,
'dns_name' => "{$selKey}._domainkey",
@ -158,8 +158,8 @@ class DkimService
return [
'selector' => $selKey,
'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel),
'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel),
'priv_path' => $disk->path($privRel),
'pub_path' => $disk->path($pubRel),
'public_pem' => $publicKeyPem,
'private_pem' => $privateKey,
'dns_name' => "{$selKey}._domainkey",