--- ./inc/class.phpmailer.php 2004-07-31 16:41:26.000000000 +0200 +++ ./inc/class.phpmailer.php 2004-07-31 16:34:34.000000000 +0200 @@ -406,7 +406,9 @@ if ($this->Sender != "") $sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail, $this->Sender); else - $sendmail = sprintf("%s -oi -t", $this->Sendmail); + /* XXX coderock hack */ + //$sendmail = sprintf("%s -oi -t", $this->Sendmail); + $sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail, $this->From); if(!@$mail = popen($sendmail, "w")) {