Horde prefs to Always display all folders
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.
$_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);
}
);
-
Hello :) Could you provide a screenshot of how you prefer it to look, and how it looks normally, so we can understand exactly what feature you are referring to? Thank you. 0 -
Sure when the client logs in it normally looks like this . . . .vB I would prefer that it look like this . . . .vB There is a preference which seems to have no effect at Prefs>Mail>Folder Display .vB 0 -
Hello :) The additional IMAP folders you are referring to show up after I deselect the "Use IMAP mailbox subscriptions?" option that you referenced. Have you tried disabling this option and refreshing your browser? Thank you. 0 -
Thanks Michael, that does work. Add this in the /usr/local/cpanel/base/horde/imp/config/prefs.d/10-webmail.php will globalize that => changes value from 1 to 0 $_prefs['subscribe"> = array( 'value' => 0, 'type' => 'checkbox', 'desc' => _("Use IMAP mailbox subscriptions?"), 'on_change' => function() { $GLOBALS['injector">->getInstance('IMP_Imap_Tree')->init(); } ); Thanks. 0
Please sign in to leave a comment.
Comments
4 comments