-
-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### Fixed - feat(q_forward): add LMTP routing handling #3199 - chore(q_forward): tighten up queue.wants handling #3199 - doc(q_forward): improve markdown formatting #3199 - helo.checks: several fixes, #3191 - q/smtp_forward: correct path to next_hop #3186 - don't leak addr parsing errors into SMTP conversation #3185 - connection: handle dns.reverse invalid throws on node v20 #3184 - rename redis command setex to setEx #3181 #### Changed - test(helo.checks): add regression tests for #3191 #3195 - connection: handle dns.reverse invalid throws on node v20 - build(deps): bump ipaddr.js from 2.0.1 to 2.1.0 #3194 - chore: bump a few dependency versions #3184 - dns_list_base: avoid test failure when public DNS used #3184 - doc(outbound.ini) update link #3159 - doc(clamd.md) fixed spelling error #3155
- Loading branch information
Showing
2 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"server", | ||
"email" | ||
], | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"homepage": "http://haraka.github.io", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -25,10 +25,10 @@ | |
"async": "^3.2.4", | ||
"daemon": "~1.1.0", | ||
"ipaddr.js": "~2.1.0", | ||
"node-gyp": "^9.3.1", | ||
"nopt": "~7.1.0", | ||
"node-gyp": "^9.4.0", | ||
"nopt": "~7.2.0", | ||
"npid": "~0.4.0", | ||
"semver": "~7.5.0", | ||
"semver": "~7.5.2", | ||
"sprintf-js": "~1.1.2", | ||
"haraka-config": "^1.1.0", | ||
"haraka-constants": "^1.0.6", | ||
|
@@ -40,8 +40,8 @@ | |
"haraka-plugin-attachment": "^1.0.7", | ||
"haraka-plugin-spf": "1.2.0", | ||
"haraka-plugin-redis": "^2.0.5", | ||
"haraka-results": "^2.2.2", | ||
"haraka-tld": "^1.1.0", | ||
"haraka-results": "^2.2.3", | ||
"haraka-tld": "^1.1.1", | ||
"haraka-utils": "^1.0.3", | ||
"openssl-wrapper": "^0.3.4", | ||
"sockaddr": "^1.0.1" | ||
|
@@ -60,7 +60,7 @@ | |
"haraka-plugin-karma": "^2.1.0", | ||
"haraka-plugin-limit": "^1.1.0", | ||
"haraka-plugin-p0f": "^1.0.9", | ||
"haraka-plugin-qmail-deliverable": "^1.1.1", | ||
"haraka-plugin-qmail-deliverable": "^1.2.1", | ||
"haraka-plugin-known-senders": "^1.0.8", | ||
"haraka-plugin-rcpt-ldap": "^1.0.0", | ||
"haraka-plugin-recipient-routes": "^1.0.4", | ||
|
@@ -69,16 +69,16 @@ | |
"haraka-plugin-uribl": "^1.0.6", | ||
"haraka-plugin-watch": "^2.0.2", | ||
"ocsp": "~1.2.0", | ||
"redis": "~4.5.1", | ||
"redis": "^4.5.1", | ||
"tmp": "~0.2.1" | ||
}, | ||
"devDependencies": { | ||
"nodeunit-x": "^0.16.0", | ||
"haraka-test-fixtures": "^1.2.1", | ||
"haraka-test-fixtures": "^1.3.0", | ||
"mock-require": "^3.0.3", | ||
"eslint": "^8.39.0", | ||
"eslint": "^8.42.0", | ||
"eslint-plugin-haraka": "^1.0.15", | ||
"nodemailer": "^6.9.1" | ||
"nodemailer": "^6.9.3" | ||
}, | ||
"bugs": { | ||
"mail": "[email protected]", | ||
|