haraka-plugin-rspamd
Advanced tools
Comparing version 1.3.0 to 1.3.1
### Unreleased | ||
### [1.3.1] - 2023-03-02 | ||
- fix for loop returns (#35) | ||
### [1.3.0] - 2023-02-23 | ||
@@ -77,1 +82,2 @@ | ||
[1.3.0]: https://github.com/haraka/haraka-plugin-rspamd/releases/tag/1.3.0 | ||
[1.3.1]: https://github.com/haraka/haraka-plugin-rspamd/releases/tag/1.3.1 |
@@ -189,3 +189,3 @@ 'use strict'; | ||
const header_values = data.milter.add_headers[key]; | ||
if (!header_values) return; | ||
if (!header_values) continue; | ||
@@ -384,7 +384,7 @@ if (Object.prototype.toString.call(header_values) == '[object Array]') { | ||
// collapse to comma separated string, so values get logged | ||
if (!data[b]) return; | ||
if (!data[b]) continue; | ||
if (data[b].length) { | ||
clean[b] = data[b].join(','); | ||
return; | ||
continue; | ||
} | ||
@@ -391,0 +391,0 @@ |
{ | ||
"name": "haraka-plugin-rspamd", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Haraka plugin for rspamd", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30712