ID:               25408
 Comment by:       ggdavid at newmail dot net
 Reported By:      zabihi at iranculture dot org
 Status:           Open
 Bug Type:         Mail related
 Operating System: Win2000 Adv. - SP4 - IIS5.0
 PHP Version:      4.3.3
 New Comment:

Yes, This is bug in PHP 4.3.3
I use php_imap.dll module from PHP 4.3.2 and use imap_mail() function
instead mail()


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

[2003-09-07 01:10:13] zabihi at iranculture dot org

Description:
------------
When body of message is more than 1024 characters, the 1024th character
is dropped when sending mail. This problem occurs with every 1024
characters in the body, so 2048th and 3072nd characters are also
dropped.
Mail server is MDaemon 6.7 and no error is reporting. 



Reproduce code:
---------------
$body="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890\n";
$body.=$body;
$body.=$body;
$body.=$body;
$body.=$body;
$body.=$body;
$body.=$body;
if (mail("[EMAIL PROTECTED]","Testing PHP Mail", $body, ""))
        echo "OK!";
else
        echo "Error!";



Expected result:
----------------
When we receive the message the following string should be repeated 64
times:
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"


Actual result:
--------------
When we receive the message the following string is repeated 64 times
but in line 17 the "P" character is dropped and in line 33 the "f"
character is dropped and so on:
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"


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


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

Reply via email to