Subject: | Add spaces around : in Signer.pm |
Date: | Tue, 15 Oct 2019 18:06:12 +0000 |
To: | "bug-Mail-DKIM [...] rt.cpan.org" <bug-Mail-DKIM [...] rt.cpan.org> |
From: | Todd Richmond <trichmond [...] proofpoint.com> |
There should be a space after the : as well as before in Signer.pm
--- lib/Mail/DKIM/Signer.pm.orig 2019-03-14 18:26:29.374100474 -0700
+++ lib/Mail/DKIM/Signer.pm 2019-03-15 16:23:52.534132628 -0700
@@ -585,7 +585,7 @@
my $a = $_;
scalar grep { lc($a) eq lc($_) } @wanted_headers
} @found_headers;
- return join( ':', @headers );
+ return join(" : ", @headers);
}
# return nonzero if this is header we should sign