https://github.com/jfcherng-roundcube/plugin-show-folder-size
A Roundcube plugin which shows folder size.
https://github.com/jfcherng-roundcube/plugin-show-folder-size
mailbox plugin quota roundcube roundcube-plugin
Last synced: 4 months ago
JSON representation
A Roundcube plugin which shows folder size.
- Host: GitHub
- URL: https://github.com/jfcherng-roundcube/plugin-show-folder-size
- Owner: jfcherng-roundcube
- License: mit
- Created: 2018-06-11T13:40:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-07T17:12:41.000Z (about 1 year ago)
- Last Synced: 2025-12-26T11:57:35.152Z (6 months ago)
- Topics: mailbox, plugin, quota, roundcube, roundcube-plugin
- Language: PHP
- Homepage:
- Size: 1.19 MB
- Stars: 19
- Watchers: 3
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Roundcube Plugin: Show Folder Size
[](https://github.com/jfcherng-roundcube/plugin-show-folder-size/actions)
[](https://github.com/jfcherng-roundcube/plugin-show-folder-size/actions)
[](https://packagist.org/packages/jfcherng-roundcube/show-folder-size)
[](https://packagist.org/packages/jfcherng-roundcube/show-folder-size)
[](https://github.com/jfcherng-roundcube/plugin-show-folder-size/blob/v6/LICENSE)
[](https://github.com/jfcherng-roundcube/plugin-show-folder-size/stargazers)
[](https://www.paypal.me/jfcherng/5usd)
A Roundcube plugin which shows folder size.
## Requirements
I only test this plugin with following environments. Other setup may work with luck.
- PHP: >= `7.1.3`
- Roundcube: `1.3.9`, `1.4.0`
- Supported skins: `Classic`, `Larry`, `Elastic`
If you need support for PHP `5.4` ~ `7.0`, go to the
[php5](https://github.com/jfcherng-roundcube/plugin-show-folder-size/tree/php5)
branch or just let Composer decide the version to be installed. But note that
I am not meant to maintain the `php5` branch because even PHP 5.6 is quite outdated nowadays.
## Demo

## How to install this plugin in Roundcube
### Install via Composer (Recommended)
This plugin has been published on [Packagist](https://packagist.org) by the name of [jfcherng-roundcube/show-folder-size](https://packagist.org/packages/jfcherng-roundcube/show-folder-size).
1. Go to your `ROUNDCUBE_HOME` (i.e., the root directory of your Roundcube).
2. Run `composer require jfcherng-roundcube/show-folder-size`.
3. If you want to do plugin configuration, copy `config.inc.php.dist` to `config.inc.php` and then edit `config.inc.php`.
### Install manually
1. Create folder `show_folder_size` in `ROUNDCUBE_HOME/plugins` if it does not exist.
2. Copy all plugin files there.
3. If you want to do plugin configuration, copy `config.inc.php.dist` to `config.inc.php` and then edit `config.inc.php`.
(You can skip this step since there is no configuration for this plugin at this moment.)
4. Edit your Roundcube's config file (`ROUNDCUBE_HOME/config/config.inc.php` or maybe `/etc/roundcube/config.inc.php`), locate `$config['plugins']` and add `'show_folder_size',`.
```php