4 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Gone "code-blind". Ca...
FromSent OnAttachments
Ed WildgooseMar 30, 2005 6:09 am 
Stefan HornburgMar 30, 2005 6:21 am 
Tony EarnshawMar 30, 2005 6:46 am 
Thorsten HaudeApr 3, 2005 10:42 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: [maildropl] Gone "code-blind". Can someone please spot the error hereActions...
From:Stefan Hornburg (rac@linuxia.de)
Date:Mar 30, 2005 6:21:35 am
List:net.sourceforge.lists.courier-maildrop

On Wed, 30 Mar 2005 15:08:31 +0100 Ed Wildgoose <lis@wildgooses.com> wrote:

OK, I have been staring at this for a while and can't see what's going wrong. It's with a 1.7.0 maildrop package:

`test -e /home` if ( $RETURNCODE = 0 ) { echo "success:${RETURNCODE}" } else { echo "failed:${RETURNCODE}" }

Try

if ( $RETURNCODE == 0 )

to avoid a typical programming error.

Bye Racke