Questions tagged [uuencode]

Uuencode is an algorithm for converting binary files to text. It is taken from the phrase "Unix-to-Unix encoding," as the first implementation was the Unix program "uuencode." It was originally used to transmit files over email and Usenet; it has been supplanted by MIME and Base64.

Uuencode is an algorithm for converting binary files to text. It is taken from the phrase "Unix-to-Unix encoding," as the first implementation was the Unix program "uuencode." It was originally used to transmit files over email and Usenet; it has been supplanted by MIME and Base64. See also .

58 questions
0
votes
1 answer

Is there any way to check email sent success acknowledgement in ksh | UNIX Shell Scripting

I need to send the generated CSV files on regular intervals using script. I am using UUENCODE and mailx for the same. But i need to know that is there any method/way to know that email sent successfully? Any kind of acknowledgement or feedback or…
Sachin
  • 963
  • 11
  • 31
0
votes
1 answer

encoding issues when populating neo4j with py2neo and querying with cypher

I used py2neo to add nodes and relations in neo4j. created with: asno, = graphDB.create({"name":"ASNO:"+fields[8], "ASNO":fields[8]}); asno.add_labels("Network", "ASNO", continent); printing in python: ASNO : 38023 However, when I query…
RayN
  • 1
0
votes
2 answers

Using uuencode, how to rename the file being attached while sending?

I am using uuencode as below uuencode /root/some/directory/**Test.txt** /root/some/directory/**Test.txt** | mail -s 'test' xyz@mail.com The above command is working as expected but while the mail comes to the inbox of xyz@mail.com the file name…
Randeep Singh
  • 91
  • 1
  • 2
  • 11
0
votes
1 answer

objective-c to PHP websafe encoding; uuencode?

I am sending strings from my objective-c app to a PHP script over HTTP. I need to websafe these strings. I am currently encoding with Google Toolbox for Mac GTMStringEncoding rfc4648Base64WebsafeStringEncoding and decoding with base64_decode() on…
Thompson
  • 1,098
  • 11
  • 25
0
votes
1 answer

Switch uuencoding to MIME

I've been tasked to look into having an email function that we have in place which sends emails using uuencoding to something else more widely accepted. I guess there have been issues which recipients are not receiving attachments (.csv) files…
kyle_13
  • 1,173
  • 6
  • 25
  • 47
0
votes
1 answer

How to UUEncode in android

Using which libraries, I can UUENcode some binary in Android java? I just couldn't find any UUEncoder api available in java for android. Does anybody know such an api?
Aqeel Ashiq
  • 1,988
  • 5
  • 24
  • 57
0
votes
2 answers

UUENCODE data in the iPhone SDK

Is there any way to uuencode data in the iPhone SDK? An API call or perhaps a library?
luvieere
  • 37,065
  • 18
  • 127
  • 179
0
votes
2 answers

send mail with uuencode

hello I would like to send an email with attached a piece I try with the command uuencode but I have no mail in my mailbox that can help me please cat body.txt | uuencode /root/report-20130322.pdf | mail -s "Daily Report" user@gmail.com
user1794019
  • 59
  • 1
  • 3
  • 9
0
votes
1 answer

Mailx with uuencode not sending multiple attachments with a proper email body on Suse Linux

This particular piece of code below worked correctly on AIX ( echo "mailbody"; uuencode a.txt 'arenamed.txt'; uuencode ab.txt 'abrenamed.txt'; uuencode abc.txt 'abcrenamed.txt'; uuencode abcd.txt 'abcdrenamed.txt'; ) | mailx -s "$subject"…
Prasoon
  • 425
  • 1
  • 6
  • 18
0
votes
2 answers

Uuencode not attaching file to email and grep not listing file names

I've been trying to figure this out, but not matter what I try it doesn't seem to be working as I want. Basically the things that are missing is that grep is not listing the file names when it finds a match (which is what the -H flag is supposed to…
user707053
-1
votes
1 answer

Unix sendmail attachment getting corrupt

I am using sendmail to mail a zipped file as an attachment which consists of text files to my ID.As soon as I try to unzip this zipped file from my mail it shows INVALID ARCHIEVE DIRECTORY.Please help me out. #!/bin/bash BOUNDARY="=== This is the…
Manu
  • 1
  • 4
-1
votes
1 answer

Bitwise XOR uudecode string in Perl

I have the following strings at left with encoded values at right: 123456789012 ,\#8%-SM+"Q$[2C4?_\n 1234567890123 -\#8%-SM+"Q$[2C4?_SP \n 12345678901234 .\#8%-SM+"Q$[2C4?_S], \n 123456789012345 …
bsteo
  • 1,738
  • 6
  • 34
  • 60
-2
votes
1 answer

Python - delete uuencoding lines

I am processing many text files which (some of them) contain uuencoding which can be .jpg or .pdf or .zip of .xlsx etc. I don't care about the embedded UUencoded data, so I would just like to discard these passages and keep the rest of the text. …
adrCoder
  • 3,145
  • 4
  • 31
  • 56
1 2 3
4