ssmtp:公司邮件服务器授权失败

ssmtp:公司邮件服务器授权失败

我们公司有自己的邮件服务器,我想从命令行向其发送邮件。我已经安装了 smtp 并对其进行了配置。

/etc/ssmtp/ssmtp.conf 中的配置

[email protected]
mailhub=mailserver.symantric.com:25
rewriteDomain=symantric.com
hostname=gtmpc
FromLineOverride=YES
AuthUser=username
AuthPass=password
UseSTARTTLS=YES
UseTLS=YES

/etc/ssmtp/revaliases 中的配置

root:[email protected]:mailserver.symantric.com:25
mainuser:[email protected]:mailserver.symantric.com:25

当我运行命令时:

echo "Test message from Linux server using ssmtp" | sudo ssmtp -vvv [email protected]

输出:

[<-] 220 mailserver.symantric.com ESMTP Postfix
[->] EHLO gtmpc
[<-] 250 DSN
[->] STARTTLS
[<-] 220 2.0.0 Ready to start TLS
[->] EHLO gtmpc
[<-] 250 DSN
[->] AUTH LOGIN
[<-] 334 VXNlcm5hbWU6
[->] Z2F5YXRyaS5wYXRlbA==
[<-] 334 UGFzc3dvcmQ6
[<-] 535 5.7.8 Error: authentication failed: authentication failure
ssmtp: Authorization failed (535 5.7.8 Error: authentication failed: authentication failure)

/var/log/syslog 的输出:

Dec 21 10:41:12 gtmpc sSMTP[23619]: Creating SSL connection to host
Dec 21 10:41:12 gtmpc sSMTP[23619]: SSL connection using RSA_AES_128_CBC_SHA1
Dec 21 10:41:12 gtmpc sSMTP[23619]: Authorization failed (535 5.7.8 Error: authentication failed: authentication failure)

相关内容