Where can I modify the parameter cols="" in the <textarea> of the new create message page? the HTML output is the following, but I can't find it in the en-us/html/ folder
<textarea name="message" cols="76" rows="15" wrap="soft">
</textarea>
That's because it's part of the generated content... from within the C code. (As are the contents of many of the SqWebMail pages, actually.)
I think there's a preference or compile-time setting that affects it, because even in the C code the value isn't there. It's a replaced part of a printf statement, where the value is defined as MYLINESIZE, which is probably in reference to a preference of some sort. -- Though as I said, it could be a configure-/build-time setting instead.
Try looking at sqwebmail/newmsg.c on line 547... and backtracking from there through other .c and .h files as need be. -- Good luck. I hope this helps.
-jab
