We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21ae0cf commit f4a8466Copy full SHA for f4a8466
interface/web/dns/dns_spf_edit.php
@@ -202,7 +202,7 @@ function onSubmit() {
202
if (!empty($spf_domain)) {
203
$rec = split(' ', $spf_domain);
204
foreach ($rec as $domain) {
205
- if (preg_match('/^[a-zA-Z0-9\\.\\-\\*]{0,64}$/', $domain))
+ if (preg_match('/_^[a-zA-Z0-9\\.\\-\\*]{0,64}$/', $domain))
206
$spf_record[] = 'include:' . $domain;
207
else {
208
if (isset($app->tform->errorMessage )) $app->tform->errorMessage .= '<br/>' . $app->tform->wordbook["spf_invalid_domain_txt"]. $domain;
0 commit comments