Nope, no such luck. Also tried
if ("test -d $VHOME/Maildir")
and it did not work either (was assuming 0=false and 1=true).
At this point, I am wondering if the expressions and/or the if statement are
broken under RH8. Has anybody successfully installed and used maildrop
under RH8? Something is out of whack because, with RETURNCODE=0, both of
the following expressions evaluate to true:
if ($RETURNCODE != 0)
and
if ($RETURNCODE == 0)
How in the world is that possible, even?!?
-----Original Message-----
From: cour...@lists.sourceforge.net
[mailto:cour...@lists.sourceforge.net]On Behalf Of Mark
Weinem
Sent: Wednesday, April 16, 2003 12:17 PM
To: cour...@lists.sourceforge.net
Subject: Re: [maildropl] why doesn't 0==0?
On Tue, 15 Apr 2003, Benjamin Tomhave wrote:
I don't suppose anybody on this list has maildrop 1.5.2
installed and could
tell me if they have expressions like the below implemented and
working? In
the meantime, I'm downloading the latest snapshot to see it works with
that...
I don't catch the "test" command, but what's about this:
if ("$VHOME/Maildir" == 0)
{
echo "Sorry, no mailbox here by that name."
echo "VHOME is $VHOME"
EXITCODE=100
exit
}
Ciao, Mark