ID: 25668 Updated by: [EMAIL PROTECTED] Reported By: robbix at web dot de -Status: Open +Status: Closed Bug Type: Mail related Operating System: Windows 2K Server PHP Version: 4.3.3 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2003-09-26 07:40:38] robbix at web dot de Description: ------------ After upgrading from 4.3.1 to 4.3.3 the mail-function swallows every 1004th character you try to send. When switching back to 4.3.1 everything works fine again. This could be a side-effect of the socket-problems in 4.3.3 . Reproduce code: --------------- <?php $body = ""; for ($i=0;$i<100;$i++) { $body .= "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 "; } mail( "[EMAIL PROTECTED]", "Test", $body, "" ); ?> Expected result: ---------------- I expect to receive an email with 100 lines and 100 chars in each line. Actual result: -------------- What I get is a single missing character every 10 lines. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=25668&edit=1