Browse Source

Merge pull request #2021 from ipalaus/fix/sendmail-config

The default sendmail path must contain '-bs' or '-t' flags.
Taylor Otwell 11 years ago
parent
commit
2e65a168dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/config/mail.php

+ 1 - 1
app/config/mail.php

@@ -106,6 +106,6 @@ return array(
 	|
 	*/
 
-	'sendmail' => '/usr/sbin/sendmail',
+	'sendmail' => '/usr/sbin/sendmail -bs',
 
 );