diff options
author | alecpl <alec@alec.pl> | 2009-09-23 12:32:09 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-23 12:32:09 +0000 |
commit | 1cead0cbf40468233f1f644ee6bf11835c74737a (patch) | |
tree | d62d415cd7daf6abdc00a320f429826bd563d706 /program/include/rcmail.php | |
parent | ddc891db460ddabef3194f57177b4f9fb182210e (diff) |
- sorting by message index - added 'index_sort' option (#1485936)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index f37f841d5..a38845944 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -366,6 +366,7 @@ class rcmail $this->imap = new rcube_imap($this->db); $this->imap->debug_level = $this->config->get('debug_level'); $this->imap->skip_deleted = $this->config->get('skip_deleted'); + $this->imap->index_sort = $this->config->get('index_sort', true); // enable caching of imap data if ($this->config->get('enable_caching')) { |