replace CVS with SVN
[squirrelmail.git] / config / config_default.php
index 67fd1064f5ce9126f4dc0aacfd4f79b3b8451116..93b5fdac65cdba12c9e18c60fdc667edbdf04307 100644 (file)
@@ -25,7 +25,7 @@
 /* Do not change this value. */
 global $version;
 global $config_version;
-$config_version = '1.4.0';
+$config_version = '1.5.0';
 
 /*** Organization preferences ***/
 /**
@@ -686,6 +686,8 @@ $user_theme_default = 0;
 $user_themes[0]['PATH'] = 'none';
 $user_themes[0]['NAME'] = 'Default';
 
+$user_themes[1]['PATH'] = '../css/blue_gradient/';
+$user_themes[1]['NAME'] = 'Blue Options';
 
 /**
  * Message Icons control
@@ -694,7 +696,7 @@ $user_themes[0]['NAME'] = 'Default';
  * @global bool $use_icons
  * @since 1.5.1
  */
-$use_icons = false;
+$use_icons = true;
 
 /**
  * Icon Themes
@@ -706,15 +708,19 @@ $use_icons = false;
  *    number to the array below and follow the pattern
  * 
  *    $icon_theme_default sets the theme that will be used by default.
+ *    $icon_theme_fallback specifies which theme will be used if an icon is 
+ *    not found in the selected theme
  * 
  * @global integer $icon_theme_def
+ * @global integer $icon_theme_fallback
  * @since 1.5.2
  */
-$icon_theme_def = 0;
+$icon_theme_def = 1;
+$icon_theme_fallback = 3;
 
 /**
  * Listing of installed icon themes
- * @global array $icon_themes;
+ * @global array $icon_themes
  * @since 1.5.2
  */
 $icon_themes[0]['PATH'] = 'none';
@@ -731,8 +737,8 @@ $icon_themes[3]['NAME'] = 'XP Style Icons';
 
 /**
  * Templates
- *   You can define your own template and put it in a new directory
- *   under SM_PATH/templates.  The ID must match the name of
+ *   You can define your own template set (skin) and put it in a new 
+ *   directory under SM_PATH/templates.  The ID must match the name of
  *   the template directory as the example below. You can name the 
  *   template whatever you want. For an example of a template, see 
  *   the ones included in the SM_PATH/templates directory.
@@ -740,12 +746,22 @@ $icon_themes[3]['NAME'] = 'XP Style Icons';
  * To add a new template to the options that users can choose from, just
  * add a new number to the array at the bottom, and follow the pattern.
  *
- * $templateset_default sets theme that will be used by default.
+ * $templateset_default sets the skin that will be used by default
+ *                      when a user doesn't have a skin selection
+ *                      in their preferences. (Must be the "ID" of
+ *                      the desired template set)
  *
- * @global integer $templateset_default
+ * $templateset_fallback tells SquirrelMail which template set (skin)
+ *                       to use when looking for a file that is not
+ *                       contained within whatever skin is currently
+ *                       being used.  (Must be the "ID" of the desired 
+ *                       template set)
+ *
+ * @global string $templateset_default
+ * @global string $templateset_fallback
  */
-$templateset_default = 0;
-$templateset_fallback = 0;
+$templateset_default = 'default';
+$templateset_fallback = 'default';
 
 $aTemplateSet[0]['ID'] = 'default';
 $aTemplateSet[0]['NAME'] = 'Default';
@@ -867,6 +883,18 @@ $motd = "";
 // Add list of enabled plugins here
 
 
+/**
+ * To disable all plugins regardless of any that are installed 
+ * above, turn on $disable_plugins.  To disable them ONLY for 
+ * one user, put that username into $disable_plugins_user.
+ * @global boolean $disable_plugins
+ * @global string $disable_plugins_user
+ * @since 1.5.2
+ */
+$disable_plugins = false;
+$disable_plugins_user = '';
+
+
 /*** Database ***/
 /**
  * Read doc/database.txt in order to get more information