The new version of Horde while cosmetically better has really taken a step backwards in functionality.
And the documentation on their website is so hard to find as to be almost useless.
How to set the following prefs?
Always display all folders. Even the user prefs within Horde don't seem to work to always display all folders, the user must select it from the Folder Actions every time.
I've found the following instructions somewhere, add this to /usr/local/cpanel/base/horde/imp/config/prefs.php (although that file says not to edit it and put it in prefs.d/prefs.php so I tried both) to no avail.
And the documentation on their website is so hard to find as to be almost useless.
How to set the following prefs?
Always display all folders. Even the user prefs within Horde don't seem to work to always display all folders, the user must select it from the Folder Actions every time.
I've found the following instructions somewhere, add this to /usr/local/cpanel/base/horde/imp/config/prefs.php (although that file says not to edit it and put it in prefs.d/prefs.php so I tried both) to no avail.
Code:
$_prefs['nav_expanded'] = array(
'value' => 1,
'type' => 'enum',
'enum' => array(
0 => _("No"),
1 => _("Yes"),
2 => _("Remember the last view")
),
'desc' => _("Expand the entire folder tree by default in the folders view?"),
'suppress' => function() {
return !$GLOBALS['injector']->getInstance('IMP_Imap')->access(IMP_Imap::ACCESS_FOLDERS);
}
);