ID: 12680
Updated by: alindeman
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Mail related
Operating System: Windows NT 4.0 SP6
PHP Version: 4.0.6
New Comment:

Does this happen with just PHP, or with any mail program
that you use?

Previous Comments:
------------------------------------------------------------------------

[2001-08-10 10:26:31] [EMAIL PROTECTED]

Yes, the timezone and time have been verified on the server and on my workstation.  
Both are set to CDT (-0500).

The test email reflected the correct timezone, but the PHP-created one did not.

------------------------------------------------------------------------

[2001-08-10 09:45:56] [EMAIL PROTECTED]

Is the timezone on your mailserver the same as the zone on your
computer???

------------------------------------------------------------------------

[2001-08-09 17:35:02] [EMAIL PROTECTED]

Here's the headers from the email I sent via telnet:

Return-Path: <[EMAIL PROTECTED]>
Received: from XXX.wcomnet.com ([XXX.XXX.XXX.XXX]) by
          XXX.wcomnet.com (Netscape Messaging Server 4.15) with ESMTP
          id GHTIG600.IEW for <[EMAIL PROTECTED]>; Thu, 9 Aug 2001
          20:33:42 +0000 
Return-path: [EMAIL PROTECTED]
Received: from CONVERSION-DAEMON by XXX.wcomnet.com (PMDF V5.2-33 #42262)
 id <[EMAIL PROTECTED]> for [EMAIL PROTECTED]; Thu,
 9 Aug 2001 20:33:42 +0000 (GMT)
Received: from XXX.wcomnet.com by XXX.wcomnet.com
 (PMDF V5.2-33 #42262) with SMTP id <[EMAIL PROTECTED]> for
 [EMAIL PROTECTED]; Thu, 09 Aug 2001 20:33:39 +0000 (GMT)
Received: from XXX.wcomnet.com ([XXX.XXX.XXX.XXX])
 by XXX.wcomnet.com (PMDF V5.2-33 #42262)
 with ESMTP id <[EMAIL PROTECTED]> for
 [EMAIL PROTECTED]; Thu, 09 Aug 2001 20:32:57 +0000 (GMT)
Received: from XXX.XXX.XXX.XXX by XXX.wcomnet.com  with Microsoft
 SMTPSVC(5.5.1774.114.11); Thu, 09 Aug 2001 15:24:25 -0500
Date: Thu, 09 Aug 2001 15:24:52 -0500
From: [EMAIL PROTECTED]
Bcc: 
Message-id: <[EMAIL PROTECTED]>

This is a test message 

------------------------------------------------------------------------

[2001-08-09 17:32:37] [EMAIL PROTECTED]

Here's headers from a bad email:

Return-Path: <[EMAIL PROTECTED]>
Received: from XXX.wcomnet.com ([XXX.XXX.XXX.XXX]) by
          XXX.XXX.XXX.XXX (Netscape Messaging Server 4.15) with
ESMTP
          id GHT2IQ00.KNI; Thu, 9 Aug 2001 14:49:38 +0000 
Return-path: [EMAIL PROTECTED]
Received: from CONVERSION-DAEMON by dgismtp03.wcomnet.com (PMDF V5.2-33
#42262)
 id <[EMAIL PROTECTED]>; Thu,
 9 Aug 2001 14:49:37 +0000 (GMT)
Received: from XXX.wcomnet.com by XXX.wcomnet.com
 (PMDF V5.2-33 #42262) with SMTP id
<[EMAIL PROTECTED]>;
 Thu, 09 Aug 2001 14:49:36 +0000 (GMT)
Received: from XXX.wcomnet.com ([XXX.XXX.XXX.XXX])
 by XXX.wcomnet.com (PMDF V5.2-33 #42262)
 with ESMTP id <[EMAIL PROTECTED]>; Thu,
 09 Aug 2001 14:49:14 +0000 (GMT)
Received: from XXX.XXX.XXX.XXX by XXX.wcomnet.com  with Microsoft
 SMTPSVC(5.5.1774.114.11); Thu, 09 Aug 2001 09:41:11 -0500
Date: Thu, 09 Aug 2001 09:41:11 +0600
From: [EMAIL PROTECTED]
Subject: XXX
X-Sender: <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Reply-to: [EMAIL PROTECTED]
Message-id: <[EMAIL PROTECTED]>

------------------------------------------------------------------------

[2001-08-09 17:27:30] [EMAIL PROTECTED]

Here's the portion of the script that governs mail:

if (isset($mail_from) || isset($mail_cc)) {
  $mail_headers = "From: $mail_from\r\nReply-to: $mail_from\r\n";

  if (isset($mail_cc) && ($mail_cc != "")) {
    $mail_headers = $mail_headers . "Cc: $mail_cc\r\n";
  }
}
else {
  $mail_headers = "";
}

if (isset($mail_to) && isset($mail_subject) && isset($mail_body) && 
isset($mail_headers) && ($submit == "Submit")) {

  mail($mail_to, $mail_subject, $mail_body, $mail_headers);



------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/?id=12680


Edit this bug report at http://bugs.php.net/?id=12680&edit=1


-- 
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