I have a Meteor App that I put on their new Galaxy Platform that throws this error when attempting to send a verification email.
Exception while invoking method 'sendEmailVerificationMessage' Error: Greeting never received
at Object.Future.wait (/app/bundle/programs/server/node_modules/fibers/future.js:398:15)
The Meteor people said that it's an issue with my App but it works just fine both on my testing server and when deployed to Modulus. When checking the email server it never shows any attempt to send email from Galaxy.
My question is, is there any further testing that I can do to see exactly what the problem is, maybe some debugging code that I can add to the code?
process.env.MAIL_URL = 'smtp://' + encodeURIComponent(smtp.username)
+ ':' + encodeURIComponent(smtp.password) + '@'
+ encodeURIComponent(smtp.server) + ':25';