diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-01 18:06:16 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-12-01 18:06:16 +0000 |
| commit | aa6eb357d0f95af9d86185ccb35d9139ce8037dd (patch) | |
| tree | af0cc5a0393f6288f8b512faad5f9e0cc01cd399 /roundcubemail/config | |
| parent | f61b44657d2e300915ee5c09e1db36e90a06d775 (diff) | |
Introducing preview pane and conditional skin tags
git-svn-id: https://svn.roundcube.net/trunk@388 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index c0471999d..fb227c461 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -195,6 +195,9 @@ $rcmail_config['mail_header_delimiter'] = NULL; * 'fuzzy_search' => 0); */ +// don't allow these settings to be overriden by the user +$rcmail_config['dont_override'] = array(); + // list of configuration option names that need to be available in Javascript. $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); @@ -216,6 +219,9 @@ $rcmail_config['dst_active'] = TRUE; // prefer displaying HTML messages $rcmail_config['prefer_html'] = TRUE; +// compose html formatted messages by default +$rcmail_config['htmleditor'] = TRUE; + // show pretty dates as standard $rcmail_config['prettydate'] = TRUE; @@ -228,5 +234,8 @@ $rcmail_config['message_sort_order'] = 'DESC'; // save compose message every 300 seconds (5min) $rcmail_config['draft_autosave'] = 300; +// default setting if preview pane is enabled +$rcmail_config['preview_pane'] = FALSE; + // end of config file ?> |
