On Tue, 22 May 2001, Boian Bonev wrote:

> hi,
>
> then maybe close the related bug 10136...
>
> although it would be better if win32 smtp code is made more consistent and
> compatible with the unix sendmail one

Making Cc and cc both work is a one-line fix. (Patch attached, but as I
can not test this, I didn't commit). But while looking at the
code, I see nothing about Bcc. Strange, or I'm i missing something?

Derick Rethans

---------------------------------------------------------------------
        PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
             SRM: Site Resource Manager - www.vl-srm.net
---------------------------------------------------------------------
Index: sendmail.c
===================================================================
RCS file: /repository/php4/win32/sendmail.c,v
retrieving revision 1.20
diff -r1.20 sendmail.c
255c255,256
<       if (headers && (pos1 = strstr(headers, "Cc:"))) {
---
>       if (headers && 
>       ((pos1 = strstr(headers, "Cc:")) || (pos1 = strstr(headers, "cc:")))) {
-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to