<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic uuencode decoding. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818518#M829754</link>
    <description>Couldnt do a search on the subject kept on telling page not found when I clicked search.  So I have to ask the question 1st.&lt;BR /&gt;I am using the uuencode option pipe to mailx for file attachment within mail.  I receive the file on my microsoft exchange as an attachment, but at my yahoo address and another other person using Lotus Notes the mail it comes in still uuencoded as part of the text&lt;BR /&gt;&lt;BR /&gt;# If the input file is available do a uuencode for attachments and process&lt;BR /&gt;if [ -r $MFILE ];then&lt;BR /&gt;   SUBJ=`cat $SUBF`&lt;BR /&gt;   /usr/bin/ux2dos $MFILE &amp;gt; ${MFILE}.txt&lt;BR /&gt;   uuencode ${MFILE}.txt ${MFILE}.txt | mailx -s "$SUBJ" "$MRCEP"&lt;BR /&gt;&lt;BR /&gt;The above 2 lines are one it wrapped. The SUBJ and MRCEP are set earlie</description>
    <pubDate>Thu, 03 Oct 2002 18:26:56 GMT</pubDate>
    <dc:creator>Belinda Dermody</dc:creator>
    <dc:date>2002-10-03T18:26:56Z</dc:date>
    <item>
      <title>uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818518#M829754</link>
      <description>Couldnt do a search on the subject kept on telling page not found when I clicked search.  So I have to ask the question 1st.&lt;BR /&gt;I am using the uuencode option pipe to mailx for file attachment within mail.  I receive the file on my microsoft exchange as an attachment, but at my yahoo address and another other person using Lotus Notes the mail it comes in still uuencoded as part of the text&lt;BR /&gt;&lt;BR /&gt;# If the input file is available do a uuencode for attachments and process&lt;BR /&gt;if [ -r $MFILE ];then&lt;BR /&gt;   SUBJ=`cat $SUBF`&lt;BR /&gt;   /usr/bin/ux2dos $MFILE &amp;gt; ${MFILE}.txt&lt;BR /&gt;   uuencode ${MFILE}.txt ${MFILE}.txt | mailx -s "$SUBJ" "$MRCEP"&lt;BR /&gt;&lt;BR /&gt;The above 2 lines are one it wrapped. The SUBJ and MRCEP are set earlie</description>
      <pubDate>Thu, 03 Oct 2002 18:26:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818518#M829754</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-03T18:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818519#M829755</link>
      <description>James,&lt;BR /&gt;&lt;BR /&gt;Try adding the "-m" option to mailx:&lt;BR /&gt;&lt;BR /&gt;uuencode ${MFILE}.txt ${MFILE}.txt | mailx -m -s "$SUBJ" "$MRCEP"&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Thu, 03 Oct 2002 19:03:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818519#M829755</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-03T19:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818520#M829756</link>
      <description>Harry is correct with the -m option. "Been there, got burned, am healing."&lt;BR /&gt;dl</description>
      <pubDate>Fri, 04 Oct 2002 18:00:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818520#M829756</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2002-10-04T18:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818521#M829757</link>
      <description>I know about the -m option on the HP side of the house and it works.  The big problem is that the HP systems are inside the firewall and I am scp copying files to the other side of the firewall to a Sun box and building the mail msg there and sending it out.  The Sun mailx does not have the -m option, so I had to download and install elm there and use the&lt;BR /&gt;"[include ${MFILE}.txt text/plain base64]" function that Rita has been pushing.</description>
      <pubDate>Fri, 04 Oct 2002 18:04:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818521#M829757</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-04T18:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818522#M829758</link>
      <description>Hi James,&lt;BR /&gt;&lt;BR /&gt;I just went through some pain setting up elm using an include file.  For some reason, using text/plain did not work for Notes.  Using application/octet-stream did.&lt;BR /&gt;&lt;BR /&gt;Just in case you run into the same issue.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 04 Oct 2002 18:39:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818522#M829758</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-10-04T18:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818523#M829759</link>
      <description>Darrell, I had no problem with the text files, I did a unix to dos conversion first then the elm.  My only complaint is that with elm it puts txt of the msg in the body of the mail also as an attachment and I haven't been able to get around it.  That is why mailx -m is the way to go, but good ole Sun is behind times.</description>
      <pubDate>Fri, 04 Oct 2002 18:47:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818523#M829759</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-04T18:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818524#M829760</link>
      <description>I'm sorry, James.  I was interrupted by "work" before completing my thought and sent the reply without finishing.&lt;BR /&gt;&lt;BR /&gt;To complete my thought, the text was sent to Notes even when I used text/plain but it was in the message body (even though Notes indicated an attachment).  My requirement was for it to be an attachment.  Using application/octet-stream worked well to both Notes and my personal Outlook client.&lt;BR /&gt;&lt;BR /&gt;And as you did, I used ux2dos before sending.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 04 Oct 2002 18:57:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818524#M829760</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-10-04T18:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818525#M829761</link>
      <description>Sorry Darrell, I jumped the gun also, now after your explanation.  How did you set up the include file to look like.  Did you replace the text/plain with application/octet-stream &lt;BR /&gt; By the way, I posted a question on the Sun Forum site a day ago and still haven't heard one word, very seldom do I get responses.  The HP forums is just so great.</description>
      <pubDate>Fri, 04 Oct 2002 19:01:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818525#M829761</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-04T19:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818526#M829762</link>
      <description>Darrell, I jumped the gun again, should have tested it first.  Your response does work, but it gives me two attachments.  1. ascii.text and ATT5927.txt.  But it is better than the message in the body.  Some of the files might be quite large.</description>
      <pubDate>Fri, 04 Oct 2002 19:07:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818526#M829762</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-04T19:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818527#M829763</link>
      <description>My include file contains:&lt;BR /&gt;[include file.txt application/octet-stream base64]&lt;BR /&gt;&lt;BR /&gt;My script contains:&lt;BR /&gt;ux2dos infile &amp;gt;file.txt&lt;BR /&gt;elm -s "Subject" someone@somewhere.com &lt;INCLUDE.FILE&gt;&lt;/INCLUDE.FILE&gt;&lt;BR /&gt;By the way, I did this on HP-UX 11.0, not Solaris.  I didn't mean to give you that impression.  I simply thought you might run into the same thing.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 04 Oct 2002 19:14:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818527#M829763</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-10-04T19:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode decoding.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818528#M829764</link>
      <description>Final reply and then I am putting this too sleep.  with the [include testfile.txt application/octet-stream base64] it works 99% on the Solaris 2.7 system.  The only thing is that I get a double attachment, but we can live with that.  The big thing this corrected the problem of having the text of the msg in the body of the mail.  So thanks a lot and have a good weekend.  I have 3 HP systems and about 24 sun servers and this was the first time that I really had any xplatform issues.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Oct 2002 19:20:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uuencode-decoding/m-p/2818528#M829764</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2002-10-04T19:20:20Z</dc:date>
    </item>
  </channel>
</rss>

