[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] BBALPHAMSG for service 'proc', 'disk', etc no line feeds
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] BBALPHAMSG for service 'proc', 'disk', etc no line feeds
- From: "Ralph Mitchell" <ralphmitchell (at) gmail.com>
- Date: Fri, 4 Apr 2008 10:25:51 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=gT1tyy2XpZKFr65vygr9DKpCrb8mTcXTbE/Sxofi22c=; b=DF9jfH80L8r56O0iTRIwzZaIo6LZkv+BuQaxH+/DXzx+334KgcBnO1s1G1g3SG6oZLchcEPLxxIXTdfWVBA3FhaTk5GDj3+8yD9Y1135TGmlZAgPzsOzlarlb1Cv4nqgbyDr2pW3B19DfTOlF0gMK6A0XVn20ri8XnAJfrZ2AkI=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=OsxVpR2WwvyJhSskKZf6DTJ9Yc5LkjypWhZXg08M8UlvBwgeKxDFbwOavW9hFN7Cen1oaCCue7SV3iMmIkXnKlwY+mDh4e1CNAsR+gvOY9pn2nkRp8sw4/BX1q8l9DG3yjYn9imuJY8ixzSBUTzfm/OiWOtqhNnhAbnNNcE4Pgg=
- References: <47EFBA2C.4090307 (at) revpol.com> <BBA15439DC467648BBAB71E6BA4D990036C8A48A30 (at) MERCMBX12.na.sas.com> <47F636C8.2010504 (at) revpol.com>
On Fri, Apr 4, 2008 at 9:10 AM, Bill Arlofski <waa-hobbitml (at) revpol.com>
wrote:
>
> Galen Johnson wrote:
>
> > I'd be surprised if Hobbit was doing this...
> >
>
> Well, when I was working on my custom email script (mentioned last
> week), I can see that the $BBALPHAMSG that is handed off to the script
> by hobbit is exactly what I am seeing in the email, so hobbit is handing
> it to me (the script) with no formatting, line feeds etc. I guess I was
> just wondering if there was some setting in the config file(s) to toggle
> formatting or something similarly simplistic that I might have missed.
>
Are you wrapping $BBALPHAMSG in double quotes in your script?? If you do
something like:
echo $BBALPHAMSG | mailx .....
that will strip out the linefeeds. Put quotes around it and you get the
message verbatim:
echo "$BBALPHAMSG" | mailx ....
Ralph Mitchell