* template set selection support
[squirrelmail.git] / config / config_default.php
index 1db8ddee1e1e6cbffbe45bfb2f77daf2c7f7fb65..775cb403e407d441e2cf20b90df6ae0a1d2197b7 100644 (file)
@@ -10,7 +10,7 @@
  * conf.pl if at all possible.  That is the easiest and cleanest way
  * to configure.
  *
- * @copyright © 2000-2005 The SquirrelMail Project Team
+ * @copyright © 2000-2006 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -169,11 +169,25 @@ $encode_header_key = '';
  *
  * Program that should be used when sending email. SquirrelMail expects that
  * this program will follow options used by original sendmail
- * (http://www.sendmail.org).
+ * (http://www.sendmail.org). Support of -f argument is required.
  * @global string $sendmail_path
  */
 $sendmail_path = '/usr/sbin/sendmail';
 
+/**
+ * Extra sendmail command arguments.
+ * 
+ * Sets additional sendmail command arguments. Make sure that arguments are 
+ * supported by your sendmail program. -f argument is added automatically by
+ * SquirrelMail scripts. Variable defaults to standard /usr/sbin/sendmail 
+ * arguments. If you use qmail-inject, nbsmtp or any other sendmail wrapper,
+ * which does not support -t and -i arguments, set variable to empty string
+ * or use arguments suitable for your mailer. 
+ * @global string $sendmail_args
+ * @since 1.5.1
+ */
+$sendmail_args = '-i -t';
+
 /**
  * IMAP server address
  *
@@ -434,6 +448,7 @@ $noselect_fix_enable = false;
  *   It is a possible security hole to have a writable directory
  *   under the web server's root directory (ex: /home/httpd/html).
  *   The path name can be absolute or relative (to the config directory).
+ *   If path is relative, it must use SM_PATH constant.
  *   Here are two examples:
  *
  * Absolute:
@@ -759,6 +774,32 @@ $theme[42]['NAME'] = 'Simple Green 2';
 $theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
 $theme[43]['NAME'] = 'Simple Purple';
 
+/**
+ * Default interface font size.
+ * @global string $default_fontsize
+ * @since 1.5.1
+ */
+$default_fontsize = '';
+
+/**
+ * Default font set
+ * @global string $default_fontset
+ * @since 1.5.1
+ */
+$default_fontset = '';
+
+/**
+ * List of available fontsets.
+ * @global array $fontsets
+ * @since 1.5.1
+ */
+$fontsets = array();
+$fontsets['serif'] = 'serif';
+$fontsets['sans'] = 'helvetica,arial,sans-serif';
+$fontsets['comicsans'] = 'comic sans ms,sans-serif';
+$fontsets['verasans'] = 'bitstream vera sans,verdana,sans-serif';
+$fontsets['tahoma'] = 'tahoma,sans-serif';
+
 /**
  * LDAP server(s)
  *   Array of arrays with LDAP server parameters. See
@@ -887,25 +928,25 @@ $prefs_val_size = 65536;
 /**
  * DSN of global address book database
  * @global string $addrbook_global_dsn
- * @since 1.5.1
+ * @since 1.5.1 and 1.4.4
  */
 $addrbook_global_dsn = '';
 /**
  * Table used for global database address book
  * @global string $addrbook_global_table
- * @since 1.5.1
+ * @since 1.5.1 and 1.4.4
  */
 $addrbook_global_table = 'global_abook';
 /**
  * Control writing into global database address book
  * @global boolean $addrbook_global_writeable
- * @since 1.5.1
+ * @since 1.5.1 and 1.4.4
  */
 $addrbook_global_writeable = false;
 /**
  * Control listing of global database address book
  * @global boolean $addrbook_global_listing
- * @since 1.5.1
+ * @since 1.5.1 and 1.4.4
  */
 $addrbook_global_listing = false;