Opened 3 years ago
Closed 5 months ago
#1486332 closed Feature Requests (wontfix)
Variable quota limits
| Reported by: | joval | Owned by: | |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.9-beta |
| Component: | User Interface | Version: | 0.3.1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description (last modified by alec)
I found out that the quota limits are hardcoded to the following values:
# grep -n limit_ program/js/app.js*
program/js/app.js.src:4057: var limit_high = 80;
program/js/app.js.src:4058: var limit_mid = 55;
program/js/app.js.src:4089: if (quota >= limit_high) {
program/js/app.js.src:4093: else if(quota >= limit_mid) {
Could these be made variables so that they could be set/changed in the main.inc.php as
$rcmail_config['quota_limit_high'] = 80; $rcmail_config['quota_limit_med'] = 55;
This way this could even be controlled as user preferences
Change History (1)
comment:1 Changed 5 months ago by alec
- Description modified (diff)
- Milestone changed from later to 0.9-beta
- Resolution set to wontfix
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

There are no such limits in Larry skin, so implementing config for only one (deprecated) skin is useless.