added blue steel theme to array
[squirrelmail.git] / config / config_default.php
index f97239efff27a79c4bf60bce746c087f639ad649..69ea08eda7253841d176a1a21166d8e7f1a199c7 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 //  Organization's logo picture (blank if none)
     $org_logo = "../images/sm_logo.jpg";
 
 //  folders will be the same color as the other folders
     $use_special_folder_color = true;
 
+//  The type of IMAP server you are running
+//  Valid type are the following (case is important).
+//  
+//  courier
+//  cyrus
+//  exchange
+//  uw
+    $imap_server_type = "cyrus";
+
+//  Many servers store mail in your home directory.  With this, they
+//  store them in a subdirectory: mail/ or Mail/, etc.  If your
+//  server does this, please set this to what the default mail folder
+//  should be.  This is still a user preference, so they can change
+//  it if it is different for each user.
+//
+//  Example:
+//     $default_folder_prefix = "mail/";
+//        -- or --
+//     $default_folder_prefix = "Mail/folders/";
+//
+//  If you do not use this, please set it to "".
+    $default_folder_prefix = "";
+//  If you do not wish to give them the option to change this, set it to false.
+//  Otherwise, if it is true, they can change the folder prefix to be anything.
+    $show_prefix_option = false;
+
 //  The following are related to deleting messages.
 //    $move_to_trash
 //         - if this is set to "true", when "delete" is pressed, it
@@ -53,6 +79,7 @@
 //         - This is the path to where Sent messages will be stored.
 
     $default_move_to_trash = true;
+    $default_move_to_sent  = true;
     $trash_folder = "INBOX.Trash";
     $auto_expunge = true;
     $sent_folder = "INBOX.Sent";
@@ -65,7 +92,7 @@
 
     $special_folders[0] = "INBOX";   // The first one has to be the inbox (whatever the name is)
     $special_folders[1] = $trash_folder;
-    $special_folders[2] = "INBOX.Sent";
+    $special_folders[2] = $sent_folder;
     $special_folders[3] = "INBOX.Drafts";
     $special_folders[4] = "INBOX.Templates";
 
     $theme[7]["PATH"] = "../config/seaspray_theme.php";
     $theme[7]["NAME"] = "Sea Spray";
 
+    $theme[8]["PATH"] = "../config/plain_blue_theme.php";
+    $theme[8]["NAME"] = "Plain Blue";
+
+    $theme[9]["PATH"] = "../config/bluesteel_theme.php";
+    $theme[9]["NAME"] = "Blue Steel";
 
 //  LDAP server(s)
 //
 //    functions/abook_ldap_server.php for a list of possible
 //    parameters
 
-    $ldap_server[0] = Array("host" => "memberdir.netscape.com",
-                           "name" => "Netcenter Member Directory",
-                           "base" => "ou=member_directory,o=netcenter.com");
+    $ldap_server[0] = Array(
+                       "host" => "memberdir.netscape.com",
+                       "name" => "Netcenter Member Directory",
+                       "base" => "ou=member_directory,o=netcenter.com");
+
+    $ldap_server[1] = Array(
+                       "host" => "ldap.bigfoot.com",
+                       "name" => "Bigfoot Directory",
+                       "base" => "",
+                       "charset" => "iso8859-1");
+
+ // you have an option to chose between javascript or html version of
+ // address book searching.  
+ //   true = javascript
+ //  false = html
 
-    $ldap_server[1] = Array("host" => "ldap.bigfoot.com",
-                           "name" => "Bigfoot Directory",
-                           "base" => "",
-                           "charset" => "iso8859-1");
+ $default_use_javascript_addr_book = false;
 
 ?>