Hi,

My system is RH Linux9.0, Apache 2.0, Perl 5.8.0, XMail::Ctrl 2.0, Digest-MD5 2.4

my program is (listuser.cgi):
*********

#!/usr/bin/perl
print "Content-type:text/html \n\n";
use XMail::Ctrl;
my $xmadm="postmaster";
my $xmpass="*******";
my $xmport="6017";
my $xmhost="localhost";

my $xmail = XMail::Ctrl -> new (
    ctrlid      => "$xmadm",
    ctrlpass    => "$xmpass",
    port        => "$xmport",
    host        => "$xmhost"
    ) or print $!;
$xmail->debug(1);
my $list = $xmail -> userlist (
    {
        domain=>"mydomain.com"
    }
    );

foreach my $line (@{$list})
{
    $line1 = join ("\t",@{$line}) ."<br>\n";
    ($domain,$user,$pass,$id1)=split(/\t/, $line1);
    print $user."@".$domain."<br>\n";
}
$xmail->quit;
********

but i get error "error: code:00171 description:Resource lock entry not
found "

What does it mean?
Please, help.

Dmitry
Mail To:  [EMAIL PROTECTED]

P.S. Sorry for my bad english :(

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

Reply via email to