47 messages in net.sourceforge.lists.courier-usersRe: [courier-users] Failed to create ...
FromSent OnAttachments
Jonathan ChongDec 27, 2005 4:14 pm 
Gordon MessmerDec 27, 2005 4:35 pm 
Sam VarshavchikDec 27, 2005 7:08 pm 
Jonathan ChongDec 28, 2005 5:39 am 
Gordon MessmerDec 28, 2005 8:04 am 
Jonathan ChongDec 28, 2005 8:12 am 
Gordon MessmerDec 28, 2005 8:36 am 
Jeff JansenDec 28, 2005 8:59 am 
Jonathan ChongDec 28, 2005 10:04 am 
Jeff JansenDec 28, 2005 10:29 am 
Jonathan ChongDec 28, 2005 10:33 am 
Jonathan ChongDec 28, 2005 10:38 am 
Gordon MessmerDec 28, 2005 11:00 am 
Tony EarnshawDec 28, 2005 11:01 am 
Jeff JansenDec 28, 2005 11:42 am 
Gordon MessmerDec 28, 2005 11:52 am 
Jeff JansenDec 28, 2005 12:22 pm 
Jonathan ChongDec 28, 2005 12:55 pm 
Tony EarnshawDec 28, 2005 1:34 pm 
Jonathan ChongDec 28, 2005 1:55 pm 
Tony EarnshawDec 28, 2005 2:00 pm 
Jonathan ChongDec 28, 2005 2:49 pm 
Jerry AmundsonDec 28, 2005 6:25 pm 
Tony EarnshawDec 28, 2005 11:32 pm 
Jonathan ChongDec 29, 2005 12:01 am 
Jonathan ChongDec 29, 2005 3:24 am 
Tony EarnshawDec 29, 2005 6:05 am 
Jonathan ChongDec 29, 2005 6:57 am 
Jonathan ChongDec 29, 2005 7:03 am 
Tony EarnshawDec 29, 2005 7:32 am 
Tony EarnshawDec 29, 2005 7:37 am 
Jerry AmundsonDec 29, 2005 8:27 am 
Tony EarnshawDec 29, 2005 8:38 am 
Jonathan ChongDec 29, 2005 8:42 am 
Tony EarnshawDec 29, 2005 8:51 am 
Jerry AmundsonDec 29, 2005 8:55 am 
Jerry AmundsonDec 29, 2005 8:59 am 
Jerry AmundsonDec 29, 2005 9:07 am 
Tony EarnshawDec 29, 2005 9:15 am 
Tony EarnshawDec 29, 2005 10:09 am 
Jerry AmundsonDec 29, 2005 10:33 am 
Binand SethumadhavanDec 29, 2005 11:28 am 
Gordon MessmerDec 29, 2005 11:32 am 
Jonathan ChongDec 29, 2005 12:57 pm 
Tony EarnshawDec 29, 2005 4:57 pm 
Jonathan ChongJan 5, 2006 12:50 am 
Sam VarshavchikJan 5, 2006 3:52 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] Failed to create cache file: maildirwatch errorActions...
From:Jonathan Chong (ashb@gmail.com)
Date:Dec 29, 2005 12:01:40 am
List:net.sourceforge.lists.courier-users

Thanks to everyone and good morning. It's freezing here in London!

Jeffrey

Yes, I uninstalled the rpms using rpm -e --nodeps fam.2.6.8.rpm

This is the same x64 box being used earlier, yes.

I took the same initialisation steps to start the processes, services as instructed earlier in the thread.

Same error in the mail logs, yes. Tested by trying to deliver emails to the mail box. I have Thunderbird set to check mails every 1 minute, and each time this check is run by Thunderbird, the error appears in the log.

I can however read emails already in the Maildirs fine. These emails were copied over from my old server.

Setting up a new account didn't work either.

Exim is delivering mails. I have a PHP test script, and my cron is sending notification emails to my Gmail account.

I get this output running that command:

file /etc/xinetd.d/sgi_fam is not owned by any package

Tony

I downloaded 2.7.0 from another website - had to do some digging though before I finally found a link that didn't link back to SGI's website!

Downloaded these two files:

fam-2.7.0.tar.gz fam-2.7.0-dnotify-1.patch

I usally build rpms from source by doing this:

rpmbuild -ta source_dir

But doing that on the 2.7.0 folder gives me these errors:

error: Name field must be present in package: (main package) error: Version field must be present in package: (main package) error: Release field must be present in package: (main package) error: Summary field must be present in package: (main package) error: Group field must be present in package: (main package) error: License field must be present in package: (main package)

I suspect I am missing the spec file you mentioned earlier ...

On 29/12/05, Tony Earnshaw <ton@barlaeus.nl> wrote:

Jonathan Chong wrote:

I downloaded and installed fam-2.7.0 as recommended by Tony.

I uninstalled the previously installed fam rpms.

Downloaded the 2.7.0 source, extracted it to a folder in /usr/local/src/.

Did a ./configure and make then make install.

Went back to the top of this thread and followed all the instructions.

Still no go.

Don't run it from xinetd, make an rpm from the source (SGI includes a spec file), install that and run it as a stand-alone daemon. My init script is attached, if the list allows attachments.

--Tonni

-- Tony Earnshaw Email: ton@barlaeus.nl

#!/bin/sh # # This is a /etc/rc.d/init.d file for the standalone famd daemon # # chkconfig: 2345 80 30 # description: auxiliary for Courier-IMAP # # # . /etc/init.d/functions

case "$1" in start) # Courier needs famd ... daemon /usr/sbin/famd -T 0 & echo"";echo -n "Starting famd daemon";echo"" wait echo `ps aux | grep famd |grep -v grep | awk '{ print $2 }'` >
/var/run/famd.pid ;; stop) # Stop famd echo"";echo "Stopping famd daemon" daemon kill `cat /var/run/famd.pid` ;; restart) $0 stop $0 start ;; esac exit 0