dead.letter


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers dead.letter
# 1  
Old 03-29-2004
dead.letter

HI,

I am pretty new to Unix...but here is 1 serious problem...atleast for me..:-)

now..the dead.letter file in /var/tmp has been growin continuously..n i dont know why..I ve even killed the sendmail process..but the dead.letter file keeps on increasin..Can anyone tell me where do I start from..as I cant even open the dead.letter file to read:-(

Thank you
Sam
# 2  
Old 03-29-2004
You might be able to just zero the size of the dead.letter file using
Code:
cat /dev/null > /var/tmp/dead.letter

which at least will provide a temporary solution.
# 3  
Old 03-29-2004
something is trying to create mail and erroring out.

have the owner of the file open it to examine whom is trying to send the email.
# 4  
Old 03-30-2004
Hi,
Thank you for the replies.


Is there any possible way to see which user/script is tryin to send those mails?

Thank you
Sam
# 5  
Old 03-30-2004
Well, you could find out who is the owner of the file by doing an
Code:
ls -l /var/tmp/dead.letter

The third column will contain the owners username.

As Optimus said above, have the owner of the file open it and see whats going on.
# 6  
Old 03-30-2004
Doing
lsof /var/tmp/dead.letter
will tell you which PIDs and users are accessing the file at the time.
# 7  
Old 03-31-2004
thank you everyone..its solved:-)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Replace specific letter in a file by other letter

Good afternoon all, I want to ask how to change some letter in my file with other letter in spesific line eg. data.txt 1 1 1 0 0 0 0 for example i want to change the 4th line with character 1. How could I do it by SED or AWK. I have tried to run this code but actually did not... (3 Replies)
Discussion started by: weslyarfan
3 Replies

2. Shell Programming and Scripting

sed is dead

Hello everybody, I'm new to bash scripting (and scripting in general) but I'm making decent progress in the hands-on solutions I need... I've encountered a problem that seemed very simple to me at first, but had me going on for hours. Maybe you can help me. Say I have an input text file like... (2 Replies)
Discussion started by: origamisven
2 Replies

3. Emergency UNIX and Linux Support

Send mail from dead.letter

Hi, Can someone pls tell me how do i mail the contents of my dead.letter to my mail id. The problem is that the content is a multi-part message in MIME format. How do i get the original message mailed to me. i used uuencode, but that does not work, says "uuencode not found" Any help... (7 Replies)
Discussion started by: raghu_shekar
7 Replies

4. What is on Your Mind?

Usenet is dead

On servers i check there seems to be no news at all. (3 Replies)
Discussion started by: Action
3 Replies

5. Shell Programming and Scripting

dead.letter issue

Hi, I have created a script that has some sql queries in it. It seem to work fine and e-mails me the output file but when i use this command 'col email format a20' it creates a dead.letter file and i never get the e-mail I am using mailx -s command to send out the e-mail. Any help would... (0 Replies)
Discussion started by: shawnk
0 Replies

6. UNIX for Dummies Questions & Answers

Sending mail in the dead.letter file

Sorry for this one ladies and gents, it's probably very easy but I don't know how to, sound familiar :-) I'm using sendmail on a web server that sends some mail through forms, not many. I've got sendmail configured to use our networks relay host and everything was working well. The power... (4 Replies)
Discussion started by: mjdavies
4 Replies

7. Shell Programming and Scripting

what is dead.letter ??

Hi all can you please help me what is dead.letter file ? when it is created ? for the first time i have seen this file getting created in my current directory? I am using SunOs. Any IDEA ?? (2 Replies)
Discussion started by: jambesh
2 Replies

8. Solaris

Dead SUN

My SUN V210 refuses to fully boot up. We had a power outage (ie. someone tripped the cord) and thereafter the Sun will not come up, and the OS is not starting. The LED on the front is not lit. Monitor gets no feed, so I plugged in via the management port. The system comes up to: Trap 3e. and... (7 Replies)
Discussion started by: ireeneek
7 Replies
Login or Register to Ask a Question