Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] mail: Missing required header field: "Date" #155

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ebirbe
Copy link

@ebirbe ebirbe commented Mar 2, 2023

Email notifications are being sent without an stablished Date. This causes smtp servers to reject the email.

Before

The message WAS NOT relayed to:
  <[email protected]>:
   554 5.6.0 Bounce, id=01728-01 - BAD HEADER

This nondelivery report was generated by the program amavisd-new at host
mail.mydomain.net. Our internal reference code for your message is
01728-01/xxxxxxxgoIb5

INVALID HEADER

  Missing required header field: "Date"

Return-Path: <[email protected]>
From: "xxxxxxx" <[email protected]>
Subject: aaPanel Alert Test Email

Selección_idpd3_183

After

Mime-Version: 1.0
Content-Transfer-Encoding: base64
From: "xxxxxxx" <[email protected]>
To: "xxxxxxx" <[email protected]>
Subject: aaPanel Alert Test Email

Selección_idpd3_184

Email notifications are being sent without an stablished Date. This causes smtp servers to reject the email.

# Before

```mail
The message WAS NOT relayed to:
  <[email protected]>:
   554 5.6.0 Bounce, id=01728-01 - BAD HEADER

This nondelivery report was generated by the program amavisd-new at host
mail.mydomain.net. Our internal reference code for your message is
01728-01/vP7QIKGgoIb5

INVALID HEADER

  Missing required header field: "Date"

Return-Path: <[email protected]>
From: "xxxxxxx" <[email protected]>
Subject: aaPanel Alert Test Email
```

## After

```mail
Mime-Version: 1.0
Content-Transfer-Encoding: base64
From: "xxxxxxx" <[email protected]>
To: "xxxxxxx" <[email protected]>
Subject: aaPanel Alert Test Email
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants