mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
99 lines
3.0 KiB
PHP
99 lines
3.0 KiB
PHP
<?php
|
|
$rcmail_config = array();
|
|
$rcmail_config['debug_level'] = 1;
|
|
$rcmail_config['enable_caching'] = TRUE;
|
|
$rcmail_config['message_cache_lifetime'] = '10d';
|
|
|
|
$rcmail_config['auto_create_user'] = TRUE;
|
|
|
|
$rcmail_config['default_host'] = 'localhost';
|
|
$rcmail_config['default_port'] = 143;
|
|
|
|
$rcmail_config['username_domain'] = '';
|
|
$rcmail_config['mail_domain'] = 'home';
|
|
|
|
$rcmail_config['virtuser_file'] = '';
|
|
$rcmail_config['virtuser_query'] = '';
|
|
|
|
$rcmail_config['smtp_server'] = 'localhost';
|
|
$rcmail_config['smtp_port'] = 25;
|
|
$rcmail_config['smtp_user'] = '';
|
|
$rcmail_config['smtp_pass'] = '';
|
|
$rcmail_config['smtp_auth_type'] = '';
|
|
$rcmail_config['smtp_helo_host'] = '';
|
|
$rcmail_config['smtp_log'] = TRUE;
|
|
|
|
$rcmail_config['list_cols'] = array('from','to','subject', 'date', 'size');
|
|
|
|
$rcmail_config['skin_path'] = 'default';
|
|
$rcmail_config['skin_include_php'] = TRUE;
|
|
|
|
$rcmail_config['temp_dir'] = 'temp/';
|
|
$rcmail_config['log_dir'] = 'logs/';
|
|
|
|
$rcmail_config['session_lifetime'] = 10;
|
|
|
|
$rcmail_config['ip_check'] = false;
|
|
$rcmail_config['double_auth'] = false;
|
|
$rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
|
|
|
|
//$rcmail_config['locale_string'] = 'ru_RU';
|
|
//$rcmail_config['language'] = "ru_RU";
|
|
|
|
$rcmail_config['date_short'] = 'D H:i';
|
|
$rcmail_config['date_long'] = 'd.m.Y H:i';
|
|
$rcmail_config['date_today'] = 'H:i';
|
|
|
|
$rcmail_config['useragent'] = 'RoundCube Webmail';
|
|
$rcmail_config['product_name'] = 'RoundCube Webmail';
|
|
$rcmail_config['imap_root'] = '';
|
|
|
|
$rcmail_config['drafts_mbox'] = 'Drafts';
|
|
$rcmail_config['junk_mbox'] = 'Junk';
|
|
$rcmail_config['sent_mbox'] = 'Sent';
|
|
$rcmail_config['trash_mbox'] = 'Trash';
|
|
|
|
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
|
|
|
|
$rcmail_config['create_default_folders'] = TRUE;
|
|
$rcmail_config['protect_default_folders'] = TRUE;
|
|
|
|
$rcmail_config['skip_deleted'] = FALSE;
|
|
$rcmail_config['read_when_deleted'] = TRUE;
|
|
$rcmail_config['flag_for_deletion'] = FALSE;
|
|
$rcmail_config['enable_spellcheck'] = FALSE;
|
|
$rcmail_config['spellcheck_uri'] = '';
|
|
$rcmail_config['spellcheck_languages'] = NULL;
|
|
|
|
$rcmail_config['generic_message_footer'] = '';
|
|
|
|
$rcmail_config['mail_header_delimiter'] = NULL;
|
|
$rcmail_config['dont_override'] = array();
|
|
$rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion');
|
|
$rcmail_config['include_host_config'] = FALSE;
|
|
|
|
/***** these settings can be overwritten by user's preferences *****/
|
|
$rcmail_config['pagesize'] = 40;
|
|
$rcmail_config['timezone'] = intval(date('O'))/100 - date('I');
|
|
$rcmail_config['dst_active'] = (bool)date('I');
|
|
|
|
$rcmail_config['prefer_html'] = TRUE;
|
|
$rcmail_config['htmleditor'] = TRUE;
|
|
$rcmail_config['prettydate'] = TRUE;
|
|
$rcmail_config['message_sort_col'] = 'date';
|
|
$rcmail_config['message_sort_order'] = 'DESC';
|
|
$rcmail_config['draft_autosave'] = 300;
|
|
$rcmail_config['max_pagesize'] = 200;
|
|
$rcmail_config['preview_pane'] = TRUE;
|
|
|
|
$rcmail_config['plugins'] = array(
|
|
'additional_message_headers',
|
|
'archive',
|
|
'database_attachments',
|
|
'userinfo',
|
|
'markasjunk',
|
|
'contextmenu',
|
|
'new_user_dialog',
|
|
'emoticons',
|
|
'help');
|
|
?>
|