|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-03 20:59 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sun Mar 15 14:00:02 2026 UTC |
Description: ------------ In php.ini i'v defined a sendmail path so that any errormail have an "Return-Path:". php.ini: sendmail_path = /usr/sbin/sendmail -f error@inetsolutions.de with PHP 4.3.X it works fine but with 4.4.1: postfix at my "php-server" send a mail to the indicated mailadress (error@inetsolutions.de) <unknown>: No recipients specified How can i solve this? Is sendmail_path -f not present anymore? Reproduce code: --------------- mail("martin@inetsolutions.de", "test",$message,"From: info@inetsolutions.de\n"); Expected result: ---------------- An errormail was sent with <unknown>: No recipients specified