From dec1eaa418898d5d77e803a1f8db4e792907822a Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Thu, 6 Aug 2020 09:22:24 -0500 Subject: [PATCH] docs: adds CHANGELOG entry for #104 Signed-off-by: Matthew Weier O'Phinney --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ec4d761..32df7d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ All notable changes to this project will be documented in this file, in reverse - [#103](https://github.com/laminas/laminas-mail/pull/103) fixes issues on Windows whereby the "Subject" and "To" headers were duplicated. +- [#104](https://github.com/laminas/laminas-mail/pull/104) fixes an issue that occured when the `Sendmail` transport was configured with a `-f` option (From address). Prior to the fix, the option would be overwritten by the message `From` or `Sender` headers, which could lead to errors on systems where all mail must be sent from a specific address. The fixed behavior is to always honor the `-f` option, and ignore the `From` and `Sender` headers if it was provided to the transport. + ## 2.12.1 - 2020-08-05 ### Added