我正在尝试在我的域名(wixencafe.net)上设置一个 smtp 服务器,并且我正在使用 postfix 来实现它。
首先,postfix 会传递来自外部的电子邮件,也就是说,如果我从 gmail.com 向 wixencafe.net 发送电子邮件,我会在我的邮箱中收到该电子邮件/
第二件事是,如果我从 wixencafe.net(从服务器 cli 通过 mutt -f Maildir/)向 gmail.com 发送一封电子邮件,我也会收到,所以我想这意味着一切正常。
现在,我的问题是,如果我尝试从我的桌面发送电子邮件(它与我的服务器不在同一网络上),它就是不起作用。从 thunderbird 发送时,我收到传递错误,从 a 发送时,telnet wixencafe.net 25
我收到超时错误。
现在这是我的 /etc/postfix/main.cf 配置,如果您需要任何其他文件请告诉我...
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
myorigin = wixencafe.net
myhostname = localhost
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no
home_mailbox = Maildir/
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
readme_directory = no
# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = wixencafe.net, localhost.localdomain, localhost.localdomain, localhost
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
## anti spam settings
smtpd_recipient_restrictions = reject_invalid_hostname,
reject_unknown_recipient_domain,
reject_unauth_destination,
reject_rbl_client sbl.spamhaus.org,
permit
smtpd_helo_restrictions = reject_invalid_helo_hostname,
reject_non_fqdn_helo_hostname,
reject_unknown_helo_hostname
谢谢...
编辑:在这里找到答案:http://forum.linode.com/viewtopic.php?p=53456&sid=7848e2ef010c93662255db67d5522aee,这只是我家里的 ISP 在 25 端口上阻止连接的一个简单问题...谢谢,祝你好运!
答案1
由于您的“mynetworks”中只有 localhost,因此 postfix 可能会拒绝来自您桌面的电子邮件。请查看 postfix 错误日志以获取更多信息。
将桌面的网络添加到 main.cf 中的“mynetworks”,然后再次尝试发送电子邮件。
答案2
在这里找到答案:http://forum.linode.com/viewtopic.php?p=53456&sid=7848e2ef010c93662255db67d5522aee,这只是我家里的 ISP 在 25 端口上阻止连接的一个简单问题...谢谢,祝你好运!