Validation from Secured EC2 #26
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: karolyi/py3-validate-email#26
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi, quick question regarding validation from my HTTPS EC2. I'll start by saying all works perfectly locally, so I'm wondering if you've had this issue before or have any tips when using on AWS.
I have opened port 25 on my ec2's security group for all inbound requests (all outbound requests open as well). Additionally, I can send emails using Gmail's smtp server successfully from my EC2. In the mean time I have contacted AWS to ask if there are any restrictions in place that they can lift. Below is my error:
Any help is greatly appreciated (note: I have also read through the other issue on the repo https://github.com/karolyi/py3-validate-email/issues/19).
Thanks!
Hey,
What is this exactly? never heard about it before.
As for the network unreachable error, it is what it says, you can't reach that port, apparently. What you can try to see that it's not just the validator, is to log into one of the EC2 instances and use the telnet command to see if the connection establishes. For example,
telnet alt3.gmail-smtp-in.l.google.com 25
, and look at what output it gives you.Hey @karolyi thanks for the follow up. Just wanted to update you that AWS got back to me and it was indeed a restriction on SMTP outside of the obvious port 25 opening on the security group. All working now!
For anyone seeing this later, if you're having issues using this with your EC2 contact AWS using this form https://console.aws.amazon.com/support/contacts?#/rdns-limits, and ask them to remove the email sending limitations on your elastic IP.