0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 01:52:15 +02:00
This commit is contained in:
Marcus Bointon 2020-03-14 15:23:48 +01:00
parent 2e727253d6
commit a8bf068f64
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
5 changed files with 9 additions and 6 deletions

View File

@ -1 +1 @@
6.1.4
6.1.5

View File

@ -1,12 +1,15 @@
# PHPMailer Change Log
## Version 6.1.5 (March 14th, 2020
* Reject invalid custom headers that are empty or contain breaks
* Various fixes for DKIM issues, especially when using `mail()` transport
* Drop the `l=` length tag from DKIM signatures; it's a mild security risk
* Ensure CRLF is used explicitly when needed, rather than `static::$LE`
* Add a method for trimming header content consistently
* Some minor tweaks to resolve static analyser complaints.
* Check that attachment files are readable both when adding and when sending
* Some minor tweaks to resolve static analyser complaints
* Check that attachment files are readable both when adding *and* when sending
* Work around Outlook bug in mishandling MIME preamble
* Danish translation improvements
## Version 6.1.4 (December 10th, 2019)
* Clean up hostname handling

View File

@ -745,7 +745,7 @@ class PHPMailer
*
* @var string
*/
const VERSION = '6.1.4';
const VERSION = '6.1.5';
/**
* Error severity: message only, continue processing.

View File

@ -45,7 +45,7 @@ class POP3
*
* @var string
*/
const VERSION = '6.1.4';
const VERSION = '6.1.5';
/**
* Default POP3 port number.

View File

@ -34,7 +34,7 @@ class SMTP
*
* @var string
*/
const VERSION = '6.1.4';
const VERSION = '6.1.5';
/**
* SMTP line break constant.