从端口 465 或 587 在 Google Compute Engine 上发送网格
Sendgrid on Google Compute Engine from port 465 or 587
我正在使用 rails 4 应用程序并尝试通过 SendGrid 发送电子邮件。我有来自 GCE 实例的应用程序 运行。
阅读 this google post about sending email through sendgrid, I noticed that they only use port 2525. I would like to connect via port 465 (or 587) because after reading 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.
谢谢。
据我所知,GCE只支持2525
TLS 应该在端口 2525 上工作。TLS 更新更频繁并且(到目前为止)发生过像 POODLE 这样的严重安全事件较少,因此 TLS 应该是首选。
GCE 不会以任何特定方式限制您在端口 2525 上的速率。
我正在使用 rails 4 应用程序并尝试通过 SendGrid 发送电子邮件。我有来自 GCE 实例的应用程序 运行。
阅读 this google post about sending email through sendgrid, I noticed that they only use port 2525. I would like to connect via port 465 (or 587) because after reading 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.
谢谢。
据我所知,GCE只支持2525
TLS 应该在端口 2525 上工作。TLS 更新更频繁并且(到目前为止)发生过像 POODLE 这样的严重安全事件较少,因此 TLS 应该是首选。
GCE 不会以任何特定方式限制您在端口 2525 上的速率。