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:
@ -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.
|
||||
|
Reference in New Issue
Block a user