Backport a fix for qmail from PHPMailer upstream.
props bpetty. fixes #25014. Built from https://develop.svn.wordpress.org/trunk@25682 git-svn-id: http://core.svn.wordpress.org/trunk@25598 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aef18d93cb
commit
e46b819bb6
|
@ -923,9 +923,9 @@ class PHPMailer {
|
|||
$to = implode(', ', $toArr);
|
||||
|
||||
if (empty($this->Sender)) {
|
||||
$params = "-oi ";
|
||||
$params = " ";
|
||||
} else {
|
||||
$params = sprintf("-oi -f%s", $this->Sender);
|
||||
$params = sprintf("-f%s", $this->Sender);
|
||||
}
|
||||
if ($this->Sender != '' and !ini_get('safe_mode')) {
|
||||
$old_from = ini_get('sendmail_from');
|
||||
|
|
Loading…
Reference in New Issue