如何使用 Heroku 自定义域设置电子邮件服务?
我刚刚开始使用 Heroku 进行开发,但一直专注于如何使用指向 Heroku 服务的相同域的电子邮件服务,例如 mydomain.com -> Heroku 应用程序。
我想使用 mydomain.com 提供电子邮件服务,[电子邮件受保护]
。我该怎么做?
I just started out developing with Heroku, but stuck on how to have email service with the same domain that is pointing to Heroku services, e.g. mydomain.com -> Heroku apps.
I want to have email service with mydomain.com, perhaps, [email protected]
. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现了一篇很好的博客文章,向您展示了如何使用 Google Apps、Heroku 和 Heroku Zerigo 插件来执行此操作。我发现这对于我正在开发的应用程序的设置非常有用,而且效果很好。
http://xtargets. com/2010/10/04/using-gmail-for-email-on-a-heroku-management-domain/
I found a good blog post that shows you how to do this using Google Apps, Heroku, and the Heroku Zerigo addon. I found this pretty useful in setting this up for an app I'm working on and it works great.
http://xtargets.com/2010/10/04/using-gmail-for-email-on-a-heroku-managed-domain/
在您的域名控制面板中,您只需为您的网站
www.mysite.com
创建一个 CNAME 条目到proxy.heroku.com
并添加 Heroku 自定义域插件并添加www.mysite.com 作为命名站点,然后您将创建指向您的邮件主机的 MX 记录 - Heroku 不提供电子邮件托管,因此您需要使用另一方。例如,我们的大多数客户都使用 Google Apps 进行邮件托管,因此 MX 记录指向 Google。约翰.
In your domain name control panel you would simply create a CNAME entry for your website
www.mysite.com
toproxy.heroku.com
and add the Heroku custom domains addon and add www.mysite.com as a named site and then you'd create MX records pointing at your mailhost - Heroku don't provide email hosting so you need to use another party. For example most of our clients we use Google Apps for mail hosting so the MX records are pointing at Google.John.
无论如何,如果您需要电子邮件服务,您不应该为 MX 记录所在的同一域设置 CNAME 记录,因为 CNAME 记录将始终被覆盖。
In any case if you want e-mail service you should not setup a CNAME record for the same domain that your MX record is on, because the CNAME record will always override.