While attempting to send email via Simple Mail I received this error:
-------------------------------------------------------------------------------------------------
Simple Mail Error: [mailhost.worldnet.att.net:25]: Invalid response: 504
disabled authentication mechanism.
------------------------------------------------------------------------------------------------
I localized the generation of this error to file net.js line 190. As a blind
trouble shooting effort I changed 504 to 505 (any non 504 value works)
and the SMTP function was successful. I have no idea why this change
works, but it may be useful to someone who knows the net.js code.
----------------------------------------------------------------------------------------------------------------------------
Net.js line: 186
this.SMTPAuthCommand = function(request, onResponse, responseStart, responseEnd) {
var command = this;
this.inheritFrom = self.SMTPCommand;
this.inheritFrom(request, function(response) {
return response.match(/^504/) ? self.SMTPAuthCommand.NOT_SUPPORTED :
response.match(command.responseStart) ? self.SMTPAuthCommand.OK :
self.SMTPAuthCommand.ERROR;
}, /^/);
-----------------------------------------------------------------------------------------------------------------------------
Please advise,
George Miller
[EMAIL PROTECTED]
_______________________________________________ Project_owners mailing list [email protected] http://mozdev.org/mailman/listinfo/project_owners
