I have a single HTML `<textarea>` embedded in an existing form that is capping how many characters a user can type. I want that restriction removed entirely—no hard-coded `maxlength`, no JavaScript length check, no server-side truncation—so the field accepts as much text as the user chooses. There‘s no need to display any warning or error message; the goal is simply to allow unlimited input and have it post successfully with the rest of the form. Please inspect both the front-end markup and any related validation or processing script to be sure nothing else silently trims the content. A quick test showing that the form submits very large blocks of text intact will be enough to confirm the fix.