Show email accounts

cashmere

Verified User
Joined
May 6, 2005
Messages
9
I started scripting on the API again since some months. In the past i could drop all email accounts under a domain and the quota with this piece of code:

PHP:
$mydata = array(
'action' => 'list',
'domain' => $udomain,
);
	$sock->query('/CMD_API_POP',$mydata);
	$result = $sock->fetch_parsed_body();

But this doenst work anymore, it doesnt show me the quota for each pop account anymore!

What should i do?
 
Back
Top