haraka-plugin-spamassassin 1.0.0 → 1.0.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/CHANGELOG.md +11 -1
- package/README.md +0 -4
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
4
4
|
|
|
5
5
|
### Unreleased
|
|
6
6
|
|
|
7
|
+
### [1.0.2] - 2025-01-26
|
|
8
|
+
|
|
9
|
+
- prettier: move config into package.json
|
|
10
|
+
|
|
11
|
+
### [1.0.1] - 2025-01-09
|
|
12
|
+
|
|
13
|
+
- dep(eslint): update to v9
|
|
14
|
+
|
|
7
15
|
### [1.0.0] - 2024-05-07
|
|
8
16
|
|
|
9
17
|
- repackaged from haraka/Haraka
|
|
10
18
|
|
|
11
|
-
[1.0.
|
|
19
|
+
[1.0.1]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.1
|
|
20
|
+
[1.0.2]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.2
|
|
21
|
+
[1.0.0]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/1.0.0
|
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
[![CI Test Status][ci-img]][ci-url]
|
|
2
2
|
[![Code Climate][clim-img]][clim-url]
|
|
3
3
|
|
|
4
|
-
[![NPM][npm-img]][npm-url]
|
|
5
|
-
|
|
6
4
|
# haraka-plugin-spamassassin
|
|
7
5
|
|
|
8
6
|
This plugin implements the spamd protocol and will send messages to spamd for scoring.
|
|
@@ -188,5 +186,3 @@ Other headers options you might find interesting or useful are:
|
|
|
188
186
|
[ci-url]: https://github.com/haraka/haraka-plugin-spamassassin/actions/workflows/ci.yml
|
|
189
187
|
[clim-img]: https://codeclimate.com/github/haraka/haraka-plugin-spamassassin/badges/gpa.svg
|
|
190
188
|
[clim-url]: https://codeclimate.com/github/haraka/haraka-plugin-spamassassin
|
|
191
|
-
[npm-img]: https://nodei.co/npm/haraka-plugin-spamassassin.png
|
|
192
|
-
[npm-url]: https://www.npmjs.com/package/haraka-plugin-spamassassin
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haraka-plugin-spamassassin",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Haraka plugin that
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Haraka plugin that scans messages with SpamAssassin",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"CHANGELOG.md",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"format": "npm run prettier:fix && npm run lint:fix",
|
|
12
|
-
"lint": "npx eslint
|
|
13
|
-
"lint:fix": "npx eslint
|
|
12
|
+
"lint": "npx eslint *.js test",
|
|
13
|
+
"lint:fix": "npx eslint *.js test --fix",
|
|
14
14
|
"prettier": "npx prettier . --check",
|
|
15
15
|
"prettier:fix": "npx prettier . --write --log-level=warn",
|
|
16
16
|
"test": "node --test",
|
|
@@ -33,12 +33,16 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/haraka/haraka-plugin-spamassassin#readme",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"haraka-net-utils": "^1.7.
|
|
36
|
+
"haraka-net-utils": "^1.7.1",
|
|
37
37
|
"haraka-utils": "^1.1.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@haraka/eslint-config": "
|
|
40
|
+
"@haraka/eslint-config": "^2.0.2",
|
|
41
41
|
"address-rfc2821": "^2.1.2",
|
|
42
|
-
"haraka-test-fixtures": "1.3.
|
|
42
|
+
"haraka-test-fixtures": "1.3.8"
|
|
43
|
+
},
|
|
44
|
+
"prettier": {
|
|
45
|
+
"singleQuote": true,
|
|
46
|
+
"semi": false
|
|
43
47
|
}
|
|
44
48
|
}
|