We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using Drywall, and found problem while try to send an email.
The error is "bad response on command 'helo' " which came from emailjs.
I dig a bit to the code and found that's It's look like a problem from parsing response from zoho.
send: ehlo mysender receive: 2 send: helo mysender receive: 50-mx.zohomail.com Hello mysender (myip-address (myip-address))
As you can see, the response was splited for some reason. It's should be :
250-mx.zohomail.com Hello mysender (myip-address (myip-address))
my configuration: { host: smtp.zoho.com, ssl: true, user: 'my@email.com', password: 'my-password' }
tested on Debian 8.2 64bit (Digital Ocean)
I will check again when i have times. Or if someone know how to fix this please let me know.
Cheers, Merry christmas and Happy new year to you all.
The text was updated successfully, but these errors were encountered:
#140 fix the problem.
Sorry, something went wrong.
No branches or pull requests
I'm using Drywall, and found problem while try to send an email.
The error is "bad response on command 'helo' " which came from emailjs.
I dig a bit to the code and found that's It's look like a problem from parsing response from zoho.
send: ehlo mysender
receive: 2
send: helo mysender
receive: 50-mx.zohomail.com Hello mysender (myip-address (myip-address))
As you can see, the response was splited for some reason.
It's should be :
250-mx.zohomail.com Hello mysender (myip-address (myip-address))
my configuration:
{
host: smtp.zoho.com,
ssl: true,
user: 'my@email.com',
password: 'my-password'
}
tested on Debian 8.2 64bit (Digital Ocean)
I will check again when i have times. Or if someone know how to fix this please let me know.
Cheers, Merry christmas and Happy new year to you all.
The text was updated successfully, but these errors were encountered: