mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 07:18:39 +08:00
Fix 'Mime-Version' case
As per RFC 2045, the correct way is "MIME-Version". At least one email filter (Rspamd) is known to penalize the wrong case.
This commit is contained in:
parent
840991a63a
commit
e1b67a4815
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class Header
|
|||
const DISPOSITION_NOTIFICATION_TO = 'Disposition-Notification-To';
|
||||
const X_CONFIRM_READING_TO = 'X-Confirm-Reading-To';
|
||||
|
||||
const MIME_VERSION = 'Mime-Version';
|
||||
const MIME_VERSION = 'MIME-Version';
|
||||
const X_MAILER = 'X-Mailer';
|
||||
|
||||
const X_MSMAIL_PRIORITY = 'X-MSMail-Priority';
|
||||
|
|
Loading…
Reference in a new issue