-
-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix(q/lmtp): revert a refactoring error - fix: install Plugins.md when haraka -i - fix(haraka -h): add missing return for plugin list - fix `no_tls_hosts` related docs & tests - fix: install docs/Plugins.md when haraka -i installed - fix(changes): spelling correction - lint: remove deprecated semi-style rule - dep(haraka-email-message): bump 1.2.3 -> 1.2.4 - removed dependency on ldap plugins - doc(tls.md): add note for no_tls_hosts for outbound - test(tls): add tests for no_tls_hosts for inbound & outbound
- Loading branch information
Showing
7 changed files
with
46 additions
and
22 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
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
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.4", | ||
"version": "3.0.5", | ||
"homepage": "http://haraka.github.io", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -33,11 +33,11 @@ | |
"haraka-notes": "^1.1.0", | ||
"haraka-plugin-redis": "^2.0.7", | ||
"haraka-results": "^2.2.4", | ||
"haraka-tld": "^1.2.1", | ||
"haraka-tld": "^1.2.2", | ||
"haraka-utils": "^1.1.3", | ||
"ipaddr.js": "~2.2.0", | ||
"node-gyp": "^10.2.0", | ||
"nopt": "^7.2.1", | ||
"nopt": "^8.0.0", | ||
"npid": "~0.4.0", | ||
"redis": "~4.7.0", | ||
"semver": "^7.6.3", | ||
|
@@ -53,9 +53,9 @@ | |
"haraka-plugin-bounce": "1.0.2", | ||
"haraka-plugin-clamd": "1.0.1", | ||
"haraka-plugin-dcc": "^1.0.2", | ||
"haraka-plugin-dkim": "^1.0.4", | ||
"haraka-plugin-dns-list": "^1.2.0", | ||
"haraka-plugin-elasticsearch": "^8.0.2", | ||
"haraka-plugin-dkim": "^1.0.7", | ||
"haraka-plugin-dns-list": "^1.2.1", | ||
"haraka-plugin-elasticsearch": "^8.0.3", | ||
"haraka-plugin-esets": "^1.0.0", | ||
"haraka-plugin-fcrdns": "^1.1.0", | ||
"haraka-plugin-geoip": "^1.1.0", | ||
|
@@ -81,10 +81,10 @@ | |
}, | ||
"devDependencies": { | ||
"@haraka/eslint-config": "^1.1.5", | ||
"haraka-test-fixtures": "^1.3.7", | ||
"haraka-test-fixtures": "^1.3.8", | ||
"mocha": "^10.7.3", | ||
"mock-require": "^3.0.3", | ||
"nodemailer": "^6.9.14" | ||
"nodemailer": "^6.9.15" | ||
}, | ||
"bugs": { | ||
"mail": "[email protected]", | ||
|
@@ -95,7 +95,7 @@ | |
"haraka_grep": "./bin/haraka_grep" | ||
}, | ||
"scripts": { | ||
"format": "npm run prettier:fix && npm run lint:fix", | ||
"format:NYET": "npm run prettier:fix && npm run lint:fix", | ||
"lint": "npx eslint@^8 *.js outbound plugins plugins/*/*.js test test/*/*.js test/*/*/*.js bin/haraka", | ||
"lint:fix": "npx eslint@^8 --fix *.js outbound plugins plugins/*/*.js test test/*/*.js test/*/*/*.js bin/haraka", | ||
"prettier": "npx prettier . --check", | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ listen=0.0.0.0:2500 | |
|
||
ignore_bad_plugins=0 | ||
|
||
show_version=true | ||
|
||
nodes=0 | ||
|
||
daemonize=false | ||
|
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