* The conf.pl script can't parse 'str', so I changed this to be "str"
[squirrelmail.git] / config / config_default.php
index 70500cbab3ddcde67f12eb13e6484b37c29a5ea6..3df903d04d7fff7251918d8a90b156d4772b6333 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";
 
     $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;
@@ -285,6 +298,15 @@ global $ldap_server;
 //                     "name" => "Netcenter Member Directory",
 //                     "base" => "ou=member_directory,o=netcenter.com");
 
+//  Database-driven private addressbooks
+//
+//    DSN (Data Source Name) for a database where the private
+//    addressbooks are stored.  See doc/db-backend.txt for more info.
+//    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';
 
 
  // you have an option to chose between javascript or html version of
@@ -320,5 +342,7 @@ global $ldap_server;
  // For instance, for the "sqclock" plugin, you'd put a line like
  // the following:
  //   $plugins[0] = "sqclock";
+ //   $plugins[1] = "attachment_common";
 
-?>
+// Do not add the closing PHP tag here just because we want to avoid
+// the potential for parsing errors if there is a newline added