Skip to content

Commit

Permalink
Update lib/Mail/DMARC/Policy.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson authored Dec 10, 2024
1 parent 7f7c4bd commit d2a83e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mail/DMARC/Policy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ sub stringify {

my %dmarc_record = %{$self};
# "v" tag must be the first one
my $dmarc_txt = 'v=' . delete $dmarc_record{v} . '; ';
my $dmarc_txt = 'v=' . (delete $dmarc_record{v}) . '; ';
foreach my $key ( keys %dmarc_record ) {
next if $key eq 'domain';
$dmarc_txt .= "$key=$dmarc_record{$key}; ";
Expand Down

0 comments on commit d2a83e1

Please sign in to comment.