mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
SPF record parts aren't space separate https://github.com/virtualmin/virtualmin-gpl/issues/935
This commit is contained in:
@@ -776,7 +776,7 @@ return &base_directory()."/".$path;
|
||||
# If some text looks like an SPF TXT record, return a parsed hash ref
|
||||
sub parse_spf
|
||||
{
|
||||
my $txt = join(" ", @_);
|
||||
my $txt = join("", @_);
|
||||
if ($txt =~ /^v=spf1/) {
|
||||
my @w = split(/\s+/, $txt);
|
||||
my $spf = { };
|
||||
|
||||
Reference in New Issue
Block a user