On Fri, Apr 4, 2008 at 9:10 AM, Bill Arlofski <<a href="mailto:waa-hobbitml@revpol.com">waa-hobbitml@revpol.com</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br>
Galen Johnson wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
I'd be surprised if Hobbit was doing this...<br>
</blockquote>
<br></div><div class="Ih2E3d">
Well, when I was working on my custom email script (mentioned last<br>
week), I can see that the $BBALPHAMSG that is handed off to the script<br>
by hobbit is exactly what I am seeing in the email, so hobbit is handing<br>
it to me (the script) with no formatting, line feeds etc.  I guess I was<br>
just wondering if there was some setting in the config file(s) to toggle<br>
formatting or something similarly simplistic that I might have missed.</div></blockquote><div><br>Are you wrapping $BBALPHAMSG in double quotes in your script??  If you do something like:<br><br>    echo $BBALPHAMSG | mailx .....<br>
<br>that will strip out the linefeeds.  Put quotes around it and you get the message verbatim:<br><br>   echo "$BBALPHAMSG" | mailx ....<br><br>Ralph Mitchell<br></div></div><br>