1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

DKIM is a no-op now (#1084)

This commit is contained in:
Tom Limoncelli
2021-03-07 15:01:03 -05:00
committed by GitHub
parent 46f54ad3a3
commit 9f0ac5dfba
5 changed files with 126 additions and 148 deletions

View File

@ -919,13 +919,9 @@ function CAA_BUILDER(value) {
return r;
}
// Split a DKIM string if it is >254 bytes.
// This is a no-op. Long TXT records are handled natively now.
function DKIM(arr) {
chunkSize = 255;
var R = [];
for (var i = 0, len = arr.length; i < len; i += chunkSize)
R.push(arr.slice(i, i + chunkSize));
return R;
return arr;
}
// Function wrapper for glob() for recursively loading files.