I have a customer who has an application sending emails via a cPanel server. For many years they have had no issues sending to GMAIL but recently have been getting this error.
550-5.7.1 This message is not RFC 5322 compliant. There are multiple To headers. 550-5.7.1 To reduce the amount of spam sent to Gmail, this message has been 550-5.7.1 blocked. Please visit 550 5.7.1 https://support.google.com/mail/?p=RfcMessageNonCompliant
It appears this issue is caused because their application is putting multiple TO lines in the header of the email like such:
RCPT TO: [email protected]
RCPT TO: [email protected]
So they have tried to reformat the header like such:
RCPT TO: [email protected], [email protected]
But the server is responding with the following:
501 [email protected], [email protected]: malformed address: ,
[email protected] may not follow [email protected]
From what I can tell the comma separated list of emails should be supported by exim so I am not sure what might be causing this issue or how to properly format the email to accept multiple emails on the TO line.
Any thoughts?
550-5.7.1 This message is not RFC 5322 compliant. There are multiple To headers. 550-5.7.1 To reduce the amount of spam sent to Gmail, this message has been 550-5.7.1 blocked. Please visit 550 5.7.1 https://support.google.com/mail/?p=RfcMessageNonCompliant
It appears this issue is caused because their application is putting multiple TO lines in the header of the email like such:
RCPT TO: [email protected]
RCPT TO: [email protected]
So they have tried to reformat the header like such:
RCPT TO: [email protected], [email protected]
But the server is responding with the following:
501 [email protected], [email protected]: malformed address: ,
[email protected] may not follow [email protected]
From what I can tell the comma separated list of emails should be supported by exim so I am not sure what might be causing this issue or how to properly format the email to accept multiple emails on the TO line.
Any thoughts?