部署 Postfix,如何设置 DNS 指向服务器?

部署 Postfix,如何设置 DNS 指向服务器?

我已经设置了一个 postfix 服务器,在 Azure VM(Ubuntu)上监听端口 25。我刚刚使用了默认配置,但将域设置为我的域

示例.com

在DNS管理中,MX记录需要是什么样子的?它只是服务器的IP吗?

# example.com

mail         aaa.bbb.ccc.ddd

我已经遵循了一些教程,但似乎没有一个涵盖部署的所有方面,例如当某些云提供商阻止端口 25 时,我该如何设置中继?

有没有关于如何从头到尾设置带有域名的邮件服务器的好教程?

答案1

DNS 中的 MX 记录应如下所示:

Domain          TTL   Class    Type  Priority      Host
example.com.        1936    IN  MX  10         onemail.example.com
example.com.        1936    IN  MX  10         twomail.example.com

(来源这里

您还可以检查本文解释

<name>: The first field contains the domain name.  
<ttl>: Time to live specifies how long the information is guaranteed to be valid. 
<class>: The class field specifies the type of network.  
<type>: The DNS record type in this case is MX.  
<priority>: The smaller the value, the higher the mail server’s priority.  
<rdata>: Resource data defines the mail server name.

相关内容