<configinteger name="viewport_wait" desc="How long, in seconds, to wait
before displaying an informational message to users that the message list is
still being built. Set to 0 to disable messages.">12</configinteger>
- <configboolean name="background_inbox" required="false" desc="On initial
- login to the portal page, load the INBOX in the
- background?">true</configboolean>
</configsection>
<configsection name="menu" desc="Menu Settings">
this.go('folder:INBOX');
} else {
this.go('portal');
- if (DIMP.conf.background_inbox) {
- this.loadMailbox('INBOX', { background: true });
- }
+ this.loadMailbox('INBOX', { background: true });
}
}
// Other variables
'app_urls' => $app_urls,
- 'background_inbox' => intval(!empty($GLOBALS['conf']['dimp']['viewport']['background_inbox'])),
'buffer_pages' => intval($GLOBALS['conf']['dimp']['viewport']['buffer_pages']),
'debug' => intval(!empty($GLOBALS['conf']['dimp']['js']['debug'])),
'disable_compose' => !IMP::canCompose(),