我的域名(contact@mybus.com)有一个gmail帐户我也在DigitalOcean有我的网站,后缀工作正常。
我的域名“www.mybus.com”将他的dns指向我在DigitalOcean的网站,我想使用我的Gmail帐户接收和发送电子邮件而不是postfix,我该如何配置才能执行此操作?
另一个问题是,可以在gmail帐户接收电子邮件并在DigitalOcean上发送后缀吗?
谢谢!
答案 0 :(得分:0)
要解决这个问题,我使用我的域名登录谷歌的帐户,并获得谷歌的测试域名,例如: contact@mybus.com.test-google-a.com
我将收到的所有电子邮件转发到上面的域,此配置是在DigitalOcean的postfix中进行的。
现在,我在DigitalOcean上使用postfix接收和发送电子邮件,并使用gmail服务查阅我的电子邮件。
=)
答案 1 :(得分:0)
在postfix中将以下内容添加到main.cf
install
yum -y install cyrus-sasl cyrus-sasl-plain
myhostname=<hostname>
relayhost = [smtp.gmail.com]:587
smtp_use_tls = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_tls_CAfile = /etc/ssl/certs/ca-bundle.crt
smtp_tls_security_level = encrypt
/etc/postfix/sasl_passwd
add gmail account details to above file
[smtp.gmail.com]:587 xxxxx@gmail.com:passwd
use postmap to create db
postmap sasl_passwd
然后重新启动后缀 这应该工作。