in webmail there is no quota indicator

Discussion in 'Installation/Configuration' started by luxor, Nov 30, 2005.

  1. luxor

    luxor New Member

    hi,
    i have a problem with Uebimiau, in webmail there is no quota indicator
    my pop3 daemon is courier on debian 3.1


    Any Ideas
     
  2. falko

    falko Super Moderator Howtoforge Staff

    The quota is set here: /home/admispconfig/ispconfig/web/webmail/inc/config.php.
     
  3. luxor

    luxor New Member

    But if i set the quota in /home/admispconfig/ispconfig/web/webmail/inc/config.php this is equal for all user?
    I want to set up the quota for every user, is possible?
     
  4. till

    till Super Moderator Staff Member ISPConfig Developer

    No, thats not possible without rewriting the quota handling in UebiMiau.
     
  5. luxor

    luxor New Member

    how to make? what I must modify?
     
  6. falko

    falko Super Moderator Howtoforge Staff

    You have to read the quota setting for the currently logged in user from the ISPConfig database.
     
  7. luxor

    luxor New Member

    which file of uebmiau I must modify?
    you know a howto for this argument?

    in inc.php i see:

    // if no quota limit is set in config.php, then take the user's quota limit from the ISPConfig database
    if(!isset($quota_limit)){
    if($user){
    if($user['user_speicher'] < 0) $user['user_speicher'] = 200;
    if($user['user_mailquota'] < 0) $user['user_mailquota'] = 200;
    $sess['quota_limit'] = min($user['user_speicher'], $user['user_mailquota']) * 1024; // in KB, eg. 4096 Kb = 4MB
    }
    $quota_limit = $sess['quota_limit'];
    }


    what is this???? not work!
     
    Last edited: Dec 1, 2005

Share This Page