Monit 将主机名添加到邮件服务器并创建用户名

Monit 将主机名添加到邮件服务器并创建用户名

我是 Monit 的新手,尝试在我的 CentOS7 VPS 上进行设置。我进行了以下设置monitrc

set mailserver 127.0.0.1
set alert [email protected]

但是电子邮件失败了,并且输入的内容maillog很奇怪:

Feb 26 10:47:23 puphpet2 postfix/smtp[11673]: 8B66C18D8: to=<[email protected]>, relay=none, delay=2.2, delays=0/0.01/2.1/0, dsn=5.4.4, status=bounced (Host or domain name not found. Name service error for name=puphpet2.thisdomain.com type=AAAA: Host not found)

当然找不到这样的主机 -puphpet2这只是我的 VPS 的主机名,而不是子域。而且没有monit用户,更不用说邮箱了。Monit 到底想做什么?

我试过了set mailserver mail.thisdomain.com,但得到的是相同的日志条目。

如果我去本地(),它就可以工作——这里是一系列日志条目:set alert [email protected]

Feb 26 11:24:33 puphpet2 postfix/smtpd[13965]: connect from localhost[127.0.0.1]
Feb 26 11:24:33 puphpet2 postfix/smtpd[13965]: 65443879: client=localhost[127.0.0.1]
Feb 26 11:24:33 puphpet2 postfix/cleanup[13968]: 65443879: message-id=<1519611873.159354611@puphpet2>
Feb 26 11:24:33 puphpet2 postfix/qmgr[14340]: 65443879: from=<[email protected]>, size=669, nrcpt=1 (queue active)
Feb 26 11:24:33 puphpet2 postfix/smtpd[13965]: disconnect from localhost[127.0.0.1]
Feb 26 11:24:33 puphpet2 postfix/local[13969]: 65443879: to=<[email protected]>, relay=local, delay=0.09, delays=0.05/0.02/0/0.01, dsn=2.0.0, status=sent (delivered to maildir)
Feb 26 11:24:33 puphpet2 postfix/qmgr[14340]: 65443879: removed

[email protected]是一个奇怪的发件人地址,但至少电子邮件被送达了。但是将警报发送到服务器之外不是更明智吗?

答案1

可能是您没有设置发件人,因此 Monit 会自动构建发件人,并且精心制作的电子邮件会被电子邮件服务器拒绝。

 set mail-format { from: [email protected] }

 SET MAILSERVER
    <hostname|ip-address>
    [PORT number]
    [USERNAME string] [PASSWORD string]
    [using SSL [with options {...}]
    [CERTIFICATE CHECKSUM [MD5|SHA1] <hash>],
    ...
    [with TIMEOUT X SECONDS]
    [using HOSTNAME hostname]

相关内容