Fixed config_version for config_default.php
[squirrelmail.git] / config / config_default.php
index c1d4fc498730104d5de0b1c502a203e9ebee8c0f..8196a3aac91ca64b9408cc765521e2fe8c656934 100644 (file)
 
     // don't change
     global $config_version;
-    $config_version = "x63";
+    $config_version = "x64";
 
 //  Organization's logo picture (blank if none)
     global $org_logo;
-    $org_logo = "../images/sm_logo.jpg";
+    $org_logo = "../images/sm_logo.png";
 
 //  Organization's name
     global $org_name;
@@ -36,7 +36,7 @@
 //  can't figure out which language to display.
 //  Use the two-letter code.
     global $squirrelmail_default_language;
-    $squirrelmail_default_language = 'en';
+    $squirrelmail_default_language = "en";
 
 //  The server that your imap server is on
     global $imapServerAddress, $imapPort;
 //         - This is the path to where Sent messages will be stored.
 
     global $default_move_to_trash, $default_move_to_sent, $trash_folder,
-        $auto_expunge, $sent_folder;
+        $auto_expunge, $sent_folder, $draft_folder, $default_save_as_draft;
     $default_move_to_trash = true;
     $default_move_to_sent  = true;
+    $default_save_as_draft = true;
     $trash_folder = "INBOX.Trash";
     $auto_expunge = true;
     $sent_folder = "INBOX.Sent";
+    $draft_folder = "INBOX.Drafts";
 
 //  Special Folders are folders that can't be manipulated like normal
 //  user created folders can. A couple of examples would be
     $special_folders[3] = "INBOX.Drafts";
     $special_folders[4] = "INBOX.Templates";
 
+//  Should I create the Sent and Trash folders automatically for a new
+//  user that doesn't already have them created?
+    global $auto_create_special;
+    $auto_create_special = true;
+
 //  Whether or not to list the special folders first  (true/false)
     global $list_special_folders_first;
     $list_special_folders_first = true;
     global $attachment_dir;
     $attachment_dir = $data_dir;
 
+// Hash level used for data directory.
+    global $dir_hash_level;
+    $dir_hash_level = 0;
+
 //  This is the default size of the folder list.  Default is 150,
 //  but you can set it to whatever you wish.
    global $default_left_size;
 
     $theme[15]["PATH"] = "../themes/bluesnews_theme.php";
     $theme[15]["NAME"] = "BluesNews";
+    
+    $theme[16]["PATH"] = "../themes/deepocean2_theme.php";
+    $theme[16]["NAME"] = "Deep Ocean 2";
+
+    $theme[17]["PATH"] = "../themes/blue_gray_theme.php";
+    $theme[17]["NAME"] = "Blue Gray";
+
+    $theme[18]["PATH"] = "../themes/dompie_theme.php";
+    $theme[18]["NAME"] = "Dompie";
+
+    $theme[19]["PATH"] = "../themes/methodical_theme.php";
+    $theme[19]["NAME"] = "Methodical";
 
 //  LDAP server(s)
 //