<?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 base64 decoding in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788262#M781407</link>
    <description>Hi guys&lt;BR /&gt;I am looking for tools available on the www to decode data sent in mail as attachments using base64.&lt;BR /&gt;Just a background, we receive mails with attachments from unix boxes &amp;amp; other mail clients like Lotus notes etc.&lt;BR /&gt;The receiving mailbox is on a unix platform, and we have a nice perl script that scans the /var/mail and decodes the attachments. Lately with the new requirements some clients are sending attachments from Lotus Notes etc.&lt;BR /&gt;&lt;BR /&gt;I did find few on the web, some not in its complete form, some are but very clumy to use.&lt;BR /&gt;I am looking for your recommendations/suggestions.&lt;BR /&gt;&lt;BR /&gt;Thanks for your valuable time.</description>
    <pubDate>Mon, 15 May 2006 09:27:10 GMT</pubDate>
    <dc:creator>Srinivas_9</dc:creator>
    <dc:date>2006-05-15T09:27:10Z</dc:date>
    <item>
      <title>base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788262#M781407</link>
      <description>Hi guys&lt;BR /&gt;I am looking for tools available on the www to decode data sent in mail as attachments using base64.&lt;BR /&gt;Just a background, we receive mails with attachments from unix boxes &amp;amp; other mail clients like Lotus notes etc.&lt;BR /&gt;The receiving mailbox is on a unix platform, and we have a nice perl script that scans the /var/mail and decodes the attachments. Lately with the new requirements some clients are sending attachments from Lotus Notes etc.&lt;BR /&gt;&lt;BR /&gt;I did find few on the web, some not in its complete form, some are but very clumy to use.&lt;BR /&gt;I am looking for your recommendations/suggestions.&lt;BR /&gt;&lt;BR /&gt;Thanks for your valuable time.</description>
      <pubDate>Mon, 15 May 2006 09:27:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788262#M781407</guid>
      <dc:creator>Srinivas_9</dc:creator>
      <dc:date>2006-05-15T09:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788263#M781408</link>
      <description>It's easy in perl:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;use MIME::Base64;&lt;BR /&gt;my $string = "Hello, world.";&lt;BR /&gt;my $encoded = decode_base64 ($string);&lt;BR /&gt;my $decoded = decode_base64 ($encoded);&lt;BR /&gt;&lt;BR /&gt;Installing MIME::Base64 also gives you 4 utilities:&lt;BR /&gt;decode-base64&lt;BR /&gt;decode-qp&lt;BR /&gt;encode-base64&lt;BR /&gt;encode-qp&lt;BR /&gt;&lt;BR /&gt;Then there are unix utils like uuencode and uudecode&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Mon, 15 May 2006 09:35:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788263#M781408</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-05-15T09:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788264#M781409</link>
      <description>Hi,&lt;BR /&gt;would this help:&lt;BR /&gt;&lt;A href="http://www.fourmilab.ch/webtools/base64/#Download" target="_blank"&gt;http://www.fourmilab.ch/webtools/base64/#Download&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 May 2006 09:42:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788264#M781409</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-05-15T09:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788265#M781410</link>
      <description>Hi,&lt;BR /&gt;did the suggestions help? Have tried them out? Please update or reward solution and close.</description>
      <pubDate>Wed, 17 May 2006 02:38:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788265#M781410</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-05-17T02:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788266#M781411</link>
      <description>Peter&lt;BR /&gt;Sorry didnt mean to ignore the help you guys have given. I did try to download the tar file from the link you have provided, I couldnt gunzip the tar I got&lt;BR /&gt;gunzip: base64-1.4.tar.gz: invalid compressed data ---crc error&lt;BR /&gt;gunzip: base64-1.4.tar.gz: invalid compressed data ---length error&lt;BR /&gt;&lt;BR /&gt;I was trying to install the MIME:Base64 pm and see if that helps.&lt;BR /&gt;&lt;BR /&gt;I will certainly update once i reach a significant milestone.&lt;BR /&gt;&lt;BR /&gt;Thanks for your time</description>
      <pubDate>Wed, 17 May 2006 21:48:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788266#M781411</guid>
      <dc:creator>Srinivas_9</dc:creator>
      <dc:date>2006-05-17T21:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788267#M781412</link>
      <description>Hi Srinivas, &lt;BR /&gt;&lt;BR /&gt;Your download is corrupted, You should re download it again. Also, you didn't mention about procura's solution ? Did that work ? &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Wed, 17 May 2006 23:12:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788267#M781412</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-05-17T23:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: base64 decoding</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788268#M781413</link>
      <description>Are you sure it is still gzipped?&lt;BR /&gt;Some stupid browsers download files, recognize the format and unzip on the flow, but forget to remove the extension.&lt;BR /&gt;&lt;BR /&gt;# file base64-1.4.tar.gz&lt;BR /&gt;&lt;BR /&gt;will tell you. If it responds with "tar", just curse a few times (or smile and learn), remove the extension&lt;BR /&gt;&lt;BR /&gt;# mv base64-1.4.tar.gz base64-1.4.tar&lt;BR /&gt;&lt;BR /&gt;and then extract&lt;BR /&gt;&lt;BR /&gt;# tar xvf base64-1.4.tar&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 18 May 2006 01:36:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/base64-decoding/m-p/3788268#M781413</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-05-18T01:36:06Z</dc:date>
    </item>
  </channel>
</rss>

