diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-30 15:22:36 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-30 15:22:36 +0000 |
| commit | b67b610524889a4ff8d6ce8281a1586172df28fb (patch) | |
| tree | 6a481e7e72f751e31b89baee83c19b1f956fc793 | |
| parent | e1e6a8446d3d7231064913e454698d202a64be87 (diff) | |
Restrict folders list to write-only
git-svn-id: https://svn.roundcube.net/trunk@5298 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | plugins/archive/archive.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/archive/archive.php b/plugins/archive/archive.php index 843b61217..a56806263 100644 --- a/plugins/archive/archive.php +++ b/plugins/archive/archive.php @@ -100,7 +100,7 @@ class archive extends rcube_plugin // load folders list when needed if ($CURR_SECTION) $select = rcmail_mailbox_select(array('noselection' => '---', 'realnames' => true, - 'maxlength' => 30, 'exceptions' => array('INBOX'))); + 'maxlength' => 30, 'exceptions' => array('INBOX'), 'folder_filter' => 'mail', 'folder_rights' => 'w')); else $select = new html_select(); |
