Postfix 服务器仅尝试连接(被阻止的)端口 25,而不是配置中设置的 587

Postfix 服务器仅尝试连接(被阻止的)端口 25,而不是配置中设置的 587

我刚刚完成了在 GCP Compute Engine 上运行的 postfix/dovecot 邮件服务器的安装。

接收电子邮件按预期工作,但发送邮件时遇到困难。据我了解,GCP 阻止了端口 25,因此我更改了配置,尝试改为通过 587 运行。

但是,尽管运行了postfix reloadsystemctl restart dovecotreboot更改似乎没有生效,postfix 似乎仍尝试通过端口 25 进行通信,如下所示。

Mar  1 10:44:45 ubuntu postfix/smtp[1942]: connect to gmail-smtp-in.l.google.com[2607:f8b0:4001:c07::1b]:25: Network is unreachable
Mar  1 10:45:15 ubuntu postfix/smtp[1942]: connect to gmail-smtp-in.l.google.com[172.217.214.27]:25: Connection timed out
Mar  1 10:45:45 ubuntu postfix/smtp[1942]: connect to alt1.gmail-smtp-in.l.google.com[173.194.77.27]:25: Connection timed out
Mar  1 10:45:45 ubuntu postfix/smtp[1942]: connect to alt1.gmail-smtp-in.l.google.com[2607:f8b0:4023:401::1a]:25: Network is unreachable
Mar  1 10:45:45 ubuntu postfix/smtp[1942]: connect to alt2.gmail-smtp-in.l.google.com[2607:f8b0:4002:c08::1a]:25: Network is unreachable
Mar  1 10:45:45 ubuntu postfix/smtp[1942]: 74407410F1: to=<my@email>, relay=none, delay=5266, delays=5206/0.02/60/0, dsn=4.4.1, status=deferred (connect to alt2.gmail-smtp-in.l.google.com[2607:f8b0:4002:c08::1a]:25: Network is unreachable)

我可以telnet在我的服务器上进入 587 并接收我期望的横幅,只是好像邮件服务器没有尝试使用 587。正如您在上面的日志中所看到的,每次它尝试连接时都会超过 :25。

如果任何人能提供任何指导我将不胜感激,但如果可能的话我会尽量避免使用中继。

我的主配置如下。

主配置文件

#
# Postfix master process configuration file.  For details on the format
# of the file, see the master(5) manual page (command: "man 5 master" or
# on-line: http://www.postfix.org/master.5.html).
#
# Do not forget to execute "postfix reload" after editing this file.
#
# ==========================================================================
# service type  private unpriv  chroot  wakeup  maxproc command + args
#               (yes)   (yes)   (no)    (never) (100)
# ==========================================================================
587       inet  n       -       y       -       -       smtpd
smtp      inet  n       -       y       -       1       postscreen
smtpd     pass  -       -       y       -       -       smtpd
dnsblog   unix  -       -       y       -       0       dnsblog
tlsproxy  unix  -       -       y       -       0       tlsproxy
submission inet n       -       y       -       -       smtpd
#  -o syslog_name=postfix/submission
#  -o smtpd_tls_security_level=encrypt
#  -o smtpd_sasl_auth_enable=yes
#  -o smtpd_tls_auth_only=yes
#  -o smtpd_reject_unlisted_recipient=no
#  -o smtpd_client_restrictions=$mua_client_restrictions
#  -o smtpd_helo_restrictions=$mua_helo_restrictions
#  -o smtpd_sender_restrictions=$mua_sender_restrictions
#  -o smtpd_recipient_restrictions=
#  -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
#  -o milter_macro_daemon_name=ORIGINATING
#smtps     inet  n       -       y       -       -       smtpd
#  -o syslog_name=postfix/smtps
#  -o smtpd_tls_wrappermode=yes
#  -o smtpd_sasl_auth_enable=yes
#  -o smtpd_reject_unlisted_recipient=no
#  -o smtpd_client_restrictions=$mua_client_restrictions
#  -o smtpd_helo_restrictions=$mua_helo_restrictions
#  -o smtpd_sender_restrictions=$mua_sender_restrictions
#  -o smtpd_recipient_restrictions=
#  -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
#  -o milter_macro_daemon_name=ORIGINATING
#628       inet  n       -       y       -       -       qmqpd
pickup    unix  n       -       y       60      1       pickup
cleanup   unix  n       -       y       -       0       cleanup
qmgr      unix  n       -       n       300     1       qmgr
#qmgr     unix  n       -       n       300     1       oqmgr
tlsmgr    unix  -       -       y       1000?   1       tlsmgr
rewrite   unix  -       -       y       -       -       trivial-rewrite
bounce    unix  -       -       y       -       0       bounce
defer     unix  -       -       y       -       0       bounce
trace     unix  -       -       y       -       0       bounce
verify    unix  -       -       y       -       1       verify
flush     unix  n       -       y       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
proxywrite unix -       -       n       -       1       proxymap
smtp      unix  -       -       y       -       -       smtp
relay     unix  -       -       y       -       -       smtp
        -o syslog_name=postfix/$service_name
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       y       -       -       showq
error     unix  -       -       y       -       -       error
retry     unix  -       -       y       -       -       error
discard   unix  -       -       y       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       y       -       -       lmtp
anvil     unix  -       -       y       -       1       anvil
scache    unix  -       -       y       -       1       scache
#

答案1

main.cf您的 Postfix 安装中,确保您有类似这样的一行:

relayhost = [relayserver.somedomain.com]:587

这自然要求您拥有一个中继主机才能以这种方式实际使用。我想 Google 确实允许您通过他们的邮件服务中继出站邮件。

相关内容