我有一台运行 postfix 的 Ubuntu 服务器。它不是我的域的邮件服务器。
每当 root 运行 cron 作业时,输出邮件不会在本地传送,而是发送到[电子邮件保护]通过主邮件服务器。这不是我想要的。
我希望 root 的邮件可以本地投递或转发到[电子邮件保护]。
我尝试修改~root/.forward
和/etc/aliases
(并运行 newaliases),但没有任何帮助(我猜只有当 postfix 尝试在本地传递邮件时才会检查这些文件)。
我能做些什么?
这是/etc/postfix/main.cf
:
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
append_dot_mydomain = no
readme_directory = no
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
myhostname = linux1.mydomain.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = linux1.mydomain.com, localhost.linux1.mydomain.com, localhost
relayhost = my.isps.relayhost.com
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
编辑:
当向 root 发送邮件时,其内容如下/var/log/mail.log
:
Mar 7 09:39:17 linux1 postfix/pickup[31381]: F3B9C98025E: uid=1000 from=<ct>
Mar 7 09:39:18 linux1 postfix/cleanup[31556]: F3B9C98025E: message-id=<[email protected]>
Mar 7 09:39:18 linux1 postfix/qmgr[28525]: F3B9C98025E: from=<[email protected]>, size=283, nrcpt=1 (queue active)
Mar 7 09:39:18 linux1 postfix/smtp[31558]: F3B9C98025E: to=<[email protected]>, orig_to=<root>, relay=my.isps.relayhost.com[<IP address omitted>]:25, delay=0.72, delays=0.19/0.02/0.27/0.25, dsn=2.0.0, status=sent (250 Ok: queued as A97F5D8126)
Mar 7 09:39:18 linux1 postfix/qmgr[28525]: F3B9C98025E: removed
“ct”这个名字是我的用户名。我通过这个命令生成了上面的文本:
echo test | mail -s test root
的内容/etc/mailname
为:
mydomain.com
的内容/etc/aliases
为:
root: [email protected]
postmaster: root
在哪里[电子邮件保护]是我希望 root 的邮件转发到的地方。
其内容/etc/hosts
确实让我有些吃惊:
127.0.0.1 localhost
127.0.1.1 linux1.mylinux.mydomain.com linux1
其中“mylinux”是主机操作系统的主机名,linux1 在该操作系统下作为虚拟机运行。我不确定“mylinux”是怎么进来的。(但这真的是我的问题的原因吗?)
答案1
像往常一样,检查您的日志。
在你的情况下,postfix 守护进程认为邮件不是发给它的,所以不使用/etc/aliases
首先检查您的/etc/hosts
文件:它应该有与您的机器名称相对应的127.0.1.1
,如下所示:
127.0.1.1 linux1.mydomain.com linux1
检查/etc/mailname
一下你的,它应该是一致的。
检查您的/etc/aliases
root(用户)是否已被发送给另一个用户,然后重执行该newaliases
命令。
它应该可以工作!
答案2
如果mydestination
为空或不包含,$myhostname
则将/etc/aliases
忽略,因为 postfix 认为电子邮件不是本地投递,因此不会应用本地别名。因此,保留mydestination
默认值(postconf -d mydestination
或从中删除main.cf
),日志应显示to=<...>
为您的别名地址。
答案3
在某些情况下(即所有邮件都会转发到外部系统),将MAILTO
root 的 crontab 中的变量设置为真实电子邮件地址会更简单。这应该可以基本绕过传统的向 root 发送邮件的方式,直接将其发送到您想要的地方。
# Root's crontab
[email protected]
0 0 * * * /usr/bin/somescript
答案4
如果您恰好设置了目标域过滤,/etc/postfix/transport
则需要将机器的子域添加到允许域列表中。如果您正在使用某些 VPS,并且托管服务提供商已为您的系统分配了一些自动内部域名,那么您可能也需要添加它。
例如,如果你有:
mydomain.com :
anotherdomain.com :
* discard:
更新为:
uvn-12-34.am01.hostingvs.eu :
linux1.mylinux.mydomain.com :
mydomain.com :
anotherdomain.com :
* discard:
如果没有此更新,中的 行 或中的类似行 就不会达到预期的最终效果,因为消息在转发之前就被丢弃了。root: [email protected]
/etc/aliases
.forward