X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig_default.php;h=3f0cd7e94f2ddc58f871b64138e3d17db7857926;hp=05aa3011ee5e6a3cadcc6059b838bf3cd29d275f;hb=6d3689f5c3b9d8b1b2ed7605e07084971569238e;hpb=884eba1e4912ab6c67039c2ed98512f446cbc2dc;ds=sidebyside diff --git a/config/config_default.php b/config/config_default.php index 05aa3011..3f0cd7e9 100644 --- a/config/config_default.php +++ b/config/config_default.php @@ -1,111 +1,271 @@ 'ou=member_directory,o=netcenter.com' * ); */ -global $ldap_server; +// Add your ldap server options here + +/** + * Javascript in Addressbook Control + * + * Users may search their addressbook via either a plain HTML or Javascript + * enhanced user interface. This option allows you to set the default choice. + * Set this default choice as either: + * true = javascript + * false = html + * @global bool $default_use_javascript_addr_book + */ +$default_use_javascript_addr_book = false; + + +/** + * MOTD + * + * This is a message that is displayed immediately after a user logs in. + * @global string $motd + */ +$motd = ""; + +/** + * To install plugins, just add elements to this array that have + * the plugin directory name relative to the /plugins/ directory. + * For instance, for the 'sqclock' plugin, you'd put a line like + * the following. + * $plugins[0] = 'sqclock'; + * $plugins[1] = 'attachment_common'; + */ +// Add list of enabled plugins here + + +/*** Database ***/ +/** + * Read doc/database.txt in order to get more information + * about these settings. + */ /** * Database-driven private addressbooks * DSN (Data Source Name) for a database where the private @@ -403,135 +770,173 @@ global $ldap_server; * The table is the name of the table to use within the * specified database. */ -global $addrbook_dsn, $addrbook_table; $addrbook_dsn = ''; $addrbook_table = 'address'; - -global $prefs_dsn, $prefs_table; +/** + * Database used to store user data + */ $prefs_dsn = ''; $prefs_table = 'userprefs'; - +$prefs_key_field = 'prefkey'; +$prefs_user_field = 'user'; +$prefs_val_field = 'prefval'; /** - * Users may search their addressbook via either a plain HTML or Javascript - * enhanced user interface. This option allows you to set the default choice. - * Set this default choice as either: - * true = javascript - * false = html + * Global sql database options */ -global $default_use_javascript_addr_book; -$default_use_javascript_addr_book = false; +$addrbook_global_dsn = ''; +$addrbook_global_table = 'global_abook'; +$addrbook_global_writeable = false; +$addrbook_global_listing = false; +/*** Language settings ***/ /** - * These next two options set the defaults for the way that the - * users see their folder list. - * $default_unseen_notify - * Specifies whether or not the users will see the number of - * unseen in each folder by default and also which folders to - * do this to. Valid values are: 1=none, 2=inbox, 3=all. - * $default_unseen_type - * Specifies the type of notification to give the users by - * default. Valid choice are: 1=(4), 2=(4,25). + * Default language + * + * This is the default language. It is used as a last resort + * if SquirrelMail can't figure out which language to display. + * Language names usually consist of language code, undercore + * symbol and country code + * @global string $squirrelmail_default_language */ -global $default_unseen_notify, $default_unseen_type; -$default_unseen_notify = 2; -$default_unseen_type = 1; - +$squirrelmail_default_language = 'en_US'; + /** - * If you are running on a machine that doesn't have the tm_gmtoff - * value in your time structure and if you are in a time zone that - * has a negative offset, you need to set this value to 1. This is - * typically people in the US that are running Solaris 7. + * Default Charset + * + * This option controls what character set is used when sending + * mail and when sending HTML to the browser. Option works only + * with US English (en_US) translation. Other translations use + * charsets that are set in functions/i18n.php. + * + * @global string $default_charset */ -global $invert_time; -$invert_time = false; +$default_charset = 'iso-8859-1'; /** - * By default SquirrelMail takes up the whole browser window, - * this allows you to embed it within sites using frames. Set - * this to the frame you want it to stay in. + * Available Languages + * + * This option controls number of languages available to end user in + * language selection preferences. You can use space separated list + * of translations installed in locale/ directory or special keys + * 'all' (all languages are available) and 'none' (language selection + * is disabled, interface is set to $squirrelmail_default_language + * @global string $available_languages + * @since 1.5.0 */ +$available_languages = 'all'; -global $frame_top; -$frame_top = '_top'; - -global $plugins; /** - * To install plugins, just add elements to this array that have - * the plugin directory name relative to the /plugins/ directory. - * For instance, for the 'sqclock' plugin, you'd put a line like - * the following. - * $plugins[0] = 'sqclock'; - * $plugins[1] = 'attachment_common'; + * Alternative Language Names Control + * + * This options allows displaying native language names in language + * selection box. + * @global bool $show_alternative_names + * @since 1.5.0 */ +$show_alternative_names = false; /** - * If you don't want to allow users to change their email address - * then you can set $edit_identity to false, if you want them to - * not be able to change their full name too then set $edit_name - * to false as well. $edit_name has no effect unless $edit_identity - * is false; + * Aggressive Decoding Control + * + * This option enables reading of Eastern multibyte encodings. + * Functions that provide this support are very cpu and memory intensive. + * Don't enable this option unless you really need it. + * @global bool $aggressive_decoding + * @since 1.5.1 */ - -global $edit_identity, $edit_name; -$edit_identity = true; -$edit_name = true; - +$aggressive_decoding = false; /** - * If you want to enable server side thread sorting options - * Your IMAP server must support the THREAD extension for - * this to work. + * Lossy Encoding Control + * + * This option allows charset conversions when output charset does not support + * all symbols used in original charset. Symbols unsupported by output charset + * will be replaced with question marks. + * @global bool $lossy_encoding + * @since 1.5.1 */ +$lossy_encoding = false; -global $allow_thread_sort; -$allow_thread_sort = false; +/*** Tweaks ***/ +/** + * Advanced DHTML tree control + * + * Use experimental DHTML folder listing + * @global bool $advanced_tree + * @since 1.5.0 + */ +$advanced_tree = false; -/** - * to use server-side sorting instead of SM client side. - * Your IMAP server must support the SORT extension for this - * to work. +/** + * Older listing way control + * + * Use older way of folder listing + * @global bool $oldway */ +$oldway = false; -global $allow_server_sort; -$allow_server_sort = false; +/** + * Message Icons control + * + * Use icons for message and folder markers + * @global bool $use_icons + */ +$use_icons = false; /** - * This enables the no select fix for Cyrus when subfolders - * exist but parent folders do not + * PHP recode functions control + * + * Use experimental code with php recode functions when reading messages with + * different encoding. This code is faster that original SM functions, + * but it require php with recode support. + * + * Don't enable this option if you are not sure about availability of + * recode support. + * @global bool $use_php_recode + * @since 1.5.0 */ +$use_php_recode = false; -global $noselect_fix_enable; -$noselect_fix_enable = false; +/** + * PHP iconv functions control + * + * Use experimental code with php iconv functions when reading messages with + * different encoding. This code is faster that original SM functions, + * but it require php with iconv support and works only with some translations. + * + * Don't enable this option if you are not sure about availability of + * iconv support. + * @global bool $use_php_iconv + * @since 1.5.0 + */ +$use_php_iconv = false; /** + * Subscribe Listing Control + * * this disables listing all of the folders on the IMAP Server to * generate the folder subscribe listbox (this can take a long time * when you have a lot of folders). Instead, a textbox will be - * displayed allowing users to enter a specific folder name to subscribe to */ -global $no_list_for_subscribe; + * displayed allowing users to enter a specific folder name to subscribe to + * + * This option can't be changed by conf.pl + * @global bool $no_list_for_subscribe + */ $no_list_for_subscribe = false; /** - * Advanced authentication options - * CRAM-MD5, DIGEST-MD5, Plain, and TLS - * Set reasonable defaults - you'd never know this was there unless you ask for it + * Color in config control + * + * This option is used only by conf.pl script to generate configuration + * menu with some colors and is provided here only as reference. + * @global integer $config_use_color */ -global $use_imap_tls; -global $use_smtp_tls; -$use_imap_tls = false; -$use_smtp_tls = false; - -/* auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5' - SMTP can also be 'none' -*/ -global $smtp_auth_mech; -global $imap_auth_mech; -$smtp_auth_mech = 'none'; -$imap_auth_mech = 'login'; +$config_use_color = 2; -/* PHP session name. Leave this alone unless you know what you are doing. */ -global $session_name; -$session_name = 'SQMSESSID'; +/** + * This option includes special configuration options + */ +@include SM_PATH . 'config/config_local.php'; /** * Make sure there are no characters after the PHP closing @@ -540,4 +945,4 @@ $session_name = 'SQMSESSID'; * 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