this is a fix for the LSUB with a % when getting the folder list. This makes the...
[squirrelmail.git] / config / config_default.php
index 2da4eaccd4332976b6737ccaaf09037a52e87c66..656c9ddfccb6204dcfbe0501a1f84b8cfb2ce348 100644 (file)
@@ -369,6 +369,12 @@ $theme[30]['NAME'] = 'Random (Changes every login)';
 $theme[31]['PATH'] = '../themes/midnight.php';
 $theme[31]['NAME'] = 'Midnight';
 
+$theme[32]['PATH'] = '../themes/alien_glow.php';
+$theme[32]['NAME'] = 'Alien Glow';
+
+$theme[33]['PATH'] = '../themes/dark_green.php';
+$theme[33]['NAME'] = 'Dark Green';
+
 /**
  * LDAP server(s)
  *   Array of arrays with LDAP server parameters. See
@@ -469,14 +475,31 @@ $edit_name = true;
 
 
 /**
-* If you want to enable server side thread sorting options
-* Your IMAP server must support the THREAD extension for 
-* this to work.
-*/
+ * If you want to enable server side thread sorting options
+ * Your IMAP server must support the THREAD extension for 
+ * this to work.
+ */
 
 global $allow_thread_sort;
 $allow_thread_sort = false;
 
+/** 
+ * to use server-side sorting instead of SM client side.
+ * Your IMAP server must support the SORT extension for this
+ * to work.
+ */
+
+global $allow_server_sort;
+$allow_server_sort = false;
+
+/**
+ * This enables the no select fix for Cyrus when subfolders
+ * exist but parent folders do not
+ */
+
+global $noselect_fix_enable;
+$noselect_fix_enable = false;
+
 /**
  * Make sure there are no characters after the PHP closing
  * tag below (including newline characters and whitespace).