Re: [PHP-DEV] PHP 4.0 Bug #9858 Updated: mail() still doesn't send cc

2001-03-22 Thread joel

Here's a book that might help with that. :)

Windows® 98 For Dummies®
http://www.amazon.com/exec/obidos/ASIN/0764502611/o/qid=985296635/sr=8-2/ref 
=aps_sr_b_1_2/002-0295853-6902432

[EMAIL PROTECTED]


At 03:01 PM 3/22/01 +0100, you wrote:
>Joey Smith wrote:
> >
> > I did find some oddities under win32 with the mail() function in
> > general. I spent much time just trying to get the build working again on
> > my win32 box. I will look into it later today, I hope.
> >
>
>i wantet to rework this for a long time now
>(and to get SMTP as an option for unix systems too)
>
>but i seem to be just to damn stupid to install point&click thingies :)
>
>
>--
>Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de +49-711-99091-77
>
>Besuchen Sie uns auf der CeBIT 2001 - in Halle 6 Stand F62/4
>
>--
>PHP Development Mailing List 
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]



--
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] PHP 4.0 Bug #9858 Updated: mail() still doesn't send cc

2001-03-20 Thread joel

Submitted twice for two different reasons!

Reason 1. performance problem

Reason 2. Incorrect documentation.

Actually I had reported that cc: didn't work about a year ago and someone 
else also dismissed it as being fixed or some such erroneous thing and 
filed it as fixed!

This ought to be reported ten times. Maybe it would get some attention.


 
-

At 10:30 AM 3/20/01 +, you wrote:
>ID: 9858
>Updated by: sniper
>Reported By: [EMAIL PROTECTED]
>Old-Status: Open
>Status: Bogus
>Bug Type: Performance problem
>Assigned To:
>Comments:
>
>submitted twice.
>
>
>
>Previous Comments:
>---
>
>[2001-03-20 01:45:26] [EMAIL PROTECTED]
>script example:
>
>--- 
>--
>
>
>$returnvar="false";
>
>
>
>$mailto="[EMAIL PROTECTED]";
>
>$mailsubject="cc test";
>
>$mailmessage="message content";
>
>$mailHeader="Cc:[EMAIL PROTECTED]";
>
>
>
>$returnvar=mail($mailto,$mailsubject,$mailmessage,$mailHeader);
>
>
>
>?>
>
>
>
>
>
>the mail was sent?
>
>
>echo "returnvar= $returnvar";
>
>?>
>
>
>
>
>
>--- 
>--
>
>The above does not send the carbon copy.
>
>
>
>I think the problem is here in win32 sendmail.c :
>
>
>
> if (headers && (pos1 = strstr(headers, "Cc:"))) {
>
> pos2 = strstr(pos1, "rn");
>
> tempMailTo = estrndup(pos1, pos2-pos1);
>
>
>
>Should be  tempMailTo = estrndup(pos1+2, pos2-pos1);
>
>I think since the pos of "Cc: would give the position of the first C in "Cc:".
>
>"headers" should also be made all upper case to catch the "cc" or the "CC"
>
>
>
>
>
>
>
>---
>
>
>
>ATTENTION! Do NOT reply to this email!
>To reply, use the web interface found at http://bugs.php.net/?id=9858&edit=2
>
>
>--
>PHP Development Mailing List 
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP Development Mailing List 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]