Skip to content

Commit

Permalink
corrected config path to always_ok setting
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Aug 7, 2017
1 parent b093d38 commit 2742016
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

## 1.0.3 - 2017-08-06

- corrected config path to always_ok setting

## 1.0.2 - 2017-07-30

- declare booleans in config.get
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ exports.syslog = function (next, logger, log) {
syslog.log(syslog.LOG_DEBUG, log.data);
}

if (plugin.cfg.always_ok) {
if (plugin.cfg.general.always_ok) {
next(constants.OK);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-syslog",
"version": "1.0.2",
"version": "1.0.3",
"description": "Haraka plugin that logs to syslog",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 2742016

Please sign in to comment.