1829106 Members
2385 Online
109986 Solutions
New Discussion

Re: Send mail problem

 
Achilles_2
Regular Advisor

Send mail problem

Hi all,

I have encountered the following problem recently, but I don't use it to send and receive mail:

myServer above message repeats 79 times
myServer sendmail[820]: NOQUEUE: low on space (have 91, SMTP-DAEMON needs 101 in
/var/spool/mqueue)
myServer sendmail[820]: NOQUEUE: low on space (have 21, SMTP-DAEMON needs 101 in
/var/spool/mqueue)

How come often this message pop up?

Regards and thanks a lot!
Alex
8 REPLIES 8
Karthik S S
Honored Contributor

Re: Send mail problem

May be /var is running out of space. post bdf output.

-Karthik S S
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
Hoefnix
Honored Contributor

Re: Send mail problem

Hi,
If you have no space problem in /var check the properties of the /var/spool/mqueue
drwxr-xr-x 2 bin bin 57344 Mar 9 09:06 mqueue

HTH,
Peter
T G Manikandan
Honored Contributor

Re: Send mail problem

check /var and /tmp file system.
check whether the file systems have space.
Sanjiv Sharma_1
Honored Contributor

Re: Send mail problem

Hi Alex,

Your /var filesystem is running out of space.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=45441
Everything is possible
Vijaya Kumar_3
Respected Contributor

Re: Send mail problem

Use this command to check whether you are running sendmail or not.

ps -ef | grep sendmail

If you have sendmail running, stop the sendmail server.

/sbin/init.d/sendmail stop

Also, disable sendmail from starting after a reboot

mv /sbin/rc2.d/S540sendmail /sbin/rc2.d/s540sendmail

Hope this helps
Vijay
Known is a drop, unknown is ocean - visit me at http://vijay.theunixplace.com
Hoefnix
Honored Contributor

Re: Send mail problem

Hi,

check also /var/mail properties:
drwxrwxr-x 2 bin mail 96 Mar 7 04:30 mail

If not correct:
chown bin:mail /var/mail
chmod 775 /var/mail

Regards,
Peter
Shaikh Imran
Honored Contributor

Re: Send mail problem

Hi,
don't get into the problem if you are not using the sendmail.Just Disable it using
/sbin/init.d/sendmail stop

Regards,
I'll sleep when i am dead.
jason morgan_3
Occasional Advisor

Re: Send mail problem

If it does indeed turn out to be a space issue, you might want to setup a script that checks for logs and or mail files and zeros them out every so often using cron
-Jason
===Script Begin===

#!/usr/bin/sh
for i in `ls -1 /var/mail`
do
> /var/mail/$i
done
> /var/adm/syslog/mail.log
exit