mailauth 4.5.1 → 4.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bimi/index.js +2 -4
- package/licenses.txt +1 -0
- package/man/mailauth.1 +1 -1
- package/package.json +1 -1
package/lib/bimi/index.js
CHANGED
|
@@ -201,10 +201,8 @@ const downloadPromise = async (url, cachedFile) => {
|
|
|
201
201
|
throw error;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
return Buffer.from(ab);
|
|
204
|
+
const arrayBufferValue = await res.arrayBuffer();
|
|
205
|
+
return Buffer.from(arrayBufferValue);
|
|
208
206
|
};
|
|
209
207
|
|
|
210
208
|
const validateVMC = async (bimiData, opts) => {
|
package/licenses.txt
CHANGED
|
@@ -8,4 +8,5 @@ libmime MIT git://github.com/andris9/libmime.git
|
|
|
8
8
|
nodemailer MIT-0 git+https://github.com/nodemailer/nodemailer.git 6.9.4 Andris Reinman
|
|
9
9
|
psl MIT git+ssh://git@github.com/lupomontero/psl.git 1.9.0 Lupo Montero <lupomontero@gmail.com> (https://lupomontero.com/)
|
|
10
10
|
punycode MIT git+https://github.com/mathiasbynens/punycode.js.git 2.3.0 Mathias Bynens https://mathiasbynens.be/
|
|
11
|
+
undici MIT git+https://github.com/nodejs/undici.git 5.23.0 Matteo Collina <hello@matteocollina.com>
|
|
11
12
|
yargs MIT git+https://github.com/yargs/yargs.git 17.7.2 n/a
|
package/man/mailauth.1
CHANGED