I18N fix submitted by Fredrik Jervfors
[squirrelmail.git] / config / config_default.php
index 581130c1d4f25889564a07647e9950b840789634..a02f559c135e23e59ce56f13bf16faac34c3a9a2 100644 (file)
@@ -101,6 +101,17 @@ $useSendmail = false;
 $smtpServerAddress = 'localhost';
 $smtpPort = 25;
 
+/**
+ * Option can be used to disable Received: headers added by squirrelmail.
+ * This can increase user's privacy and solve problems with spam filters
+ * that increase spam marks for dynamic dialup addresses.
+ *
+ * If admin enables this setting, system should have some logging facility 
+ * or other tools to control users. SquirrelMail's Received: header provides 
+ * information, that can't be forged by webmail user.
+ */
+$skip_SM_header = false;
+
 /**
  * Program that should be used when sending email. SquirrelMail expects that
  * this program will follow options used by original sendmail 
@@ -519,6 +530,8 @@ $theme[34]['NAME'] = 'Penguin';
 $theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
 $theme[35]['NAME'] = 'Minimal BW';
 
+$theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
+$theme[36]['NAME'] = 'Redmond';
 
 /**
  * LDAP server(s)
@@ -648,6 +661,10 @@ $advanced_tree = false;
  * Use older way of folder listing
  */
 $oldway = false;
+/**
+ * Use icons for message and folder markers
+ */
+$use_icons = false;
 /**
  * Use experimental code with php recode functions when reading messages with
  * different encoding. This code is faster that original SM functions,
@@ -695,4 +712,4 @@ $config_use_color = 2;
  * sent and regular output to begin, which will majorly screw
  * things up when we try to send more headers later.
  */
-?>
\ No newline at end of file
+?>