Skip to content

Commit

Permalink
Fixed support for HELO SMTP
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Mar 17, 2011
1 parent 5e4f203 commit 1034ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/smtp.js
Expand Up @@ -309,7 +309,7 @@ SMTPClient.prototype._handshake = function(callback){
if(error){

// fallback to HELO
this._sendCommand("HELO "+this.hostname, (function(error, data){
return this._sendCommand("HELO "+this.hostname, (function(error, data){
if(error){
this.emit("error", error);
this.close();
Expand Down

0 comments on commit 1034ae8

Please sign in to comment.