summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ad96022)
raw | patch | inline | side by side (parent: ad96022)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Apr 2006 10:47:43 +0000 (10:47 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Apr 2006 10:47:43 +0000 (10:47 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2974 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_mail-methods-kolab.inc | patch | blob | history |
index 59e9aceb5b661adfbe1df3cec6819ba8c55b02d5..1f785a06390ff907968de9c6779e474b06f7a5a3 100644 (file)
return (TRUE);
}
+ function getQuota($folder)
+ {
+ $result= array('quotaUsage' => '', 'gosaMailQuota' => '');
+
+ /* Load quota settings */
+ $folder = $folder;
+
+ /* try to read quota with style of users
+ user/name@server.de
+ */
+ $quota_value = @imap_get_quota($this->mbox, str_replace("user.","user/",$folder));
+
+ /* If obove method failed, try to read quota with style of users
+ user.name@server.de
+ */
+ if(!is_array($quota_value)){
+ $quota_value = @imap_get_quota($this->mbox, $folder);
+ }
+
+ if(is_array($quota_value)) {
+ if (isset($quota_value["STORAGE"]) && is_array($quota_value["STORAGE"])){
+ /* use for PHP >= 4.3 */
+ $result['quotaUsage']= ($quota_value["STORAGE"]['usage'] / 1024);
+ $result['gosaMailQuota']= ($quota_value["STORAGE"]['limit'] / 1024);
+ } else {
+ /* backward icompatible */
+ $result['quotaUsage']= ($quota_value['usage'] / 1024);
+ $result['gosaMailQuota']= ($quota_value['limit'] / 1024);
+ }
+ }
+ return ($result);
+ }
+
+
function deleteMailbox($folder)
{