CMD_API_POP full_list not work

please help !

I read this http://www.directadmin.com/features.php?id=1505 and try to use ..

in directadmin.conf i put:
HTML:
user_can_set_email_limit=1
count_pop_usage=1

I check in some user that i can see in Email Account = SENT/LIMIT

all work great !!

but when i use httpsocket like this:

HTML:
 $sock = new HTTPSocket;
 $sock->connect($rootIP,2222);
 $sock->set_login($UN,$lPW);
 $sock->set_method('POST');

  $sock->query('/CMD_API_POP','action=full_list&type=quota&domain='.$domain);
  $resultquota = $sock->fetch_parsed_body();

  more code ...

I get this: (without LIMIT):
quota=0&sent=0&usage=468848640

PHP ERROR LOG:
Notice: Undefined index: limit
 
Back
Top