mailauth 4.3.1 → 4.3.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/spf/index.js CHANGED
@@ -50,7 +50,7 @@ let limitedResolver = (resolver, maxResolveCount, maxVoidCount, ignoreFirst) =>
50
50
 
51
51
  try {
52
52
  // domain check is pretty lax, mostly to pass the test suite
53
- if (!/^([\x20-\x2D\x2f-\x7e]+\.)+[a-z]+[a-z\-0-9]*$/.test(domain)) {
53
+ if (!/^([\x20-\x2D\x2f-\x7e]+\.)+[a-z]+[a-z\-0-9]*$/i.test(domain)) {
54
54
  throw new Error('Failed to validate domain');
55
55
  }
56
56
  } catch (err) {
package/man/mailauth.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH "MAILAUTH" "1" "March 2023" "v4.2.0" "Mailauth Help"
1
+ .TH "MAILAUTH" "1" "April 2023" "v4.3.2" "Mailauth Help"
2
2
  .SH "NAME"
3
3
  \fBmailauth\fR
4
4
  .QP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailauth",
3
- "version": "4.3.1",
3
+ "version": "4.3.2",
4
4
  "description": "Email authentication library for Node.js",
5
5
  "main": "lib/mailauth.js",
6
6
  "scripts": {
@@ -33,22 +33,22 @@
33
33
  "homepage": "https://github.com/postalsys/mailauth",
34
34
  "devDependencies": {
35
35
  "chai": "4.3.7",
36
- "eslint": "8.35.0",
36
+ "eslint": "8.37.0",
37
37
  "eslint-config-nodemailer": "1.2.0",
38
- "eslint-config-prettier": "8.6.0",
38
+ "eslint-config-prettier": "8.8.0",
39
39
  "js-yaml": "4.1.0",
40
40
  "license-report": "6.3.0",
41
41
  "marked": "0.7.0",
42
42
  "marked-man": "0.7.0",
43
43
  "mbox-reader": "1.1.5",
44
44
  "mocha": "10.2.0",
45
- "pkg": "5.8.0"
45
+ "pkg": "5.8.1"
46
46
  },
47
47
  "dependencies": {
48
48
  "@postalsys/vmc": "1.0.6",
49
49
  "fast-xml-parser": "4.1.3",
50
50
  "ipaddr.js": "2.0.1",
51
- "joi": "17.8.3",
51
+ "joi": "17.9.1",
52
52
  "libmime": "5.2.1",
53
53
  "nodemailer": "6.9.1",
54
54
  "psl": "1.9.0",