|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchespatch2 (last revision 2011-08-22 13:18 UTC by ava3ar at gmail dot com)Patch-by-Keloran-ava3ar-at-gmail-com (last revision 2011-08-04 16:18 UTC by pajoye@php.net) Pull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2004-12-27 18:03 UTC] info at todoo dot com
[2004-12-27 22:37 UTC] sirber at gmail dot com
[2005-01-19 14:37 UTC] sniper@php.net
[2010-03-20 21:46 UTC] mvanbeek at supporting-role dot co dot uk
[2011-08-04 16:18 UTC] pajoye@php.net
[2011-08-04 20:44 UTC] ava3ar at gmail dot com
[2012-04-11 23:17 UTC] johannes@php.net
[2012-07-07 20:03 UTC] stas@php.net
[2012-07-07 20:03 UTC] stas@php.net
-Status: Wont fix
+Status: Feedback
[2013-02-18 00:09 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 00:00:01 2025 UTC |
Description: ------------ Using imap_mail, and using the rpath setting, the mail I set is not used. Thanks St?phane B?rub? SW: PHP 4.3.9 * Runs on "apache" user Exim 4.42 * /usr/sbin/exim -bd -q15m * Runs on "mail" user * Special config: trusted_users = apache Reproduce code: --------------- $to = "xxx@yyy.com"; $sujet = "test"; $mime = "[headers and mime encoded message]"; $cc = ""; $cci = ""; $from = "zzz@aaa.com"; function imap_send ($to, $sujet, $mime, $cc, $cci, $from) { imap_mail ($to, $sujet, "", $mime, $cc, $cci, $from); } Expected result: ---------------- Return-path: <zzz@aaa.com> Actual result: -------------- Return-path: <apache@webernic.com>