From a4e6eeebb0e974c7dfd0cb55bc4cc14b33eb8608 Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 9 Nov 2010 07:54:34 +0000 Subject: - Add support for shared folders (#1403507) git-svn-id: https://svn.roundcube.net/trunk@4198 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/installer/rcube_install.php | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'roundcubemail/installer') diff --git a/roundcubemail/installer/rcube_install.php b/roundcubemail/installer/rcube_install.php index 677dda1e5..69be02563 100644 --- a/roundcubemail/installer/rcube_install.php +++ b/roundcubemail/installer/rcube_install.php @@ -38,6 +38,7 @@ class rcube_install 'locale_string' => 'language', 'multiple_identities' => 'identities_level', 'addrbook_show_images' => 'show_images', + 'imap_root' => 'imap_ns_personal', ); // these config options are required for a working system @@ -169,16 +170,17 @@ class rcube_install else if ($prop == 'smtp_pass' && !empty($_POST['_smtp_user_u'])) { $value = '%p'; } - else if ($prop == 'default_imap_folders'){ - $value = Array(); - foreach($this->config['default_imap_folders'] as $_folder){ - switch($_folder) { - case 'Drafts': $_folder = $this->config['drafts_mbox']; break; - case 'Sent': $_folder = $this->config['sent_mbox']; break; - case 'Junk': $_folder = $this->config['junk_mbox']; break; - case 'Trash': $_folder = $this->config['trash_mbox']; break; + else if ($prop == 'default_imap_folders') { + $value = Array(); + foreach ($this->config['default_imap_folders'] as $_folder) { + switch($_folder) { + case 'Drafts': $_folder = $this->config['drafts_mbox']; break; + case 'Sent': $_folder = $this->config['sent_mbox']; break; + case 'Junk': $_folder = $this->config['junk_mbox']; break; + case 'Trash': $_folder = $this->config['trash_mbox']; break; } - if (!in_array($_folder, $value)) $value[] = $_folder; + if (!in_array($_folder, $value)) + $value[] = $_folder; } } else if (is_bool($default)) { -- cgit v1.2.3