ZP-828 Remove assigning variables to themselves. Released under the Affero GNU...

ZP-828 Remove assigning variables to themselves. Released under the Affero GNU General Public License (AGPL) version 3.
parent b127b721
......@@ -219,14 +219,6 @@ class BackendIMAP extends BackendDiff implements ISearchProvider {
}
unset($Mail_RFC822);
// overwrite CC and BCC with the decoded versions, because we will parse/validate the address in the sending method
if (isset($message->headers["cc"])) {
$message->headers["cc"] = $message->headers["cc"];
}
if (isset($message->headers["bcc"])) {
$message->headers["bcc"] = $message->headers["bcc"];
}
$this->setReturnPathValue($message->headers, $fromaddr);
$finalBody = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment