Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

haraka-plugin-rspamd

Package Overview
Dependencies
Maintainers
4
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

haraka-plugin-rspamd - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

6

Changes.md
## 1.1.3 - 2018-12-NN
## 1.1.4 - 2019-01-28
- fixed "TypeError: value.replace is not a function"
## 1.1.3 - 2018-12-19
- add check.relay option

@@ -5,0 +9,0 @@

@@ -183,3 +183,10 @@ 'use strict';

Object.keys(data.milter.add_headers).forEach((key) => {
connection.transaction.add_header(key, data.milter.add_headers[key]);
const header_value = data.milter.add_headers[key];
if (!header_value) return;
if (typeof header_value === 'object') {
connection.transaction.add_header(key, header_value.value);
} else {
connection.transaction.add_header(key, header_value);
}
})

@@ -186,0 +193,0 @@ }

2

package.json
{
"name": "haraka-plugin-rspamd",
"version": "1.1.3",
"version": "1.1.4",
"description": "Haraka plugin for rspamd",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc