AT00003.bin attachment is received from mailx command.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting AT00003.bin attachment is received from mailx command.
# 1  
Old 11-25-2014
Question AT00003.bin attachment is received from mailx command.

Hi Team,

I am sending a mail from Linux box as shown below.

Code:
cat sample.log | mailx -s "Testing" abc.com

But instead of receiving the content of sample.log in the mail i got an attachment with name AT00001.bin.

After looking into the contents of log file i found that there are some extra characters which was the resson this attachment.

Log file contents :

Code:
2014/11/23-00:04:18: Calling abc.ksh ...
^[[H^[[JLink environment initialized for instance...


Can anyone please help me to understanding the concept for this kind of behaviour of mailx command.
# 2  
Old 11-25-2014
mail accepts only *nix text files as text. Any control char in the file, even the <CR> windows line terminator, makes it recognize and send it as a binary file. Not sure what the ECMA-48 CSI sequences in your log file mean, though.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unable to send attachment using mailx command

I am unable to send email with attachment using the mailx command. Without the attachment, the email goes through file. This is the command I use. Works : $ echo "Test" | mailx -s "Test" username@website.com Fails : $echo "Test" | mailx -a all-dss-accounts.txt -s "Test"... (3 Replies)
Discussion started by: nkarthik_mnnit
3 Replies

2. Shell Programming and Scripting

Mailx command to send attachment file

Hi, I need to send a attachment which has space in the file name as: "ABC Data Extract.txt" which is present in the location /home/projects/txt i am using /home/projects/scripts mailx -s "Sub" email_id "/home/projects/txt/ABC Data Extract.txt" but i am not getting the attachment. (7 Replies)
Discussion started by: ATWC
7 Replies

3. Shell Programming and Scripting

Attachment readablity using mailx command

Team, Presently i have the below script which sends the attachment but in a .bat method, i want it more of readable method.i.e(abc.log) for which i am doing the cat cat abc.log | mailx -s "Todays logs $(date)" <my_email_id.com> Regards Whizkid Please use code tags next time for... (14 Replies)
Discussion started by: whizkidash
14 Replies

4. UNIX for Dummies Questions & Answers

Linux - mailx - attachment - via script/command

Hi I am trying to send an email using mailx with an attachment but without using uuencode. as per man page we can use -a option. I tried below command mailx -s "test" -a "/home/test/1.txt" "abc@gmail.com" but it waits for more input and i had to press ControlD which in turns print... (0 Replies)
Discussion started by: reldb
0 Replies

5. HP-UX

Mailx command running successfully but no mails received.

Hi, I am working on a HP-UX box. Mailx command running successfully but no mails received. Here is what I am doing rocfm@comhp73 - mailx -s "subject" abc@gmail.com < abc.txt Null message body; hope that's ok rocfm@comhp73 - echo $? 0 rocfm@comhp73 - echo "something" | mailx -v -s... (1 Reply)
Discussion started by: Sunayna
1 Replies

6. Shell Programming and Scripting

want to send .csv file as an attachment using mailx command.

want to send .csv file as an attachment using mailx command. Please help!!! (1 Reply)
Discussion started by: gagandeep
1 Replies

7. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

8. UNIX for Advanced & Expert Users

Unknown Attachment received on html mail

Hello, Getting an extra attachment when i send a mail using below code. The body and the rest of the attachments look very fine. The extra attachment to be exact has a name ATT00001.txt. :confused: This is not part of my $attach_list. BOUNDARY='------The Boundary-----' print - "From:... (1 Reply)
Discussion started by: pgop
1 Replies

9. Shell Programming and Scripting

Problem with Mailx command to send mail with attachment

Hi, I am using mailx command to send a mail with attachment. It's working fine, but with attachment I am getting one extra attachment like (ATT00131.txt). I have tried to use unix2dos command also. But still I am getting the extra attachment. I am using the following code: subject="temp... (5 Replies)
Discussion started by: viswanatharv
5 Replies

10. Shell Programming and Scripting

Problem with mailx command when sending attachment.

Hi, I have tried to sent a mail with body and attachment. But the shell script got hanging while executing that command. The command is "(cat body;uuencode att1.csv)|mailx -s "Production Monitoring Report(Unix Side)" milton.yesusundaram@patni.com" where body is a file having a single line.... (2 Replies)
Discussion started by: miltony
2 Replies
Login or Register to Ask a Question