Voting

: max(nine, six)?
(Example: nine)

The Note You're Voting On

Marco Arment
14 years ago
This function will cause a PHP Fatal Error if the text you're passing to it overflows a 16 KB buffer internally (SENDBUFLEN in the source).

I haven't looked into it in depth yet, but limiting the input text to less than 16,384 characters still produced this in one error case on our servers, but reducing the boundary to 12,000 fixed it.

Most real-world mail headers are well under 4 KB.

<< Back to user notes page

To Top