source: interfaz/roundcube/config/config.inc.php @ 27ed9ef

Last change on this file since 27ed9ef was 27ed9ef, checked in by Laura Colina <lcolina@…>, 8 years ago

RoundCube? cliente de correo version 1.1.3

  • Property mode set to 100755
File size: 8.0 KB
Line 
1<?php
2
3/* Local configuration for Roundcube Webmail */
4
5// ----------------------------------
6// SQL DATABASE
7// ----------------------------------
8// Database connection string (DSN) for read+write operations
9// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
10// Currently supported db_providers: mysql, pgsql, sqlite, mssql or sqlsrv
11// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
12// NOTE: for SQLite use absolute path: 'sqlite:////full/path/to/sqlite.db?mode=0646'
13$config['db_dsnw'] = 'pgsql://roundcube:roundcube@192.168.12.135/roundcubemail';
14
15// ----------------------------------
16// IMAP
17// ----------------------------------
18// The mail host chosen to perform the log-in.
19// Leave blank to show a textbox at login, give a list of hosts
20// to display a pulldown menu or set one host as string.
21// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
22// Supported replacement variables:
23// %n - hostname ($_SERVER['SERVER_NAME'])
24// %t - hostname without the first part
25// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
26// %s - domain name after the '@' from e-mail address provided at login screen
27// For example %n = mail.domain.tld, %t = domain.tld
28// WARNING: After hostname change update of mail_host column in users table is
29//          required to match old user data records with the new host.
30$config['default_host'] = 'correo-mail.cenditel';
31
32// ----------------------------------
33// SMTP
34// ----------------------------------
35// SMTP server host (for sending mails).
36// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
37// If left blank, the PHP mail() function is used
38// Supported replacement variables:
39// %h - user's IMAP hostname
40// %n - hostname ($_SERVER['SERVER_NAME'])
41// %t - hostname without the first part
42// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
43// %z - IMAP domain (IMAP hostname without the first part)
44// For example %n = mail.domain.tld, %t = domain.tld
45$config['smtp_server'] = 'correo-mail.cenditel';
46
47// provide an URL where a user can get support for this Roundcube installation
48// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
49$config['support_url'] = '';
50$config['support_url'] = "http://correosur.cenditel.gob.ve/presenta.php";
51
52// this key is used to encrypt the users imap password which is stored
53// in the session record (and the client cookie if remember password is enabled).
54// please provide a string of exactly 24 chars.
55$config['des_key'] = '7f03c3ae53b717d8dda14027';
56
57// Name your service. This is displayed on the login screen and in the window title
58$config['product_name'] = 'Correo Sur';
59
60// ----------------------------------
61// PLUGINS
62// ----------------------------------
63// List of active plugins (in plugins/ directory)
64//$config['plugins'] = array('rcs_skins','chbox','dropbox_attachments','jqueryui');
65//$config['plugins'] = array('melanie2_larry','rcs_skins','chbox','jqueryui','audio_attachments','firma_adjuntos');
66$config['plugins'] = array('melanie2_larry','rcs_skins','chbox','jqueryui','firma_adjuntos','new_user_identity','new_user_dialog','password','login_info');
67
68// Set the spell checking engine. Possible values:
69// - 'googie'  - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)
70// - 'pspell'  - requires the PHP Pspell module and aspell installed
71// - 'enchant' - requires the PHP Enchant module
72// - 'atd'     - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
73// Since Google shut down their public spell checking service, the default settings
74// connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
75// You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
76$config['spellcheck_engine'] = 'pspell';
77
78$config['custom_login_info_before'] = '<img style="display:block;margin-left:auto;margin-right:auto;" src="plugins/login_info/media/plugin_login_info.png" />';
79$config['custom_login_info_after'] = false;
80
81// used as bottom line below message
82// set to false if not used
83//$rcmail_config['custom_login_bottomline'] = '<a style="color:grey;" href="http://www.your-dmain.world">This service is managed by YOU</a>';
84$config['custom_login_bottomline'] = false;
85
86
87//$config['skin'] = 'litecube-f';
88$config['skin'] = 'melanie2_larry';
89$config['skin_logo'] = '';
90
91$config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment','chbox');
92
93//Set dropbox dropins options here. See https://www.dropbox.com/developers/dropins/chooser/js
94$config['dropbox_appKey']= '0q90uhk7yg431xt';
95$config['dropbox_extensions']= [];
96$config['dropbox_multiselect'] = true;
97
98
99
100// ----------------------------------
101// LOGGING/DEBUGGING
102// ----------------------------------
103
104// default log driver:  'syslog' or 'file'.
105$config['log_driver'] = 'syslog';
106
107// global logging level
108// 100 - debug
109// 200 - info
110// 300 - warning
111// 400 - error
112// 500 - critical
113$config['log_level'] = 100;
114
115// date format for log entries
116// (read http://php.net/manual/en/function.date.php for all format characters) 
117$config['log_date_format'] = 'd-M-Y H:i:s O';
118
119// default syslog ident string to use, if using the 'syslog' log driver.
120$config['syslog_id'] = 'roundcube';
121
122// default syslog facility to use, if using the 'syslog' log driver.
123// For possible values see installer or http://php.net/manual/en/function.openlog.php
124$config['syslog_facility'] = LOG_USER;
125
126// built-in logrotate rules
127$config['log_rotate'] = 'daily';
128
129// Activate this option if logs should be written to per-user directories.
130// Data will only be logged if a directory <log_dir>/<username>/ exists and is writable.
131$config['per_user_logging'] = false;
132
133// Log successful/failed logins to <log_dir>/userlogins or to syslog
134$config['log_logins'] = 300;  // shortcut for $config['log_logins'] = array('level' => 300);
135
136// Log session authentication errors to <log_dir>/session or to syslog
137$config['log_session'] = false;
138
139// Log sent messages to <log_dir>/sendmail or to syslog
140$config['log_smtp'] = array(
141    'level'    => 200,    // info
142    'driver'   => 'file',
143    'filename' => 'smtp.log',
144);
145
146// Log raw IMAP conversation and high level messages
147$config['log_imap'] = array(
148    'level'    => 100,    // debug
149    'driver'   => 'file',
150    'per_user' => true,
151);
152
153// Log LDAP conversation
154$config['ldap_log'] = array(
155//    'level'    => 400,     // defaults to $config['log_level']
156//    'driver'   => 'file',  // defaults to $config['log_driver']
157//    'per_user' => false,   // defaults to $config['per_user_logging']
158//    'filename' => 'ldap',  // defaults to <log_dir>/ldap
159);
160
161// Log statistics about request time, memory usage, etc.
162$config['stats_log'] = array(
163    'level'  => 200,
164    'driver' => 'elasticsearch',
165    'type'   => 'record',
166    'index'  => 'roundcube_stats',
167);
168
169// Development console logging
170$config['console_log'] = array(
171    'level' => 100,
172    'driver' => 'firephp',
173);
174
175// Log sent messages to <log_dir>/sendmail or to syslog
176// DEPRECATED: translates into $config['log_smtp'] = 200
177$config['smtp_log'] = false;
178
179// Log SQL queries to <log_dir>/sql or to syslog
180// DEPRECATED: translates into $config['log_sql'] = 100;
181$config['sql_debug'] = false;
182
183// Log IMAP conversation to <log_dir>/imap or to syslog
184// DEPRECATED: translates into $config['log_imap'] = 100;
185$config['imap_debug'] = false;
186
187// Log LDAP conversation to <log_dir>/ldap or to syslog
188// DEPRECATED: translates into $config['log_ldap'] = 100;
189$config['ldap_debug'] = false;
190
191// Log SMTP conversation to <log_dir>/smtp or to syslog
192// DEPRECATED: translates into $config['smtp_log'] = 100;
193$config['smtp_debug'] = false;
194
195// DEPRECATED: system error reporting, sum of: 1 = log; 4 = show
196$config['debug_level'] = 1;
197
198// DEPRECATED: translates into $config['console_log'] = 100
199$config['devel_mode'] = true;
200
201
202$config['newuser_welcome_user'] = TRUE; // true or false
203
204// message footer
205$config['newuser_message_footer'] = 'Thank You';
Note: See TracBrowser for help on using the repository browser.