Skip to content

Commit

Permalink
Update dnsbl.js
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
mofux authored May 22, 2017
1 parent 1d571d0 commit b6d1df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/rcpt/dnsbl.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
// module dependencies
var net = require('net');
var dns = require('native-dns');
var Adress6 = require('ip-address').Address6;
var Address6 = require('ip-address').Address6;

// skip the check if the sender is authenticated
if (req.session.accepted.auth) {
Expand Down Expand Up @@ -43,7 +43,7 @@ module.exports = {

} else if (net.isIPv6(ip)) {

reversed = new Address6(ip).reverseForm({omitSuffix: true});
reversed = new Address6(ip).reverseForm({ omitSuffix: true });

}

Expand Down

0 comments on commit b6d1df7

Please sign in to comment.