20 messages in net.sourceforge.lists.courier-usersRE: [courier-users] deleting messages...
FromSent OnAttachments
Mitch (WebCob)Jan 13, 2004 11:47 am 
Chris PetersenJan 13, 2004 1:43 pm 
Mitch (WebCob)Jan 13, 2004 2:09 pm 
Mitch (WebCob)Jan 13, 2004 11:38 pm 
Jeff JansenJan 14, 2004 1:24 am 
Mitch (WebCob)Jan 14, 2004 1:51 am 
Jon NelsonJan 14, 2004 5:38 am 
Troy BenjegerdesJan 14, 2004 8:24 am 
Jon NelsonJan 14, 2004 8:32 am 
Mitch (WebCob)Jan 14, 2004 11:29 am 
Jon NelsonJan 14, 2004 12:19 pm 
Mitch (WebCob)Jan 14, 2004 1:11 pm 
Jon NelsonJan 14, 2004 1:18 pm 
Mitch (WebCob)Jan 14, 2004 1:43 pm 
Jon NelsonJan 14, 2004 2:05 pm 
Mitch (WebCob)Jan 14, 2004 2:42 pm 
Sam VarshavchikJan 14, 2004 3:23 pm 
Mitch (WebCob)Jan 14, 2004 3:53 pm 
Jon NelsonJan 14, 2004 4:13 pm 
Jon NelsonJan 14, 2004 4:20 pm 
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] deleting messages reviewed...Actions...
From:Mitch (WebCob) (mit@webcob.com)
Date:Jan 13, 2004 11:38:39 pm
List:net.sourceforge.lists.courier-users

Nope - Chris - it doesn't work... at least for me...

I'm running freebsd, which does not allow a process to place an flock on /dev/null (or at least a non root one...

so delivery results in this error:

flock() failed. status deferred.

so on FreeBSD, the cat seems to be required...

Should this be fixed? Seems kinda messy.

to "|cat >/dev/null"

(because it's a pipe, there is no lock attempted - right?)

vs:

to /dev/null

which attempts an flock (thinks it's working with an mbox style file - a lock is needed to prevent corruption)

m/

-----Original Message----- From: cour@lists.sourceforge.net [mailto:cour@lists.sourceforge.net]On Behalf Of Chris Petersen Sent: Tuesday, January 13, 2004 1:43 PM To: cour@lists.sourceforge.net Subject: Re: [courier-users] deleting messages reviewed...

I'm dumping message by piping to cat and dumping it's output to /dev/null - we can't deliver directly to it due to ownership issues - right? wouldn't it make sense to have an exception to the security rule for /dev/null to avoid having to shell and cat just to dump a message?

What ownership issues? /dev/null is world-writable. I use "to /dev/null" in my .mailfilter all the time. Or am I misunderstanding what you're trying to do?