issue with mailing


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting issue with mailing
# 1  
Old 08-04-2009
issue with mailing

hi i run a mailing script daily
using rsh

i receive the mail sometimes but sometimes receive the permission denied
error.

could not understand the cause of permission denied because it sometimes runs properly and i am able to receive the mail

Please Advice
# 2  
Old 08-04-2009
The full text of the permission denied message would help to see what is denying permission.
# 3  
Old 08-04-2009
It's not clear what your script is doing.
You say you receive mail, so are you fetching mail, maybe via POP?
Is it your own personal mail, or are you a system admin with root access?
Are you calling a command line mail utility like mail, mailx, or nail? Or some other software?
Are you using a shell script or perl or something else?

I have mail questions too, so I'm interested in what you are trying to do.
# 4  
Old 08-05-2009
rsh servername mailx -s $1 $2

$1 and $2 are subject and attachment i am sending across

i am getting the error
rshd: 0826-813 Permission is denied.

Now the issue is it happens only sometimes and sometimes i receive the mail with attachment correctly.
# 5  
Old 08-05-2009
Where's the destination address? The mailx portion of the command line should be something like this:
Code:
mailx -s subject -a attachment address

So the $2 should be the destination address. If you want it to be an attachment, put -a in front of it.

Also, the attachment file will have to be on the remote server for it to work that way.


I haven't tried this with rsh, but it should work. Pass the text of the email to stdin.
Code:
cat message.txt | rsh server mailx -s subject user@server

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Regarding mailing of logs

Hi Folks, I have an application which logs get continuously refreshed and made after every 1 second , I want that those logs get mailed to me at my email id sara@somewhere.com The location is cd /var/log/abc/log Please advise the command so that I can mail abc.log at my mailid inbox... (2 Replies)
Discussion started by: SankalpS
2 Replies

2. UNIX for Dummies Questions & Answers

Regarding mailing of logs

Hi Folks , I have one query I traverse to a location where logs are being made daily, Now I want that a particular log in that logs directory to be get mailed to me automatically at a particular time on daily basis at my mail id, Please advise the command for that.. for ex the directory is... (7 Replies)
Discussion started by: SankalpS
7 Replies

3. Shell Programming and Scripting

Mailing Script

Hi, I am totally New to This Scripting Area.We have developed some reports in Bo and User need those reports to be sent through Unix Server (SFTP). Can any one provide me script for transfering File from one location to other with the requirement like if that file fails to reach destination... (4 Replies)
Discussion started by: Sashanth_S
4 Replies

4. UNIX for Dummies Questions & Answers

Mailing in unix

is there any option to mail the value from top command directly to the user.. i want the value of cpu usage from six different servers to be send in a single mail.. thanks, Arun Manas:b: (3 Replies)
Discussion started by: arunmanas
3 Replies

5. Shell Programming and Scripting

HTML mailing

Hi All, I have a comma separated file as below. file-1 ---------- a,b,c d,e,f g,h,i . . . I want to send the above file in Mail in HTML format with all the values of each column in separate cells i.e. the body of the mail should be in tabular format & each field should be separate... (2 Replies)
Discussion started by: 46019
2 Replies

6. Shell Programming and Scripting

Mailing script

Hi, I have a file lets say FILE1. FILE1 ------ name,age charlie,25 harry,29 david,32 Pls help me writing a mailing script.... which will mail the content of file in the body of the mail & it will look something like below in two columns. name age charlie 25 harry 29... (1 Reply)
Discussion started by: 46019
1 Replies

7. UNIX for Dummies Questions & Answers

alias issue for mailing purpose in linux

Hi all, I have a requirement for which i need to create an aliase for an username(userid) . suppose the user name is "sanjay.sahoo@localhost.localdomain " . If i will send to any user from this userid then all of them will see from: "the alias of the userid not the... (1 Reply)
Discussion started by: sanjay.login
1 Replies

8. Shell Programming and Scripting

Mailing Problem

I have a Unix server with SunOS 5.8 installed on it. I have set a cron job which will send mail across the two different networks. As of now i can only send mails to the abc.com who owns the server but would also like to send it to xyz.com is there any setting or parameter wherein i need to add... (2 Replies)
Discussion started by: nimish
2 Replies

9. UNIX for Dummies Questions & Answers

Mailing an attachment

Hi, I need to compress (zip) a flat file and mail the same as an attachment. I had tried the following piece of code. But when i open the attachment in mail, the data is incorrect (displays all junk characters). tar cf abc.tar abc.txt compress abc.tar uuencode abc.tar.Z abc1.wri | mailx... (4 Replies)
Discussion started by: gayath3
4 Replies

10. Shell Programming and Scripting

Mailing an attachment

Hi, I need to compress (zip) a flat file and mail the same as an attachment. I had tried the following piece of code. But when i open the attachment in mail, the data is incorrect (displays all junk characters). tar cf abc.tar abc.txt compress abc.tar uuencode abc.tar.Z abc1.wri | mailx -s... (0 Replies)
Discussion started by: gayath3
0 Replies
Login or Register to Ask a Question