Skip to content

Commit

Permalink
Always display all mailboxes (including unsubscribed) when creating f…
Browse files Browse the repository at this point in the history
…ilters)

It is handy to be able to filter messages into mailboxes you don't
normally list (e.g. archiving).
  • Loading branch information
slusarz committed Jan 16, 2015
1 parent 343b184 commit 0d243dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ingo/lib/Flist.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ public static function select($value = null, $tagname = 'actionvalue')
if ($registry->hasMethod('mail/mailboxList')) {
try {
$view->create = $registry->hasMethod('mail/createMailbox');
$view->mboxes = $registry->call('mail/mailboxList');
$view->mboxes = $registry->mail->mailboxList(array(
'unsub' => true
));

$page_output->addScriptFile('new_folder.js');
$page_output->addInlineJsVars(array(
Expand Down

0 comments on commit 0d243dd

Please sign in to comment.