Copypaste error. This could be avoided by doing $theme[] in stead of $theme[n]
[squirrelmail.git] / config / config_default.php
index 656c9ddfccb6204dcfbe0501a1f84b8cfb2ce348..dab7f24cf276da85e8825be5545cd897976432dc 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * BEFORE EDITING THIS FILE!
  *
@@ -10,7 +11,7 @@
 
 /* Do not change this value. */
 global $config_version;
-$config_version = '1.2.0';
+$config_version = '1.4.0';
 
 /* Organization's logo picture (blank if none) */
 global $org_logo;
@@ -267,12 +268,11 @@ $force_username_lowercase = false;
  * To add a new theme to the options that users can choose from, just
  * add a new number to the array at the bottom, and follow the pattern.
  */
+
+$theme_default = 0;
+
 global $theme;
 
-/**
- * The first one HAS to be here, and is your system's default
- * theme. It can be any theme you want.
- */
 $theme[0]['PATH'] = '../themes/default_theme.php';
 $theme[0]['NAME'] = 'Default';
 
@@ -375,6 +375,9 @@ $theme[32]['NAME'] = 'Alien Glow';
 $theme[33]['PATH'] = '../themes/dark_green.php';
 $theme[33]['NAME'] = 'Dark Green';
 
+$theme[34]['PATH'] = '../themes/penguin.php';
+$theme[34]['NAME'] = 'Penguin';
+
 /**
  * LDAP server(s)
  *   Array of arrays with LDAP server parameters. See
@@ -500,6 +503,36 @@ $allow_server_sort = false;
 global $noselect_fix_enable;
 $noselect_fix_enable = false;
 
+/**
+ * this disables listing all of the folders on the IMAP Server to
+ * generate the folder subscribe listbox (this can take a long time
+ * when you have a lot of folders).  Instead, a textbox will be
+ * displayed allowing users to enter a specific folder name to subscribe to */
+global $no_list_for_subscribe;
+$no_list_for_subscribe = false;
+
+/**
+ * Advanced authentication options
+ * CRAM-MD5, DIGEST-MD5, Plain, and TLS
+ * Set reasonable defaults - you'd never know this was there unless you ask for it
+ */
+global $use_imap_tls;
+global $use_smtp_tls;
+$use_imap_tls = false;
+$use_smtp_tls = false;
+
+/* auth_mech can be either 'plain', 'cram-md5', or 'digest-md5'
+   SMTP can also be 'none'
+*/
+global $smtp_auth_mech;
+global $imap_auth_mech;
+$smtp_auth_mech = 'none';
+$imap_auth_mech = 'plain';
+
+/* PHP session name.  Leave this alone unless you know what you are doing. */
+global $session_name;
+$session_name = 'SQMSESSID';
+
 /**
  * Make sure there are no characters after the PHP closing
  * tag below (including newline characters and whitespace).