|
FreeBSD General Other questions regarding FreeBSD which do not fit in any of the categories below. |
|
Thread Tools | Display Modes |
|
|||
Clientmqueue keeps filling /var and I don't know why
I have a simple BAMP server for our intranet with FreeBSD 6.3 64bit.
It has been running flawless for 2.5 years but suddenly now I am having to go clear /var/clientmqueue everyday because it keeps filling my /var up and causes havoc. I am guessing it has something to do with sendmail but I don't have anything configured to send out to my knowledge. The only thing I can think of is that I recently changed email servers and maybe it was sending something out (but I don't know what and why so much). Any ideas? |
|
||||
Hi there,
I am not sure what /var/clientmqueue is used for exactly (and it does not exist on my FBSD 6.3 server). In any case, what I would do is start by seeing what is writing to it: # lsof +D /var/clientmqueue Install from sysutils/lsof if needed.
__________________
Kill your t.v. |
|
|||
You are correct... the location is /var/spool/clientmqueue.
Looking at the files it looks like some tiny stuff related to a Joomla site on the server. The file typically are an email to 127.0.0.1 that gets rejected. In /etc/rc.conf it says sendmail_enable="NO" and I have changed that to yes. I'll see if that fixes it. Thanks! |
|
||||
I don't think so. The sendmail_enable directive operates the SMTP daemon. In other words, it opens a mailserver on your port 25 accepting incoming smtp connections from the world. Probably not what you want
If you have no sendmail-related entries in rc.conf, the defaults in /etc/defaults/rc.conf will be used, and those defaults are that a local Sendmail queue runner will be started at boot time, and that local mail will be processed every 15 minutes. Code:
grep sendmail /etc/defaults/rc.conf Your process list should show: Code:
970 ?? Is 0:00.17 sendmail: Queue runner@00:15:00 for /var/spool/clientmqueue (sendmail) Last edited by DutchDaemon; 19th November 2008 at 10:20 PM. |
|
|||
Changed it back.
grep sendmail /etc/defaults/rc.conf Quote:
|
|
||||
Based on that, sendmail should be running in your process list (as shown above). If not, try
Code:
/etc/rc.d/sendmail start Code:
/etc/rc.d/sendmail rcvar Last edited by DutchDaemon; 19th November 2008 at 10:46 PM. |
Thread Tools | |
Display Modes | |
|
|