Hello,
I have software that allows direct submission of tech support requests.
The software connect directly to a formmail script. The problem is that
if the user types a '=' or a '&' anywhere in the message, the resulting
email is truncated at that spot.
It looks like the sub parse_form routine, which splits on '&', is
responsible. Then again, submitting the same text from a web form (to
the same formmail.pl) does not truncate the text.
I submit the text in the form:
&recipient=the_recipient
&subject=the_subject
&=the_actual_message
Again, the_actual_message is clipped at first occurence of a '&' or
'='.
Any ideas how to fix this?
Kurt