我正在使用rails 4 app并尝试通过SendGrid发送电子邮件。我有一个从GCE实例运行的应用程序。
在阅读有关通过sendgrid发送电子邮件的this google post后,我注意到他们只使用端口2525.我想通过端口465(或587)连接,因为在阅读this sendgrid post之后我才知道只有SendGrid允许通过此端口进行SSL连接。它还建议使用端口587 to avoid any rate limiting that your server host may apply.
有没有办法在GCE实例上使用2525以外的端口?
Google Compute Engine does not allow outbound connections on ports 25, 465,
and 587 but you can still set up your instances to send mail through ports 587
and 465 using servers provided through partner services, such as SendGrid.
感谢。
答案 0 :(得分:1)
据我所知,GCE仅支持2525。
TLS应该在端口2525上工作.TLS更频繁地更新,并且(到目前为止)已经有更少的严重安全事件,如POODLE,因此应首选TLS。
GCE不会以任何特定方式对您在2525端口进行限速。