file name got cut when using mail attachments


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers file name got cut when using mail attachments
# 1  
Old 09-28-2001
Question file name got cut when sending attachments using uuencode & msmail

I am using the following command to send a zip file as an attachment to my internet email-id.


uuencode ABC_DEFG_HIJ.zip ABC_DEFG_HIJ.zip | mail -s "attachment from shell" pal@yahoo.com


Eventhough i have given the attached file as 'ABC_DEFG_HIJ.zip', when i receive the mail in my internet email, the attached file has its name as 'ABC_DEFG.zip', but not as 'ABC_DEFG_HIJ.zip'.
ie. _HIJ got cut from the name of the attached file.

I need the file name as 'ABC_DEFG_HIJ.zip' in the receiving end also.

Thanks in advance.

Last edited by Pal; 09-28-2001 at 08:17 AM..
# 2  
Old 09-28-2001
It looks like it got chopped to 8.3 format (the filename is 8 characters long, then a dot, then the three letter extension).
Have you tired uudecoding it to see if it actually has retained it's filename? It's very likely that either the other Operating System, or your mail software (or site, like Yahoo) is displaying the filename like that...

If you figure it out, be sure to let us know...
# 3  
Old 09-28-2001
Hi Livinfree , thanks for your suggestion.

When i sent the mail to my hotmail id, file name is coming fully ie.
ABC_DEFG_HIJ.zip. No problem.

But when i sent mails to my offical id(MSMail), file name got cut. ie ABC_DEFG.zip. So how to get the attachment name properly in my Msmail client?

Thanks
# 4  
Old 10-02-2001
I don't know. Maybe there's a way that I don't know, but it sounds like limitations of the mail client (MSMail)...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Read mail attachments in AIX

Hello All, Is there a way to read/view email attachments in AIX? Here's my scenario; I have users that will being scanning documents for digital storage. To make it easier for the users, I would like for them to scan and email the pdf version of the document directly to one of my AIX... (3 Replies)
Discussion started by: bbbngowc
3 Replies

2. Shell Programming and Scripting

Adding Attachments to mail

Hi, I need to send a mail with html code in body and an attachment along with the body and subject. The html code must display a table with data in it in the mail. I have tried the 'sendmail' command, but I am am able to display the table in the mail and unable to attach an attachment. ... (5 Replies)
Discussion started by: Durga Prasad NK
5 Replies

3. Shell Programming and Scripting

Format text in mail attachments

Hi Gurus, I am working on a script that sends a text file attachment on mail from unix server to my widows outlook mail box. When i see the text file in UNIX it is perfectly formatted but when i open the same file in the mail, it looks weird as the next line is added to the same line. For... (10 Replies)
Discussion started by: jayadanabalan
10 Replies

4. Shell Programming and Scripting

Problem with multiple mail attachments

Hi everyone... I am facing problem with the multiple mail attachments. cd /work/mohan/pi_log/ mail_file='uuencode ahmedabad.csv ahmedabad.csv ; uuencode ahmedabad_devrpt_20110530.csv ahmedabad_devrpt_20110530.csv' ( $mail_file ) | mailx -m -s"test" domain@website.com its giving me error... (1 Reply)
Discussion started by: mohanm
1 Replies

5. Shell Programming and Scripting

e-mail with multiple binary attachments!

Hi, I have to send email from UNIX with multiple excel attachments and the sender name needs to be customized (sender name need not to be UNIX user). I have checked many ways from this forum and other sources. But, nothing did work for me. Please help me! thanks, Raja. (1 Reply)
Discussion started by: smr_rashmy
1 Replies

6. UNIX for Advanced & Expert Users

Mail attachments getting corrupted...

Hi , Whenever I try to send mails with attachments to external email Id's the attachment is not encoded properly which appears along with body (text) of the mail. The attachement is always getting corrupted. Can anyone please suggest a solution. Regards, Sandipan (1 Reply)
Discussion started by: Sandipan
1 Replies

7. Solaris

mail with attachments

I want to send a mail with three attachments, but nothing happened. I tried it with mail and mailx. Are there special options for these commands or is it not possible to send mails under Solaris with attachments? Must there be special adjustments in the environment? Can anyone give an... (6 Replies)
Discussion started by: ninjadan
6 Replies

8. AIX

Send mail attachments and have a mail body

Hi, How can I send mail attachments from shell script (AIX) and have a mail body as well ? Thanks in advance. (1 Reply)
Discussion started by: shibajighosh
1 Replies

9. UNIX for Dummies Questions & Answers

sending attachments in mail

Hi , i have tried the following command to send an email with an attachment its working fine but i am getting mail with the embeded content inside the mail that too truncated. i wanted it as an attachment. /usr/lib/sendmail -F "MAC SIA" address "rajendra@abc.com.sg" -t <... (6 Replies)
Discussion started by: rajendragora
6 Replies

10. UNIX for Dummies Questions & Answers

mail attachments

I'm writing scripts on HP-UX. Is there a way to attach a file to a mail message. I don't want to imbed the data in the mail message. (1 Reply)
Discussion started by: Multithreaded
1 Replies
Login or Register to Ask a Question