Strings update
[squirrelmail.git] / config / config_default.php
index e540b917b16cfdfbe677ba08639f58e7c0038964..889aaa7456c87c54d16118b03e1fc7602ef751c0 100644 (file)
@@ -16,7 +16,7 @@
 
     // don't change
     global $config_version;
-    $config_version = "x62";
+    $config_version = "x63";
 
 //  Organization's logo picture (blank if none)
     global $org_logo;
 //  This is the title that goes at the top of the browser window
     global $org_title;
     $org_title = "SquirrelMail $version";
+    
+//  Default language
+//  This is the default language.  It is used as a last resort if SquirrelMail
+//  can't figure out which language to display.
+//  Use the two-letter code.
+    global $squirrelmail_default_language;
+    $squirrelmail_default_language = "en";
 
 //  The server that your imap server is on
     global $imapServerAddress, $imapPort;
@@ -70,6 +77,7 @@
 //  cyrus
 //  exchange
 //  uw
+//  other
     global $imap_server_type;
     $imap_server_type = "cyrus";
 
 //         - 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;
 
     $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)
 //
@@ -292,6 +319,7 @@ global $ldap_server;
 //    If it is not defined, the addressbooks are stored in files
 //    in the data dir.
 //
+//      global $addrbook_dsn;
 //     $addrbook_dsn = 'mysql://user:pass@hostname/dbname';