|
|
@@ -162,7 +162,31 @@ class Accounts extends DataTable implements ClientArea
|
|
|
}
|
|
|
$productManager = new ProductManager();
|
|
|
$productManager->loadByHostingId($hosting->id);
|
|
|
- $fields = array('loginName','isEnabled','lastLoginInfo','diskSizeLimit');
|
|
|
+ $fields = array(
|
|
|
+ "id",
|
|
|
+ "loginName",
|
|
|
+ "fullName",
|
|
|
+ "description",
|
|
|
+ "authType",
|
|
|
+ "itemSource",
|
|
|
+ "isEnabled",
|
|
|
+ "isPasswordReversible",
|
|
|
+ "emailAddresses",
|
|
|
+ "emailForwarding",
|
|
|
+ "userGroups",
|
|
|
+ "role",
|
|
|
+ "itemLimit",
|
|
|
+ "diskSizeLimit",
|
|
|
+ "consumedItems",
|
|
|
+ "consumedSize",
|
|
|
+ "hasDomainRestriction",
|
|
|
+ "outMessageLimit",
|
|
|
+ "effectiveRole",
|
|
|
+ "homeServer",
|
|
|
+ "migration",
|
|
|
+ "lastLoginInfo",
|
|
|
+ "accessPolicy");
|
|
|
+// array('loginName','isEnabled','lastLoginInfo','diskSizeLimit');
|
|
|
$accounts = $api->getUsers($fields,$this->maildomainID);
|
|
|
|
|
|
|