- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Send mail problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:03 PM
03-08-2004 07:03 PM
Send mail problem
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:05 PM
03-08-2004 07:05 PM
Re: Send mail problem
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:08 PM
03-08-2004 07:08 PM
Re: Send mail problem
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:08 PM
03-08-2004 07:08 PM
Re: Send mail problem
check whether the file systems have space.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:08 PM
03-08-2004 07:08 PM
Re: Send mail problem
Your /var filesystem is running out of space.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=45441
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:09 PM
03-08-2004 07:09 PM
Re: Send mail problem
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 07:57 PM
03-08-2004 07:57 PM
Re: Send mail problem
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 09:50 PM
03-08-2004 09:50 PM
Re: Send mail problem
don't get into the problem if you are not using the sendmail.Just Disable it using
/sbin/init.d/sendmail stop
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 10:10 PM
03-08-2004 10:10 PM
Re: Send mail problem
-Jason
===Script Begin===
#!/usr/bin/sh
for i in `ls -1 /var/mail`
do
> /var/mail/$i
done
> /var/adm/syslog/mail.log
exit