Jonathan Hurley created AMBARI-13540:
----------------------------------------
Summary: Emails Dispatched From Ambari Are Not RFC 2822 Compliant
And May Be Rejected
Key: AMBARI-13540
URL: https://issues.apache.org/jira/browse/AMBARI-13540
Project: Ambari
Issue Type: Bug
Components: ambari-server
Affects Versions: 2.0.0
Reporter: Jonathan Hurley
Assignee: Jonathan Hurley
Priority: Critical
Fix For: 2.1.3
When dispatching alert emails through some servers they are rejected with:
{code}
<[email protected]>: host smtp.apache.org1.2.3.4 said:
550-5.7.1 1.2.3.4 11 Our system has detected that this
message is 550-5.7.1 not RFC 2822 compliant. To reduce the amount of spam
sent to Gmail, 550-5.7.1 this message has been blocked. Please review 550
5.7.1 RFC 2822 specifications for more information. f188si13510144qhe.108
{code}
This is because strict RFC 2822 compliance expects the {{From}} and {{To}}
headers in the data of the message body as opposed to the {{MAIL FROM}} and
{{RCPT TO}} directives.
{code:title=Rejected}
>telnet smtp.ambari.apache.org 25
EHLO
MAIL FROM: [email protected]
RCPT TO: [email protected]
DATA
Subject: Test message with From and To header
Test.
.
QUIT
{code}
{code:title=Accepted}
>telnet smtp.ambari.apache.org 25
EHLO
MAIL FROM: [email protected]
RCPT TO: [email protected]
DATA
From: [email protected]
To: [email protected]
Subject: Test message with From and To header
Test.
.
QUIT
{code}
We should be setting the headers on the {{MimeMessage}} as well.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)