ID: 20538
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Bogus
+Status: Open
Bug Type: *Mail Related
Operating System: windows 2000/sp3
PHP Version: 4.2.3
New Comment:
Why not a bug? why bogus?
Please look at sendmail.c in win32 directory:
if (headers && (pos1 = strstr(headers, "Cc:"))) {
if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
tempMailTo = estrndup(pos1, strlen(pos1));
} else {
tempMailTo = estrndup(pos1, pos2-pos1);
}
token = strtok(tempMailTo, ",");
while(token != NULL)
{
sprintf(Buffer, "RCPT TO:<%s>\r\n", token);
if ((res = Post(Buffer)) != SUCCESS)
return (res);
if ((res = Ack()) != SUCCESS)
return (res);
token = strtok(NULL, ",");
}
efree(tempMailTo);
}
in this code, we can see, what in Buffer posts line like:
RCPT TO: <Cc: [EMAIL PROTECTED]> for first Cc: address and right string
for (RCPT TO: <[EMAIL PROTECTED]>)
it is really strange?
Right code:
if (headers && (pos1 = strstr(headers, "Cc:"))) {
pos1+=3;
if (NULL == (pos2 = strstr(pos1, "\r\n")))
......
after this procedure add:
pos1-=3;
Previous Comments:
------------------------------------------------------------------------
[2002-11-21 03:56:29] [EMAIL PROTECTED]
Sorry, but your problem does not imply a bug in PHP itself. For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.
Thank you for your interest in PHP.
------------------------------------------------------------------------
[2002-11-21 03:52:59] [EMAIL PROTECTED]
Hello!
I wrote small php script:
<?
error_reporting(E_ALL);
mail ('[EMAIL PROTECTED]','subject','body','Cc: [EMAIL PROTECTED]');
?>
When my SMTP server points to unix machine (sendmail/linux) all working
fine.
When I set SMTP server pointed to IIS5 SMTP server (localhost) I got
'Server Error message'.
any idea?
vladimir
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=20538&edit=1