Skip to content

Commit

Permalink
Incorrect plugin name
Browse files Browse the repository at this point in the history
I had problems with a missing plugin while trying to rcpt_to.ldap -- looks like this inherits line should include the full name of the plugin or else it doesn't work.
  • Loading branch information
abhas committed Jun 16, 2015
1 parent 6964f1b commit 8a2d2b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/rcpt_to.ldap.js
Expand Up @@ -4,7 +4,7 @@ var util = require('util');

exports.register = function() {
var plugin = this;
plugin.inherits('host_list_base');
plugin.inherits('rcpt_to.host_list_base');

try {
plugin.ldap = require('ldapjs');
Expand Down

0 comments on commit 8a2d2b3

Please sign in to comment.