fixed for changes to conf.pl.
[squirrelmail.git] / config / config_default.php
index 2002038381666515a67d495df0fed1464525cb4a..1311ea4a3147821cc3cc5538560f945ae56f7a80 100644 (file)
@@ -17,10 +17,10 @@ global $org_logo;
 $org_logo = '../images/sm_logo.png';
 
 /*  The width of the logo (0 for default) */
-$org_logo_width = 0;
+$org_logo_width = 308;
 
 /*  The height of the logo (0 for default) */
-$org_logo_height = 1;
+$org_logo_height = 111;
 
 
 /* Organization's name */
@@ -32,7 +32,7 @@ $org_name = 'SquirrelMail';
  *   This is the web page title that appears at the top of the browser window.
  */
 global $org_title;
-$org_title = 'SquirrelMail $version';
+$org_title = "SquirrelMail $version";
     
 /**
  * Default language
@@ -467,6 +467,24 @@ global $edit_identity, $edit_name;
 $edit_identity = true;
 $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.
+ */
+
+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;
+
 /**
  * Make sure there are no characters after the PHP closing
  * tag below (including newline characters and whitespace).