in the version 2.17 the fileclass\mail\phpmailer\class.phpmailer.php line 437
have the folowing code :
$params = sprintf("-oi -f %s", $this->Sender);
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header, $params);
But this function doesn't works, the mail are not send.
.... I have modified the code and now it work , i can send mail :
// $params = sprintf("-oi -f %s", $this->Sender);
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header, $this->Sender);