Browse Source

Changed parameters to sendmail.

gustavf 25 years ago
parent
commit
ddcdaa1fbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/smtp.php

+ 1 - 1
functions/smtp.php

@@ -161,7 +161,7 @@
       global $sendmail_path, $username, $domain;
       
       // open pipe to sendmail
-      $fp = popen (escapeshellcmd("$sendmail_path -t -f$username@$domain"), "w");
+      $fp = popen (escapeshellcmd("$sendmail_path -odb -oi -t -f$username@$domain"), "w");
       
       write822Header ($fp, $t, $c, $b, $subject);
       writeBody($fp, $body);