With Horde, you can make it visible in the Email folders by adding this to /usr/local/cpanel/base/horde/imp/config/servers.php:
Code:
quota' => array(
'driver' => 'courier',
'params' => array()
)
For example, my test machine has the following in servers.php:
Code:
$servers['imap'] = array(
'name' => 'IMAP Server',
'server' => 'localhost',
'hordeauth' => 'full',
'protocol' => 'imap/notls',
'port' => 143,
'maildomain' => getenv("DNS"),
'smtphost' => 'localhost',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'dotfiles' => false,
'hierarchies' => array(),
'quota' => array(
'driver' => 'courier',
'params' => array()
),
)