From d1480782531e0fe46b415de86329e89fcc9dbdcc Mon Sep 17 00:00:00 2001 From: Richard Remer Date: Wed, 16 Sep 2015 08:45:49 -0700 Subject: [PATCH] remove unused function arguments --- bin/smtp2http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/smtp2http.js b/bin/smtp2http.js index 3fb21ea..c09108d 100644 --- a/bin/smtp2http.js +++ b/bin/smtp2http.js @@ -49,7 +49,7 @@ smtp.createServer(serverOpts, function(req) { http.post({ url: serverOpts.endpoint, json: email - }, function(err, res, body) { + }, function(err) { if (err) console.error(err); }) }).on("error", function(err) {